Lines Matching defs:sqlite3_context
5335 typedef struct sqlite3_context sqlite3_context; typedef
21316 struct sqlite3_context { struct
21317 Mem *pOut; /* The return value is stored here */
21318 FuncDef *pFunc; /* Pointer to function information */
21319 Mem *pMem; /* Memory cell used to store aggregate context */
21320 Vdbe *pVdbe; /* The VM that owns this context */
21321 int iOp; /* Instruction number of OP_Function */
21322 int isError; /* Error code returned by the function. */
21323 u8 skipFlag; /* Skip accumulator loading if true */
21324 u8 argc; /* Number of arguments */
21325 sqlite3_value *argv[1]; /* Argument set */