Searched refs:sqlite3_aggregate_context (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Modules/_sqlite/ |
H A D | connection.c | 811 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*)); in step_callback() 858 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, 0); in final_callback() 1063 PyObject **cls = (PyObject **)sqlite3_aggregate_context(context, size); in inverse_callback() 1111 PyObject **cls = (PyObject **)sqlite3_aggregate_context(context, size); in value_callback()
|
/third_party/sqlite/include/ |
H A D | sqlite3ext.h | 392 #define sqlite3_aggregate_context sqlite3_api->aggregate_context macro
|
H A D | sqlite3.h | 4427 ** [sqlite3_aggregate_context()], [sqlite3_user_data()], 5672 ** ^The first time the sqlite3_aggregate_context(C,N) routine is called 5676 ** sqlite3_aggregate_context() for the same aggregate function instance, 5682 ** In those cases, sqlite3_aggregate_context() might be called for the 5685 ** ^The sqlite3_aggregate_context(C,N) routine returns a NULL pointer 5689 ** ^(The amount of space allocated by sqlite3_aggregate_context(C,N) is 5691 ** value of N in any subsequent call to sqlite3_aggregate_context() within 5694 ** N=0 in calls to sqlite3_aggregate_context(C,N) so that no 5698 ** sqlite3_aggregate_context() when the aggregate query concludes. 5708 SQLITE_API void *sqlite3_aggregate_context(sqlite3_contex [all...] |
/third_party/sqlite/src/ |
H A D | shell.c | 2833 p = sqlite3_aggregate_context(context, sizeof(*p)); in decimalSumStep() 2859 p = sqlite3_aggregate_context(context, sizeof(*p)); in decimalSumInverse() 2868 Decimal *p = sqlite3_aggregate_context(context, 0); in decimalSumValue() 2873 Decimal *p = sqlite3_aggregate_context(context, 0); in decimalSumFinalize() 8818 p = (ZipfileCtx*)sqlite3_aggregate_context(pCtx, sizeof(ZipfileCtx)); in zipfileStep() 8970 p = (ZipfileCtx*)sqlite3_aggregate_context(pCtx, sizeof(ZipfileCtx)); in zipfileFinal()
|
H A D | sqlite3.c | 4733 ** [sqlite3_aggregate_context()], [sqlite3_user_data()], 5981 ** ^The first time the sqlite3_aggregate_context(C,N) routine is called 5985 ** sqlite3_aggregate_context() for the same aggregate function instance, 5991 ** In those cases, sqlite3_aggregate_context() might be called for the 5994 ** ^The sqlite3_aggregate_context(C,N) routine returns a NULL pointer 5998 ** ^(The amount of space allocated by sqlite3_aggregate_context(C,N) is 6000 ** value of N in any subsequent call to sqlite3_aggregate_context() within 6003 ** N=0 in calls to sqlite3_aggregate_context(C,N) so that no 6007 ** sqlite3_aggregate_context() when the aggregate query concludes. 6017 SQLITE_API void *sqlite3_aggregate_context(sqlite3_contex 88895 SQLITE_API void *sqlite3_aggregate_context(sqlite3_context *p, int nByte){ global() function 132315 #define sqlite3_aggregate_context global() macro [all...] |
Completed in 157 milliseconds