Searched defs:sqlite_func (Results 1 – 3 of 3) sorted by relevance
153 struct sqlite_func { struct154 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 */
997 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()
443 typedef struct sqlite_func sqlite_func; typedef