Searched defs:sqlite_func (Results 1 – 3 of 3) sorted by relevance
156 struct sqlite_func { struct157 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */158 Mem s; /* The return value is stored here */159 void *pAgg; /* Aggregate context */160 u8 isError; /* Set to true for an error */161 u8 isStep; /* Current in the step function */162 int cnt; /* Number of times that the step function has been called */
1000 void (*xFunc)(sqlite_func*,int,const char**), /* The implementation */ in sqlite_create_function()1021 void (*xStep)(sqlite_func*,int,const char**), /* The step function */ in sqlite_create_aggregate()1022 void (*xFinalize)(sqlite_func*), /* The finalizer */ in sqlite_create_aggregate()
446 typedef struct sqlite_func sqlite_func; typedef