Home
last modified time | relevance | path

Searched refs:aggregate_instance (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Modules/_sqlite/
Dconnection.c954 PyObject** aggregate_instance; in step_callback() local
960 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*)); in step_callback()
961 if (*aggregate_instance == NULL) { in step_callback()
962 *aggregate_instance = PyObject_CallNoArgs(ctx->callable); in step_callback()
963 if (!*aggregate_instance) { in step_callback()
970 stepmethod = PyObject_GetAttr(*aggregate_instance, ctx->state->str_step); in step_callback()
1003 PyObject** aggregate_instance; in final_callback() local
1006 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, 0); in final_callback()
1007 if (aggregate_instance == NULL) { in final_callback()
1011 else if (!*aggregate_instance) { in final_callback()
[all …]