Home
last modified time | relevance | path

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

/third_party/python/Lib/ctypes/test/
Dtest_random_things.py18 from _ctypes import call_function
26 self.assertEqual(call_function(funcaddr, (None,)),
Dtest_loading.py106 from _ctypes import call_function
117 self.assertEqual(0, call_function(proc, (None,)))
/third_party/python/Modules/_ctypes/
Dcallproc.c1585 call_function(PyObject *self, PyObject *args) in call_function() function
2025 {"call_function", call_function, METH_VARARGS },
/third_party/python/Python/
Dceval.c56 Py_LOCAL_INLINE(PyObject *) call_function(
4181 res = call_function(tstate, &trace_info, &sp, oparg, NULL); in _PyEval_EvalFrameDefault()
4198 res = call_function(tstate, &trace_info, &sp, oparg + 1, NULL); in _PyEval_EvalFrameDefault()
4213 res = call_function(tstate, &trace_info, &sp, oparg, NULL); in _PyEval_EvalFrameDefault()
4231 res = call_function(tstate, &trace_info, &sp, oparg, names); in _PyEval_EvalFrameDefault()
5850 call_function(PyThreadState *tstate, in Py_LOCAL_INLINE()
/third_party/jerryscript/docs/
D08.CODING-STANDARDS.md407 call_function (a * (b + !!c) - d + (e % f));
/third_party/python/Doc/library/
Dctypes.rst1636 .. audit-event:: ctypes.call_function func_pointer,arguments foreign-functions
1639 ``ctypes.call_function`` with arguments ``function pointer`` and ``arguments``.