Lines Matching defs:sqlite3_context
5038 typedef struct sqlite3_context sqlite3_context; typedef
20262 struct sqlite3_context { struct
20263 Mem *pOut; /* The return value is stored here */
20264 FuncDef *pFunc; /* Pointer to function information */
20265 Mem *pMem; /* Memory cell used to store aggregate context */
20266 Vdbe *pVdbe; /* The VM that owns this context */
20267 int iOp; /* Instruction number of OP_Function */
20268 int isError; /* Error code returned by the function. */
20269 u8 skipFlag; /* Skip accumulator loading if true */
20270 u8 argc; /* Number of arguments */
20271 sqlite3_value *argv[1]; /* Argument set */