Searched refs:outer_args (Results 1 – 2 of 2) sorted by relevance
/external/python/cffi/c/ |
D | call_python.c | 72 static PyObject *_ffi_def_extern_decorator(PyObject *outer_args, PyObject *fn) in _ffi_def_extern_decorator() argument 86 if (!PyArg_ParseTuple(outer_args, "OzOO", &ffi, &s, &error, &onerror)) in _ffi_def_extern_decorator()
|
D | ffi_obj.c | 780 static PyObject *_ffi_callback_decorator(PyObject *outer_args, PyObject *fn) in _ffi_callback_decorator() argument 784 old = PyTuple_GET_ITEM(outer_args, 1); in _ffi_callback_decorator() 785 PyTuple_SET_ITEM(outer_args, 1, fn); in _ffi_callback_decorator() 786 res = b_callback(NULL, outer_args); in _ffi_callback_decorator() 787 PyTuple_SET_ITEM(outer_args, 1, old); in _ffi_callback_decorator()
|