Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython3/Modules/
D_abc.c619 result = PyObject_CallMethodOneArg(self, &_Py_ID(__subclasscheck__), in _abc__abc_instancecheck_impl()
623 result = PyObject_CallMethodOneArg(self, &_Py_ID(__subclasscheck__), in _abc__abc_instancecheck_impl()
636 result = PyObject_CallMethodOneArg(self, &_Py_ID(__subclasscheck__), in _abc__abc_instancecheck_impl()
720 ok = PyObject_CallMethodOneArg( in _abc__abc_subclasscheck_impl()
Darraymodule.c1557 res = PyObject_CallMethodOneArg(f, state->str_write, bytes); in array_array_tofile_impl()
D_pickle.c5827 return PyObject_CallMethodOneArg(cls, &_Py_ID(__new__), cls); in instantiate()
/aosp_15_r20/external/python/cpython3/Modules/_io/
Dtextio.c973 PyObject *res = PyObject_CallMethodOneArg( in _textiowrapper_fix_encoder_state()
1565 ret = PyObject_CallMethodOneArg(self->buffer, &_Py_ID(write), b); in _textiowrapper_writeflush()
1640 b = PyObject_CallMethodOneArg(self->encoder, &_Py_ID(encode), text); in _io_TextIOWrapper_write_impl()
1831 input_chunk = PyObject_CallMethodOneArg(self->buffer, in textiowrapper_read_chunk()
2397 res = PyObject_CallMethodOneArg(self->encoder, &_Py_ID(setstate), in _textiowrapper_encoder_reset()
2539 res = PyObject_CallMethodOneArg(self->buffer, &_Py_ID(seek), posobj); in _io_TextIOWrapper_seek_impl()
2821 res = PyObject_CallMethodOneArg( in _io_TextIOWrapper_tell_impl()
2836 res = PyObject_CallMethodOneArg( in _io_TextIOWrapper_tell_impl()
2864 return PyObject_CallMethodOneArg(self->buffer, &_Py_ID(truncate), pos); in _io_TextIOWrapper_truncate_impl()
3037 res = PyObject_CallMethodOneArg(self->buffer, &_Py_ID(_dealloc_warn), in _io_TextIOWrapper_close_impl()
Dbufferedio.c425 r = PyObject_CallMethodOneArg(self->raw, &_Py_ID(_dealloc_warn), source); in buffered_dealloc_warn()
1314 res = PyObject_CallMethodOneArg(self->raw, &_Py_ID(truncate), pos); in _io__Buffered_truncate_impl()
1460 res = PyObject_CallMethodOneArg(self->raw, &_Py_ID(readinto), memobj); in _bufferedreader_raw_read()
1817 res = PyObject_CallMethodOneArg(self->raw, &_Py_ID(write), memobj); in _bufferedwriter_raw_write()
Dfileio.c147 res = PyObject_CallMethodOneArg((PyObject*)&PyRawIOBase_Type, in _io_FileIO_close_impl()
Dwinconsoleio.c197 res = PyObject_CallMethodOneArg((PyObject*)&PyRawIOBase_Type, in _io__WindowsConsoleIO_close_impl()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dabstract.h77 #define _PyObject_CallMethodOneArg PyObject_CallMethodOneArg
111 PyObject_CallMethodOneArg(PyObject *self, PyObject *name, PyObject *arg) in PyObject_CallMethodOneArg() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dabstract.h77 #define _PyObject_CallMethodOneArg PyObject_CallMethodOneArg
111 PyObject_CallMethodOneArg(PyObject *self, PyObject *name, PyObject *arg) in PyObject_CallMethodOneArg() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/
Dabstract.h77 #define _PyObject_CallMethodOneArg PyObject_CallMethodOneArg
111 PyObject_CallMethodOneArg(PyObject *self, PyObject *name, PyObject *arg) in PyObject_CallMethodOneArg() function
/aosp_15_r20/external/python/cpython3/Include/cpython/
Dabstract.h77 #define _PyObject_CallMethodOneArg PyObject_CallMethodOneArg
111 PyObject_CallMethodOneArg(PyObject *self, PyObject *name, PyObject *arg) in PyObject_CallMethodOneArg() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dabstract.h77 #define _PyObject_CallMethodOneArg PyObject_CallMethodOneArg
111 PyObject_CallMethodOneArg(PyObject *self, PyObject *name, PyObject *arg) in PyObject_CallMethodOneArg() function
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dcall.rst209 | :c:func:`PyObject_CallMethodOneArg` | obj + name | 1 object | --- |
341 .. c:function:: PyObject* PyObject_CallMethodOneArg(PyObject *obj, PyObject *name, PyObject *arg)
/aosp_15_r20/external/pytorch/torch/csrc/utils/
H A Dpythoncapi_compat.h420 PyObject_CallMethodOneArg(PyObject *obj, PyObject *name, PyObject *arg) in PyObject_CallMethodOneArg() function
/aosp_15_r20/external/pytorch/torch/csrc/dynamo/
H A Dpython_compiled_autograd.cpp448 return check(PyObject_CallMethodOneArg(self, method_name, pyinput.get())); in call_end_capture()
H A Dguards.cpp1465 PyObject* call_result = PyObject_CallMethodOneArg( in check_nopybind()
/aosp_15_r20/external/python/cpython3/Python/
D_warnings.c179 result = PyObject_CallMethodOneArg(obj, &_Py_ID(match), arg); in check_matched()
Dimport.c1960 reloaded_module = PyObject_CallMethodOneArg(importlib, &_Py_ID(reload), m); in PyImport_ReloadModule()
Dsysmodule.c637 result = PyObject_CallMethodOneArg(buffer, &_Py_ID(write), encoded); in sys_displayhook_unencodable()
Dceval.c2597 retval = PyObject_CallMethodOneArg(receiver, &_Py_ID(send), v);
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.9.0a4.rst948 ``PyObject_CallMethodNoArgs``, ``PyObject_CallMethodOneArg``,
/aosp_15_r20/external/python/cpython3/Objects/
Ddictobject.c4784 PyObject *tmp = PyObject_CallMethodOneArg( in dictviews_sub()
4995 PyObject *tmp = PyObject_CallMethodOneArg( in dictviews_xor()
Dabstract.c2890 *result = PyObject_CallMethodOneArg(iter, &_Py_ID(send), arg); in PyIter_Send()
Dtypeobject.c4947 slotnames = PyObject_CallMethodOneArg( in _PyType_GetSlotNames()