Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A DvdbeInt.h153 struct sqlite_func { struct
154 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */
155 Mem s; /* The return value is stored here */
156 void *pAgg; /* Aggregate context */
157 u8 isError; /* Set to true for an error */
158 u8 isStep; /* Current in the step function */
159 int cnt; /* Number of times that the step function has been called */
H A Dmain.c997 void (*xFunc)(sqlite_func*,int,const char**), /* The implementation */ in sqlite_create_function()
1018 void (*xStep)(sqlite_func*,int,const char**), /* The step function */ in sqlite_create_aggregate()
1019 void (*xFinalize)(sqlite_func*), /* The finalizer */ in sqlite_create_aggregate()
H A Dsqlite.h.in443 typedef struct sqlite_func sqlite_func; typedef