Lines Matching refs:sqlite3_aggregate_context
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){
72431 p = sqlite3_aggregate_context(context, sizeof(*p));
72454 p = sqlite3_aggregate_context(context, 0);
72467 p = sqlite3_aggregate_context(context, 0);
72474 p = sqlite3_aggregate_context(context, 0);
72493 p = sqlite3_aggregate_context(context, sizeof(*p));
72509 p = sqlite3_aggregate_context(context, 0);
72526 pBest = (Mem *)sqlite3_aggregate_context(context, sizeof(*pBest));
72552 pRes = (sqlite3_value *)sqlite3_aggregate_context(context, 0);
72575 pAccum = (StrAccum*)sqlite3_aggregate_context(context, sizeof(*pAccum));
72599 pAccum = sqlite3_aggregate_context(context, 0);
76176 #define sqlite3_aggregate_context sqlite3_api->aggregate_context
76451 sqlite3_aggregate_context,