Lines Matching defs:sqlite3_context
3320 typedef struct sqlite3_context sqlite3_context; typedef
13859 struct sqlite3_context { struct
13860 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */
13861 Mem s; /* The return value is stored here */
13862 Mem *pMem; /* Memory cell used to store aggregate context */
13863 CollSeq *pColl; /* Collating sequence */
13864 Vdbe *pVdbe; /* The VM that owns this context */
13865 int iOp; /* Instruction number of OP_Function */
13866 int isError; /* Error code returned by the function. */
13867 u8 skipFlag; /* Skip skip accumulator loading if true */
13868 u8 fErrorOrAux; /* isError!=0 or pVdbe->pAuxData modified */