Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_aggregate_context

3642 ** [sqlite3_aggregate_context()], [sqlite3_user_data()],
4516 ** ^The first time the sqlite3_aggregate_context(C,N) routine is called
4520 ** sqlite3_aggregate_context() for the same aggregate function instance,
4521 ** the same buffer is returned. Sqlite3_aggregate_context() is normally
4526 ** In those cases, sqlite3_aggregate_context() might be called for the
4529 ** ^The sqlite3_aggregate_context(C,N) routine returns a NULL pointer if N is
4532 ** ^(The amount of space allocated by sqlite3_aggregate_context(C,N) is
4534 ** value of N in subsequent call to sqlite3_aggregate_context() within
4539 ** sqlite3_aggregate_context() when the aggregate query concludes.
4549 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
63343 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context *p, int nByte){
87415 p = sqlite3_aggregate_context(context, sizeof(*p));
87433 p = sqlite3_aggregate_context(context, 0);
87446 p = sqlite3_aggregate_context(context, 0);
87453 p = sqlite3_aggregate_context(context, 0);
87472 p = sqlite3_aggregate_context(context, sizeof(*p));
87488 p = sqlite3_aggregate_context(context, 0);
87504 pBest = (Mem *)sqlite3_aggregate_context(context, sizeof(*pBest));
87534 pRes = (sqlite3_value *)sqlite3_aggregate_context(context, 0);
87557 pAccum = (StrAccum*)sqlite3_aggregate_context(context, sizeof(*pAccum));
87581 pAccum = sqlite3_aggregate_context(context, 0);
91262 #define sqlite3_aggregate_context sqlite3_api->aggregate_context
91570 sqlite3_aggregate_context,