Home
last modified time | relevance | path

Searched refs:PyObject_CallObject (Results 1 – 25 of 27) sorted by relevance

12

/third_party/python/Doc/includes/
Drun-func.c40 pValue = PyObject_CallObject(pFunc, pArgs); in main()
/third_party/alsa-lib/modules/mixer/simple/
Dpython.c129 res = PyObject_CallObject(obj, args); in pcall()
783 obj2 = PyObject_CallObject(obj, obj1); in pymixer_melement_new()
927 obj2 = PyObject_CallObject(obj, obj1); in new_helem()
1003 r = PyObject_CallObject(priv->py_event_func, t); in alsa_mixer_simple_event()
1071 obj2 = PyObject_CallObject(obj, obj1); in alsa_mixer_simple_pyinit()
/third_party/skia/third_party/externals/markupsafe/
D_speedups.c134 rv = PyObject_CallObject(html, NULL); in escape()
/third_party/node/tools/inspector_protocol/markupsafe/
D_speedups.c134 rv = PyObject_CallObject(html, NULL); in escape()
/third_party/protobuf/python/google/protobuf/pyext/
Dmessage_factory.cc180 ScopedPyObjectPtr message_class(PyObject_CallObject( in GetOrCreateMessageClass()
Dmessage.cc2387 PyObject* py_cmsg = PyObject_CallObject( in FromString()
2404 PyObject* clone = PyObject_CallObject( in DeepCopy()
/third_party/markupsafe/
D_speedups.c208 s = PyObject_CallObject(html, NULL); in escape()
/third_party/libnl/python/netlink/
Dcapi.i626 resobj = PyObject_CallObject(funcobj, cbparobj); in nl_recv_msg_handler()
662 resobj = PyObject_CallObject(funcobj, cbparobj); in nl_recv_err_handler()
/third_party/python/Doc/extending/
Dextending.rst539 .. index:: single: PyObject_CallObject()
542 :c:func:`PyObject_CallObject`. This function has two arguments, both pointers to
558 result = PyObject_CallObject(my_callback, arglist);
561 :c:func:`PyObject_CallObject` returns a Python object pointer: this is the return
562 value of the Python function. :c:func:`PyObject_CallObject` is
565 :c:func:`Py_DECREF`\ -ed immediately after the :c:func:`PyObject_CallObject`
568 The return value of :c:func:`PyObject_CallObject` is "new": either it is a brand
576 If the C code that called :c:func:`PyObject_CallObject` is called from Python, it
588 have to provide an argument list to :c:func:`PyObject_CallObject`. In some cases
599 result = PyObject_CallObject(my_callback, arglist);
Dembedding.rst197 pValue = PyObject_CallObject(pFunc, pArgs);
/third_party/python/Include/
Dabstract.h169 PyAPI_FUNC(PyObject *) PyObject_CallObject(PyObject *callable,
/third_party/python/Modules/_ctypes/
Dcallbacks.c237 result = PyObject_CallObject(callable, arglist); in _CallPythonObject()
/third_party/python/Doc/c-api/
Dcall.rst203 | :c:func:`PyObject_CallObject` | ``PyObject *`` | tuple/``NULL`` | --- |
264 .. c:function:: PyObject* PyObject_CallObject(PyObject *callable, PyObject *args)
/third_party/python/Modules/_decimal/
D_decimal.c1196 self->traps = PyObject_CallObject((PyObject *)PyDecSignalDict_Type, NULL); in context_new()
1202 self->flags = PyObject_CallObject((PyObject *)PyDecSignalDict_Type, NULL); in context_new()
1396 context = PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL); in ieee_context()
1418 copy = PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL); in context_copy()
5856 PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL)); in PyInit__decimal()
5875 PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL)); in PyInit__decimal()
5883 PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL)); in PyInit__decimal()
/third_party/python/Modules/_sqlite/
Dconnection.c673 py_retval = PyObject_CallObject(py_func, args); in _pysqlite_func_callback()
735 function_result = PyObject_CallObject(stepmethod, args); in _pysqlite_step_callback()
/third_party/python/Objects/
Dcall.c387 PyObject_CallObject(PyObject *callable, PyObject *args) in PyObject_CallObject() function
/third_party/python/Doc/data/
Dstable_abi.dat476 function,PyObject_CallObject,3.2,
Drefcounts.dat1617 PyObject_CallObject:PyObject*::+1:
1618 PyObject_CallObject:PyObject*:callable_object:0:
1619 PyObject_CallObject:PyObject*:args:0:
/third_party/python/PC/
Dpython3dll.c432 EXPORT_FUNC(PyObject_CallObject)
/third_party/python/Doc/faq/
Dextending.rst135 Note that since :c:func:`PyObject_CallObject` *always* wants a tuple for the
/third_party/python/Modules/
D_testbuffer.c371 tmp = PyObject_CallObject(pack_into, args); in pack_from_list()
452 x = PyObject_CallObject(pack_into, args); in pack_single()
D_sre.c772 result = PyObject_CallObject(func, args); in call()
D_pickle.c5824 return PyObject_CallObject(cls, args); in instantiate()
6786 obj = PyObject_CallObject(callable, argtup); in load_reduce()
/third_party/python/Misc/
Dstable_abi.txt1047 function PyObject_CallObject
/third_party/python/Modules/_io/
Dbufferedio.c2174 ret = PyObject_CallObject(func, args); in _forward_call()

12