Lines Matching defs:sqlite3_context
4868 typedef struct sqlite3_context sqlite3_context; typedef
23322 struct sqlite3_context { struct
23323 Mem *pOut; /* The return value is stored here */
23324 FuncDef *pFunc; /* Pointer to function information */
23325 Mem *pMem; /* Memory cell used to store aggregate context */
23326 Vdbe *pVdbe; /* The VM that owns this context */
23327 int iOp; /* Instruction number of OP_Function */
23328 int isError; /* Error code returned by the function. */
23329 u8 enc; /* Encoding to use for results */
23330 u8 skipFlag; /* Skip accumulator loading if true */
23331 u8 argc; /* Number of arguments */
23332 sqlite3_value *argv[1]; /* Argument set */