Home
last modified time | relevance | path

Searched refs:PyObject_CallMethodObjArgs (Results 1 – 25 of 40) sorted by relevance

12

/aosp_15_r20/external/python/cpython2/Modules/_io/
Diobase.c186 res = PyObject_CallMethodObjArgs(self, _PyIO_str_flush, NULL); in iobase_close()
231 res = PyObject_CallMethodObjArgs((PyObject *) self, _PyIO_str_close, in _PyIOBase_finalize()
325 PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_seekable, NULL); in _PyIOBase_check_seekable()
354 PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_readable, NULL); in _PyIOBase_check_readable()
383 PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_writable, NULL); in _PyIOBase_check_writable()
412 return PyObject_CallMethodObjArgs(self, _PyIO_str_close, NULL); in iobase_exit()
577 PyObject *line = PyObject_CallMethodObjArgs(self, _PyIO_str_readline, NULL); in iobase_iternext()
692 res = PyObject_CallMethodObjArgs(self, _PyIO_str_write, line, NULL); in iobase_writelines()
820 res = PyObject_CallMethodObjArgs(self, _PyIO_str_readinto, b, NULL); in rawiobase_read()
Dtextio.c275 output = PyObject_CallMethodObjArgs(self->decoder, in _PyIncrementalNewlineDecoder_decode()
492 PyObject *state = PyObject_CallMethodObjArgs(self->decoder, in incrementalnewlinedecoder_getstate()
538 return PyObject_CallMethodObjArgs(self->decoder, _PyIO_str_reset, NULL); in incrementalnewlinedecoder_reset()
1049 cookieObj = PyObject_CallMethodObjArgs(buffer, _PyIO_str_tell, NULL); in textiowrapper_init()
1061 res = PyObject_CallMethodObjArgs(self->encoder, _PyIO_str_setstate, in textiowrapper_init()
1196 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in textiowrapper_detach()
1239 ret = PyObject_CallMethodObjArgs(self->buffer, in _textiowrapper_writeflush()
1302 b = PyObject_CallMethodObjArgs(self->encoder, in textiowrapper_write()
1328 ret = PyObject_CallMethodObjArgs(self->buffer, _PyIO_str_flush, NULL); in textiowrapper_write()
1416 PyObject *state = PyObject_CallMethodObjArgs(self->decoder, in textiowrapper_read_chunk()
[all …]
Dbufferedio.c430 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_flush, NULL); in buffered_simple_flush()
474 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in buffered_close()
482 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_close, NULL); in buffered_close()
501 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in buffered_detach()
518 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_seekable, NULL); in buffered_seekable()
525 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readable, NULL); in buffered_readable()
532 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_writable, NULL); in buffered_writable()
555 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_fileno, NULL); in buffered_fileno()
562 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_isatty, NULL); in buffered_isatty()
625 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_tell, NULL); in _buffered_raw_tell()
[all …]
Dstringio.c326 line = PyObject_CallMethodObjArgs((PyObject *)self, in stringio_iternext()
/aosp_15_r20/external/python/cpython3/Modules/_io/
Diobase.c693 PyObject *ret = PyObject_CallMethodObjArgs(result, &_Py_ID(extend), in _io__IOBase_readlines_impl()
778 res = PyObject_CallMethodObjArgs(self, &_Py_ID(write), line, NULL); in _io__IOBase_writelines()
922 res = PyObject_CallMethodObjArgs(self, &_Py_ID(readinto), b, NULL); in _io__RawIOBase_read_impl()
Dtextio.c302 output = PyObject_CallMethodObjArgs(self->decoder, in _PyIncrementalNewlineDecoder_decode()
896 chars = PyObject_CallMethodObjArgs(decoder, &_Py_ID(decode), bytes, in _textiowrapper_decode()
1923 decoded = PyObject_CallMethodObjArgs( in _io_TextIOWrapper_read_impl()
2578 decoded = PyObject_CallMethodObjArgs(self->decoder, &_Py_ID(decode), in _io_TextIOWrapper_seek_impl()
/aosp_15_r20/external/pytorch/torch/csrc/utils/
H A Dpythoncapi_compat.h404 return PyObject_CallMethodObjArgs(obj, name, NULL); in PyObject_CallMethodNoArgs()
422 return PyObject_CallMethodObjArgs(obj, name, arg, NULL); in PyObject_CallMethodOneArg()
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dcall.rst205 | :c:func:`PyObject_CallMethodObjArgs` | obj + name | variadic | --- |
300 :c:func:`PyObject_CallMethodObjArgs` is a faster alternative.
319 .. c:function:: PyObject* PyObject_CallMethodObjArgs(PyObject *obj, PyObject *name, ...)
/aosp_15_r20/external/python/cpython2/Python/
D_warnings.c677 source = PyObject_CallMethodObjArgs(loader, get_source_name, in warnings_warn_explicit()
687 source_list = PyObject_CallMethodObjArgs((PyObject *)&PyString_Type, in warnings_warn_explicit()
/aosp_15_r20/external/python/cpython2/Doc/data/
Drefcounts.dat933 PyObject_CallMethodObjArgs:PyObject*::+1:
934 PyObject_CallMethodObjArgs:PyObject*:o:0:
935 PyObject_CallMethodObjArgs:PyObject*:name:0:
936 PyObject_CallMethodObjArgs::...::
/aosp_15_r20/external/python/cpython3/Python/
Dimport.c802 res = PyObject_CallMethodObjArgs(external, &_Py_ID(_fix_up_module), in PyImport_ExecCodeModuleObject()
1736 mod = PyObject_CallMethodObjArgs(interp->importlib, &_Py_ID(_find_and_load), in import_find_and_load()
1906 final_mod = PyObject_CallMethodObjArgs( in PyImport_ImportModuleLevelObject()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dabstract.h226 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(
/aosp_15_r20/external/python/cpython3/Include/
Dabstract.h226 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dabstract.h226 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dabstract.h226 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dabstract.h226 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(
/aosp_15_r20/external/python/cpython2/Include/
Dabstract.h370 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(PyObject *o,
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dobject.rst281 :c:func:`PyObject_CallMethodObjArgs` is a faster alternative.
294 .. c:function:: PyObject* PyObject_CallMethodObjArgs(PyObject *o, PyObject *name, ..., NULL)
/aosp_15_r20/external/python/cpython2/Misc/NEWS.d/
D2.7.8.rst7 In PyObject_CallMethod and PyObject_CallMethodObjArgs, don't overwrite the
/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat1612 PyObject_CallMethodObjArgs:PyObject*::+1:
1613 PyObject_CallMethodObjArgs:PyObject*:o:0:
1614 PyObject_CallMethodObjArgs:PyObject*:name:0:
1615 PyObject_CallMethodObjArgs::...::
/aosp_15_r20/external/pytorch/torch/csrc/dynamo/
H A Dpython_compiled_autograd.cpp419 THPObjectPtr pyresult(check(PyObject_CallMethodObjArgs( in call_begin_capture()
/aosp_15_r20/external/python/cpython3/Objects/
Dcall.c863 PyObject_CallMethodObjArgs(PyObject *obj, PyObject *name, ...) in PyObject_CallMethodObjArgs() function
/aosp_15_r20/external/python/cpython2/PC/os2emx/
Dpython27.def117 "PyObject_CallMethodObjArgs"
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c437 EXPORT_FUNC(PyObject_CallMethodObjArgs)
/aosp_15_r20/external/tensorflow/tensorflow/python/eager/
H A Dpywrap_tensor.cc476 PyObject* result = PyObject_CallMethodObjArgs( in MaybeInvokeCreatedOnEagerTensorProfiler()

12