Lines Matching defs:sqlite3_context
370 struct sqlite3_context { struct
371 Mem *pOut; /* The return value is stored here */
372 FuncDef *pFunc; /* Pointer to function information */
373 Mem *pMem; /* Memory cell used to store aggregate context */
374 Vdbe *pVdbe; /* The VM that owns this context */
375 int iOp; /* Instruction number of OP_Function */
376 int isError; /* Error code returned by the function. */
377 u8 enc; /* Encoding to use for results */
378 u8 skipFlag; /* Skip accumulator loading if true */
379 u8 argc; /* Number of arguments */
380 sqlite3_value *argv[1]; /* Argument set */