Searched refs:sqlite3_aggregate_context (Results 1 – 4 of 4) sorted by relevance
/external/webkit/WebKitLibraries/WebCoreSQLite3/ |
D | sqlite3.h | 1758 void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
|
D | sqlite3ext.h | 164 #define sqlite3_aggregate_context sqlite3_api->aggregate_context macro
|
/external/sqlite/dist/ |
D | sqlite3.h | 3761 void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
|
D | sqlite3.c | 4167 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes); 41509 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context *p, int nByte){ in sqlite3_aggregate_context() function 58426 p = sqlite3_aggregate_context(context, sizeof(*p)); in sumStep() 58449 p = sqlite3_aggregate_context(context, 0); in sumFinalize() 58462 p = sqlite3_aggregate_context(context, 0); in avgFinalize() 58469 p = sqlite3_aggregate_context(context, 0); in totalFinalize() 58487 p = sqlite3_aggregate_context(context, sizeof(*p)); in countStep() 58494 p = sqlite3_aggregate_context(context, 0); in countFinalize() 58506 pBest = (Mem *)sqlite3_aggregate_context(context, sizeof(*pBest)); in minmaxStep() 58532 pRes = (sqlite3_value *)sqlite3_aggregate_context(context, 0); in minMaxFinalize() [all …]
|