Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.c5295 typedef struct sqlite3_context sqlite3_context; typedef
20981 struct sqlite3_context { struct
20982 Mem *pOut; /* The return value is stored here */
20983 FuncDef *pFunc; /* Pointer to function information */
20984 Mem *pMem; /* Memory cell used to store aggregate context */
20985 Vdbe *pVdbe; /* The VM that owns this context */
20986 int iOp; /* Instruction number of OP_Function */
20987 int isError; /* Error code returned by the function. */
20988 u8 skipFlag; /* Skip accumulator loading if true */
20989 u8 argc; /* Number of arguments */
[all …]
H A Dsqlite3.h4256 typedef struct sqlite3_context sqlite3_context; typedef
H A Dshell.c6265 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in zipfileFindFunction()
/freebsd-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3.h2978 typedef struct sqlite3_context sqlite3_context; typedef
H A Dsqlite3.c3531 typedef struct sqlite3_context sqlite3_context; typedef
12793 struct sqlite3_context { struct
12794 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */
12795 VdbeFunc *pVdbeFunc; /* Auxilary data, if created. */
12796 Mem s; /* The return value is stored here */
12797 Mem *pMem; /* Memory cell used to store aggregate context */
12798 int isError; /* Error code returned by the function. */
12799 CollSeq *pColl; /* Collating sequence */