Lines Matching defs:sqlite3_context
5306 typedef struct sqlite3_context sqlite3_context; typedef
21038 struct sqlite3_context { struct
21039 Mem *pOut; /* The return value is stored here */
21040 FuncDef *pFunc; /* Pointer to function information */
21041 Mem *pMem; /* Memory cell used to store aggregate context */
21042 Vdbe *pVdbe; /* The VM that owns this context */
21043 int iOp; /* Instruction number of OP_Function */
21044 int isError; /* Error code returned by the function. */
21045 u8 skipFlag; /* Skip accumulator loading if true */
21046 u8 argc; /* Number of arguments */
21047 sqlite3_value *argv[1]; /* Argument set */