Searched defs:sqlite3_context (Results 1 – 3 of 3) sorted by relevance
4872 typedef struct sqlite3_context sqlite3_context; typedef23488 struct sqlite3_context { struct23489 Mem *pOut; /* The return value is stored here */23490 FuncDef *pFunc; /* Pointer to function information */23491 Mem *pMem; /* Memory cell used to store aggregate context */23492 Vdbe *pVdbe; /* The VM that owns this context */23493 int iOp; /* Instruction number of OP_Function */23494 int isError; /* Error code returned by the function. */23495 u8 enc; /* Encoding to use for results */23496 u8 skipFlag; /* Skip accumulator loading if true */[all …]
4559 typedef struct sqlite3_context sqlite3_context; typedef
11296 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in zipfileFindFunction()