Home
last modified time | relevance | path

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

123

/aosp_15_r20/external/AFLplusplus/src/
H A Dafl-fuzz-python.c120 py_value = PyObject_CallObject(py->py_functions[PY_FUNC_FUZZ], py_args); in fuzz_py()
174 py_value = PyObject_CallObject( in custom_describe_py()
339 PyObject_CallObject(py_mutator->py_functions[PY_FUNC_INIT], py_args); in init_py()
358 py_value = PyObject_CallObject( in deinit_py()
535 py_value = PyObject_CallObject( in post_process_py()
591 py_value = PyObject_CallObject( in init_trim_py()
629 py_value = PyObject_CallObject( in fuzz_count_py()
668 py_value = PyObject_CallObject( in post_trim_py()
697 py_value = PyObject_CallObject( in trim_py()
764 py_value = PyObject_CallObject( in havoc_mutation_py()
[all …]
/aosp_15_r20/external/python/cpython2/Modules/_sqlite/
Dconnection.c668 py_retval = PyObject_CallObject(py_func, args); in _pysqlite_func_callback()
734 function_result = PyObject_CallObject(stepmethod, args); in _pysqlite_step_callback()
1271 result = PyObject_CallObject(method, args); in pysqlite_connection_execute()
1300 result = PyObject_CallObject(method, args); in pysqlite_connection_executemany()
1329 result = PyObject_CallObject(method, args); in pysqlite_connection_executescript()
1458 retval = PyObject_CallObject(pyfn_iterdump, args); in pysqlite_connection_iterdump()
/aosp_15_r20/external/libxml2/python/
H A Dlibxml.c1510 result = PyObject_CallObject(libxml_xmlPythonErrorFuncHandler, list); in libxml_xmlErrorFuncHandler()
1602 result = PyObject_CallObject(pyCtxt->f, list); in libxml_xmlParserCtxtErrorHandler()
1738 result = PyObject_CallObject(pyCtxt->error, list); in libxml_xmlValidCtxtGenericErrorFuncHandler()
1761 result = PyObject_CallObject(pyCtxt->warn, list); in libxml_xmlValidCtxtGenericWarningFuncHandler()
1892 result = PyObject_CallObject(pyCtxt->f, list); in libxml_xmlTextReaderErrorCallback()
2084 result = PyObject_CallObject(current_function, list); in libxml_xmlXPathFuncCallback()
2908 result = PyObject_CallObject(pyCtxt->error, list); in libxml_xmlRelaxNGValidityGenericErrorFuncHandler()
2931 result = PyObject_CallObject(pyCtxt->warn, list); in libxml_xmlRelaxNGValidityGenericWarningFuncHandler()
3060 result = PyObject_CallObject(pyCtxt->error, list); in libxml_xmlSchemaValidityGenericErrorFuncHandler()
3083 result = PyObject_CallObject(pyCtxt->warn, list); in libxml_xmlSchemaValidityGenericWarningFuncHandler()
/aosp_15_r20/external/pytorch/torch/csrc/autograd/
H A Dpython_function.cpp150 THPObjectPtr r(PyObject_CallObject(apply_fn, pyInputs.get())); in apply()
669 THPObjectPtr r(PyObject_CallObject(apply_jvp_fn, pyInputs.get())); in _wrap_outputs()
708 THPObjectPtr result(PyObject_CallObject(py_view_as_method, args)); in _wrap_outputs()
1351 output = PyObject_CallObject(forward_fn, unpacked_input.input_tuple); in THPFunction_apply()
1364 PyObject_CallObject(setup_context_fn, ctx_input_output_tuple); in THPFunction_apply()
1375 output = PyObject_CallObject(forward_fn, ctx_input_tuple); in THPFunction_apply()
H A Dpython_hook.cpp71 THPObjectPtr res(PyObject_CallObject(hook, args)); in _call_hooks()
/aosp_15_r20/external/python/cpython2/Doc/includes/
Drun-func.c39 pValue = PyObject_CallObject(pFunc, pArgs); in main()
/aosp_15_r20/external/python/cpython3/Doc/includes/
Drun-func.c40 pValue = PyObject_CallObject(pFunc, pArgs); in main()
/aosp_15_r20/external/python/cpython2/Modules/_ctypes/
D_ctypes.c262 obj = PyObject_CallObject((PyObject *)&DictRemover_Type, NULL); in PyDict_SetItemProxy()
487 dict = (StgDictObject *)PyObject_CallObject((PyObject *)&PyCStgDict_Type, NULL); in StructUnionType_new()
1019 stgdict = (StgDictObject *)PyObject_CallObject( in PyCPointerType_new()
1489 stgdict = (StgDictObject *)PyObject_CallObject( in PyCArrayType_new()
1959 stgdict = (StgDictObject *)PyObject_CallObject( in CreateSwappedType()
2070 stgdict = (StgDictObject *)PyObject_CallObject( in PyCSimpleType_new()
2472 stgdict = (StgDictObject *)PyObject_CallObject( in PyCFuncPtrType_new()
3027 ob = PyObject_CallObject(type, value); in _PyCData_set()
3861 ob = PyObject_CallObject(ob, NULL); in _build_callargs()
3864 ob = PyObject_CallObject(dict->proto, NULL); in _build_callargs()
/aosp_15_r20/external/python/cpython2/Doc/extending/
Dextending.rst495 .. index:: single: PyObject_CallObject()
498 :c:func:`PyObject_CallObject`. This function has two arguments, both pointers to
514 result = PyObject_CallObject(my_callback, arglist);
517 :c:func:`PyObject_CallObject` returns a Python object pointer: this is the return
518 value of the Python function. :c:func:`PyObject_CallObject` is
521 -ed immediately after the :c:func:`PyObject_CallObject` call.
523 The return value of :c:func:`PyObject_CallObject` is "new": either it is a brand
531 If the C code that called :c:func:`PyObject_CallObject` is called from Python, it
543 have to provide an argument list to :c:func:`PyObject_CallObject`. In some cases
554 result = PyObject_CallObject(my_callback, arglist);
/aosp_15_r20/external/python/cpython3/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);
/aosp_15_r20/external/pytorch/torch/csrc/utils/
H A Dtensor_apply.cpp48 auto ret = THPObjectPtr(PyObject_CallObject(fn, args.get())); in recursive_apply()
/aosp_15_r20/external/libchrome/third_party/markupsafe/
H A D_speedups.c134 rv = PyObject_CallObject(html, NULL); in escape()
/aosp_15_r20/external/libnl/python/netlink/
H A Dcapi.i626 resobj = PyObject_CallObject(funcobj, cbparobj); in nl_recv_msg_handler()
662 resobj = PyObject_CallObject(funcobj, cbparobj); in nl_recv_err_handler()
/aosp_15_r20/external/cronet/third_party/protobuf/python/google/protobuf/pyext/
H A Dmessage_factory.cc178 ScopedPyObjectPtr message_class(PyObject_CallObject( in GetOrCreateMessageClass()
/aosp_15_r20/external/python/markupsafe/src/markupsafe/
D_speedups.c208 s = PyObject_CallObject(html, NULL); in escape()
/aosp_15_r20/external/protobuf/python/google/protobuf/pyext/
H A Dmessage_factory.cc178 ScopedPyObjectPtr message_class(PyObject_CallObject( in GetOrCreateMessageClass()
/aosp_15_r20/external/tensorflow/tensorflow/python/util/
H A Dfast_module_type.cc163 auto result = PyObject_CallObject(func, arglist); in CallFunc()
/aosp_15_r20/external/python/cpython2/PC/os2vacpp/
Dpython.def308 PyObject_CallObject
/aosp_15_r20/external/python/cpython3/Modules/_sqlite/
Dconnection.c782 py_retval = PyObject_CallObject(ctx->callable, args); in func_callback()
833 function_result = PyObject_CallObject(stepmethod, args); in step_callback()
1082 PyObject *res = PyObject_CallObject(method, args); in inverse_callback()
/aosp_15_r20/external/tensorflow/tensorflow/python/eager/
H A Dpywrap_tfe_src.cc2538 PyObject_CallObject(forward_gradient_function, callback_args.get()));
2555 tensorflow::Safe_PyObjectPtr py_result(PyObject_CallObject(
2639 return PyObject_CallObject(backward_function, out_grads);
2693 return PyObject_CallObject(backward_function, out_grads);
2744 return PyObject_CallObject(backward_function, out_grads);
3346 PyObject_CallObject(gradient_function, callback_args.get()));
3630 PyObject_CallObject(callback_fn, callback_args.get());
/aosp_15_r20/external/python/cpython2/Modules/
D_elementtree.c166 result = PyObject_CallObject(elementtree_deepcopy_obj, args); in deepcopy()
214 result = PyObject_CallObject(function, args); in list_join()
1014 result = PyObject_CallObject(elementtree_iter_obj, args); in element_iter_impl()
1072 result = PyObject_CallObject(elementtree_itertext_obj, args); in element_itertext()
/aosp_15_r20/external/python/cpython3/Modules/_decimal/
D_decimal.c1260 self->traps = PyObject_CallObject((PyObject *)PyDecSignalDict_Type, NULL); in context_new()
1266 self->flags = PyObject_CallObject((PyObject *)PyDecSignalDict_Type, NULL); in context_new()
1411 context = PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL); in ieee_context()
1433 copy = PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL); in context_copy()
6013 PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL)); in PyInit__decimal()
6032 PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL)); in PyInit__decimal()
6040 PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL)); in PyInit__decimal()
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dcall.rst197 | :c:func:`PyObject_CallObject` | ``PyObject *`` | tuple/``NULL`` | --- |
256 .. c:function:: PyObject* PyObject_CallObject(PyObject *callable, PyObject *args)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dabstract.h169 PyAPI_FUNC(PyObject *) PyObject_CallObject(PyObject *callable,
/aosp_15_r20/external/python/cpython3/Include/
Dabstract.h169 PyAPI_FUNC(PyObject *) PyObject_CallObject(PyObject *callable,

123