Home
last modified time | relevance | path

Searched defs:sqlite3_context (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c4853 typedef struct sqlite3_context sqlite3_context; typedef
23400 struct sqlite3_context { struct
23401 Mem *pOut; /* The return value is stored here */
23402 FuncDef *pFunc; /* Pointer to function information */
23403 Mem *pMem; /* Memory cell used to store aggregate context */
23404 Vdbe *pVdbe; /* The VM that owns this context */
23405 int iOp; /* Instruction number of OP_Function */
23406 int isError; /* Error code returned by the function. */
23407 u8 enc; /* Encoding to use for results */
23408 u8 skipFlag; /* Skip accumulator loading if true */
[all …]
H A Dsqlite3.h4540 typedef struct sqlite3_context sqlite3_context; typedef
H A Dshell.c11218 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in zipfileFindFunction()