Searched refs:sqlite3_aggregate_context (Results 1 – 7 of 7) 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 | 3345 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
|
D | shell.c | 609 p = (StrBuffer *)sqlite3_aggregate_context(context, sizeof(StrBuffer)); in joinFinalize() 620 p = (StrBuffer *)sqlite3_aggregate_context(context, sizeof(StrBuffer)); in joinStep()
|
D | sqlite3.h.orig | 2514 ** [sqlite3_aggregate_context()], [sqlite3_user_data()], 3312 ** ^The first time the sqlite3_aggregate_context(C,N) routine is called 3316 ** sqlite3_aggregate_context() for the same aggregate function instance, 3322 ** In those cases, sqlite3_aggregate_context() might be called for the 3325 ** ^The sqlite3_aggregate_context(C,N) routine returns a NULL pointer if N is 3328 ** ^(The amount of space allocated by sqlite3_aggregate_context(C,N) is 3330 ** value of N in subsequent call to sqlite3_aggregate_context() within 3335 ** sqlite3_aggregate_context() when the aggregate query concludes. 3345 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
|
D | sqlite3.c | 3869 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes); 51042 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context *p, int nByte){ 72442 p = sqlite3_aggregate_context(context, sizeof(*p)); 72465 p = sqlite3_aggregate_context(context, 0); 72478 p = sqlite3_aggregate_context(context, 0); 72485 p = sqlite3_aggregate_context(context, 0); 72504 p = sqlite3_aggregate_context(context, sizeof(*p)); 72520 p = sqlite3_aggregate_context(context, 0); 72537 pBest = (Mem *)sqlite3_aggregate_context(context, sizeof(*pBest)); 72563 pRes = (sqlite3_value *)sqlite3_aggregate_context(context, 0); [all …]
|
D | sqlite3.c.orig | 3038 ** [sqlite3_aggregate_context()], [sqlite3_user_data()], 3836 ** ^The first time the sqlite3_aggregate_context(C,N) routine is called 3840 ** sqlite3_aggregate_context() for the same aggregate function instance, 3846 ** In those cases, sqlite3_aggregate_context() might be called for the 3849 ** ^The sqlite3_aggregate_context(C,N) routine returns a NULL pointer if N is 3852 ** ^(The amount of space allocated by sqlite3_aggregate_context(C,N) is 3854 ** value of N in subsequent call to sqlite3_aggregate_context() within 3859 ** sqlite3_aggregate_context() when the aggregate query concludes. 3869 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes); 51031 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context *p, int nByte){ [all …]
|