Lines Matching defs:sqlite3_context
3430 typedef struct sqlite3_context sqlite3_context; typedef
14127 struct sqlite3_context { struct
14128 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */
14129 Mem s; /* The return value is stored here */
14130 Mem *pMem; /* Memory cell used to store aggregate context */
14131 CollSeq *pColl; /* Collating sequence */
14132 Vdbe *pVdbe; /* The VM that owns this context */
14133 int iOp; /* Instruction number of OP_Function */
14134 int isError; /* Error code returned by the function. */
14135 u8 skipFlag; /* Skip skip accumulator loading if true */
14136 u8 fErrorOrAux; /* isError!=0 or pVdbe->pAuxData modified */