Home
last modified time | relevance | path

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

/third_party/python/Modules/_ctypes/
D_ctypes.c3823 _get_arg(int *pindex, PyObject *name, PyObject *defval, PyObject *inargs, PyObject *kwds) in _get_arg() argument
3827 if (*pindex < PyTuple_GET_SIZE(inargs)) { in _get_arg()
3828 v = PyTuple_GET_ITEM(inargs, *pindex); in _get_arg()
3878 PyObject *inargs, PyObject *kwds, in _build_callargs() argument
3899 return PyTuple_GetSlice(inargs, 1, PyTuple_GET_SIZE(inargs)); in _build_callargs()
3901 Py_INCREF(inargs); in _build_callargs()
3902 return inargs; in _build_callargs()
3948 ob =_get_arg(&inargs_index, name, defval, inargs, kwds); in _build_callargs()
4018 actual_args = PyTuple_GET_SIZE(inargs) + (kwds ? PyDict_GET_SIZE(kwds) : 0); in _build_callargs()
4105 PyCFuncPtr_call(PyCFuncPtrObject *self, PyObject *inargs, PyObject *kwds) in PyCFuncPtr_call() argument
[all …]