Lines Matching defs:sqlite3_context
5295 typedef struct sqlite3_context sqlite3_context; typedef
20993 struct sqlite3_context { struct
20994 Mem *pOut; /* The return value is stored here */
20995 FuncDef *pFunc; /* Pointer to function information */
20996 Mem *pMem; /* Memory cell used to store aggregate context */
20997 Vdbe *pVdbe; /* The VM that owns this context */
20998 int iOp; /* Instruction number of OP_Function */
20999 int isError; /* Error code returned by the function. */
21000 u8 skipFlag; /* Skip accumulator loading if true */
21001 u8 argc; /* Number of arguments */
21002 sqlite3_value *argv[1]; /* Argument set */