Searched refs:function_result (Results 1 – 3 of 3) sorted by relevance
697 PyObject* function_result = NULL; in _pysqlite_step_callback() local735 function_result = PyObject_CallObject(stepmethod, args); in _pysqlite_step_callback()738 if (!function_result) { in _pysqlite_step_callback()749 Py_XDECREF(function_result); in _pysqlite_step_callback()757 PyObject* function_result; in _pysqlite_final_callback() local782 function_result = _PyObject_CallMethodIdNoArgs(*aggregate_instance, &PyId_finalize); in _pysqlite_final_callback()787 if (function_result) { in _pysqlite_final_callback()788 ok = _pysqlite_set_result(context, function_result) == 0; in _pysqlite_final_callback()789 Py_DECREF(function_result); in _pysqlite_final_callback()
2526 DecodeResult function_result = in RunInBackground() local2529 if (function_result.failed()) { in RunInBackground()2530 result = ModuleResult(function_result.error()); in RunInBackground()
1217 self.cache = OrderedDict() # { cached_key : function_result }