Searched refs:infotuple (Results 1 – 2 of 2) sorted by relevance
/external/python/cffi/c/ |
D | call_python.c | 61 PyObject *error, *onerror, *infotuple, *old1; in _ffi_def_extern_decorator() local 100 infotuple = prepare_callback_info_tuple(ct, fn, error, onerror, 0); in _ffi_def_extern_decorator() 102 if (infotuple == NULL) in _ffi_def_extern_decorator() 112 Py_DECREF(infotuple); in _ffi_def_extern_decorator() 119 Py_DECREF(infotuple); in _ffi_def_extern_decorator() 123 err = PyDict_SetItem(interpstate_dict, interpstate_key, infotuple); in _ffi_def_extern_decorator() 125 Py_DECREF(infotuple); /* interpstate_dict owns the last ref */ in _ffi_def_extern_decorator() 150 PyObject *interpstate_dict, *interpstate_key, *infotuple, *old1, *new1; in _update_cache_to_call_python() local 161 infotuple = PyDict_GetItem(interpstate_dict, interpstate_key); in _update_cache_to_call_python() 163 if (infotuple == NULL) in _update_cache_to_call_python() [all …]
|
D | _cffi_backend.c | 5944 PyObject *py_rawerr, *infotuple; in prepare_callback_info_tuple() local 5981 infotuple = Py_BuildValue("OOOO", ct, ob, py_rawerr, onerror_ob); in prepare_callback_info_tuple() 5990 return infotuple; in prepare_callback_info_tuple() 5998 PyObject *infotuple; local 6007 infotuple = prepare_callback_info_tuple(ct, ob, error_ob, onerror_ob, 1); 6008 if (infotuple == NULL) 6018 Py_DECREF(infotuple); 6040 invoke_callback, infotuple, closure_exec) != FFI_OK) { 6043 invoke_callback, infotuple) != FFI_OK) { 6049 if (closure->user_data != infotuple) { [all …]
|