Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dabstract.h246 PyAPI_FUNC(PyObject *) _PyObject_FastCallKeywords(
/external/python/cpython3/Python/
Dcontext.c618 PyObject *call_result = _PyObject_FastCallKeywords( in context_run()
Dbltinmodule.c519 PyObject *retval = _PyObject_FastCallKeywords(hook, args, nargs, keywords); in builtin_breakpoint()
2256 v = _PyObject_FastCallKeywords(callable, args + 1, nargs - 1, kwnames); in builtin_sorted()
Dsysmodule.c180 PyObject *retval = _PyObject_FastCallKeywords(hook, args, nargs, keywords); in sys_breakpointhook()
Dceval.c4619 x = _PyObject_FastCallKeywords(func, stack, nargs, kwnames); in Py_LOCAL_INLINE()
/external/python/cpython3/Modules/
D_asynciomodule.c367 handle = _PyObject_FastCallKeywords( in call_soon()
2759 res = _PyObject_FastCallKeywords( in task_step_impl()
D_testcapimodule.c4447 return _PyObject_FastCallKeywords(func, stack, nargs, kwnames); in test_pyobject_fastcallkeywords()
/external/python/cpython3/Objects/
Dcall.c137 _PyObject_FastCallKeywords(PyObject *callable, PyObject *const *stack, Py_ssize_t nargs, in _PyObject_FastCallKeywords() function