Home
last modified time | relevance | path

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

12

/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()
/external/python/cpython3/Modules/_io/
Diobase.c785 res = PyObject_CallMethodObjArgs(self, _PyIO_str_write, line, NULL); in _io__IOBase_writelines()
931 res = PyObject_CallMethodObjArgs(self, _PyIO_str_readinto, b, NULL); in _io__RawIOBase_read_impl()
Dtextio.c321 output = PyObject_CallMethodObjArgs(self->decoder, in _PyIncrementalNewlineDecoder_decode()
905 chars = PyObject_CallMethodObjArgs(decoder, _PyIO_str_decode, bytes, in _textiowrapper_decode()
1946 decoded = PyObject_CallMethodObjArgs( in _io_TextIOWrapper_read_impl()
Dbufferedio.c700 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_seek, in _buffered_raw_seek()
/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()
/external/python/cpython3/Doc/c-api/
Dcall.rst211 | :c:func:`PyObject_CallMethodObjArgs` | obj + name | variadic | --- |
308 :c:func:`PyObject_CallMethodObjArgs` is a faster alternative.
327 .. c:function:: PyObject* PyObject_CallMethodObjArgs(PyObject *obj, PyObject *name, ...)
/external/python/cpython3/Include/
Dabstract.h226 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(
/external/python/cpython2/Include/
Dabstract.h370 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(PyObject *o,
/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::...::
/external/python/cpython2/Misc/NEWS.d/
D2.7.8.rst7 In PyObject_CallMethod and PyObject_CallMethodObjArgs, don't overwrite the
/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)
/external/python/cpython3/PC/
Dpython3.def455 PyObject_CallMethodObjArgs=python39.PyObject_CallMethodObjArgs
/external/python/cpython3/Doc/data/
Drefcounts.dat1609 PyObject_CallMethodObjArgs:PyObject*::+1:
1610 PyObject_CallMethodObjArgs:PyObject*:o:0:
1611 PyObject_CallMethodObjArgs:PyObject*:name:0:
1612 PyObject_CallMethodObjArgs::...::
/external/python/cpython2/PC/os2emx/
Dpython27.def117 "PyObject_CallMethodObjArgs"
/external/python/cpython3/Objects/
Dcall.c835 PyObject_CallMethodObjArgs(PyObject *obj, PyObject *name, ...) in PyObject_CallMethodObjArgs() function
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tensor.cc418 PyObject* result = PyObject_CallMethodObjArgs( in MaybeInvokeCreatedOnEagerTensorProfiler()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc1349 ScopedPyObjectPtr result(PyObject_CallMethodObjArgs( in IsInitialized()
2408 ScopedPyObjectPtr encoded(PyObject_CallMethodObjArgs( in ToUnicode()
/external/llvm-project/lldb/bindings/python/
Dpython-wrapper.swig951 PyObject* result = PyObject_CallMethodObjArgs(implementor, str.get(), arg,
/external/python/cpython3/Modules/
Dselectmodule.c1686 return PyObject_CallMethodObjArgs((PyObject *)self, _selectstate_global->close, NULL); in select_epoll___exit___impl()
D_zoneinfo.c434 PyObject *tmp = PyObject_CallMethodObjArgs(weak_cache, pop, item, in zoneinfo_clear_cache()
/external/python/cpython2/Objects/
Dabstract.c2729 PyObject_CallMethodObjArgs(PyObject *callable, PyObject *name, ...) function
/external/python/cpython3/Misc/NEWS.d/
D3.8.0b1.rst2007 Update :c:func:`PyObject_CallMethodObjArgs` and

12