Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/_io/
Diobase.c218 res = PyObject_CallMethodObjArgs(self, _PyIO_str_flush, NULL); in _io__IOBase_close_impl()
263 res = PyObject_CallMethodObjArgs((PyObject *) self, _PyIO_str_close, in iobase_finalize()
353 PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_seekable, NULL); in _PyIOBase_check_seekable()
386 PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_readable, NULL); in _PyIOBase_check_readable()
419 PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_writable, NULL); in _PyIOBase_check_writable()
448 return PyObject_CallMethodObjArgs(self, _PyIO_str_close, NULL); in iobase_exit()
623 PyObject *line = PyObject_CallMethodObjArgs(self, _PyIO_str_readline, NULL); in iobase_iternext()
731 res = PyObject_CallMethodObjArgs(self, _PyIO_str_write, line, NULL); in _io__IOBase_writelines()
877 res = PyObject_CallMethodObjArgs(self, _PyIO_str_readinto, b, NULL); in _io__RawIOBase_read_impl()
Dtextio.c326 output = PyObject_CallMethodObjArgs(self->decoder, in _PyIncrementalNewlineDecoder_decode()
537 PyObject *state = PyObject_CallMethodObjArgs(self->decoder, in _io_IncrementalNewlineDecoder_getstate_impl()
596 return PyObject_CallMethodObjArgs(self->decoder, _PyIO_str_reset, NULL); in _io_IncrementalNewlineDecoder_reset_impl()
1077 cookieObj = PyObject_CallMethodObjArgs(buffer, _PyIO_str_tell, NULL); in _io_TextIOWrapper___init___impl()
1089 res = PyObject_CallMethodObjArgs(self->encoder, _PyIO_str_setstate, in _io_TextIOWrapper___init___impl()
1223 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in _io_TextIOWrapper_detach_impl()
1254 ret = PyObject_CallMethodObjArgs(self->buffer, in _textiowrapper_writeflush()
1319 b = PyObject_CallMethodObjArgs(self->encoder, in _io_TextIOWrapper_write_impl()
1346 ret = PyObject_CallMethodObjArgs(self->buffer, _PyIO_str_flush, NULL); in _io_TextIOWrapper_write_impl()
1436 PyObject *state = PyObject_CallMethodObjArgs(self->decoder, in textiowrapper_read_chunk()
[all …]
Dbufferedio.c478 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_flush, NULL); in buffered_simple_flush()
530 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in buffered_close()
538 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_close, NULL); in buffered_close()
562 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in buffered_detach()
579 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_seekable, NULL); in buffered_seekable()
586 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readable, NULL); in buffered_readable()
593 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_writable, NULL); in buffered_writable()
616 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_fileno, NULL); in buffered_fileno()
623 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_isatty, NULL); in buffered_isatty()
697 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_tell, NULL); in _buffered_raw_tell()
[all …]
Dstringio.c437 line = PyObject_CallMethodObjArgs((PyObject *)self, in stringio_iternext()
/external/python/cpython2/Modules/_io/
Diobase.c185 res = PyObject_CallMethodObjArgs(self, _PyIO_str_flush, NULL); in iobase_close()
223 res = PyObject_CallMethodObjArgs((PyObject *) self, _PyIO_str_close, in _PyIOBase_finalize()
317 PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_seekable, NULL); in _PyIOBase_check_seekable()
346 PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_readable, NULL); in _PyIOBase_check_readable()
375 PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_writable, NULL); in _PyIOBase_check_writable()
404 return PyObject_CallMethodObjArgs(self, _PyIO_str_close, NULL); in iobase_exit()
569 PyObject *line = PyObject_CallMethodObjArgs(self, _PyIO_str_readline, NULL); in iobase_iternext()
670 res = PyObject_CallMethodObjArgs(self, _PyIO_str_write, line, NULL); in iobase_writelines()
798 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()
1046 cookieObj = PyObject_CallMethodObjArgs(buffer, _PyIO_str_tell, NULL); in textiowrapper_init()
1058 res = PyObject_CallMethodObjArgs(self->encoder, _PyIO_str_setstate, in textiowrapper_init()
1193 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in textiowrapper_detach()
1236 ret = PyObject_CallMethodObjArgs(self->buffer, in _textiowrapper_writeflush()
1299 b = PyObject_CallMethodObjArgs(self->encoder, in textiowrapper_write()
1325 ret = PyObject_CallMethodObjArgs(self->buffer, _PyIO_str_flush, NULL); in textiowrapper_write()
1412 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/cpython2/Python/
D_warnings.c671 source = PyObject_CallMethodObjArgs(loader, get_source_name, in warnings_warn_explicit()
681 source_list = PyObject_CallMethodObjArgs(source, splitlines_name, in warnings_warn_explicit()
/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/cpython3/Doc/data/
Drefcounts.dat947 PyObject_CallMethodObjArgs:PyObject*::+1:
948 PyObject_CallMethodObjArgs:PyObject*:o:0:
949 PyObject_CallMethodObjArgs:PyObject*:name:0:
950 PyObject_CallMethodObjArgs::...::
/external/python/cpython3/Python/
D_warnings.c873 source = PyObject_CallMethodObjArgs(loader, PyId_get_source.object, in warnings_warn_explicit()
883 source_list = PyObject_CallMethodObjArgs(source, in warnings_warn_explicit()
/external/python/cpython2/Include/
Dabstract.h370 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(PyObject *o,
/external/python/cpython3/Include/
Dabstract.h435 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(PyObject *o,
/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.def453 PyObject_CallMethodObjArgs=python36.PyObject_CallMethodObjArgs
/external/python/cpython3/Doc/c-api/
Dobject.rst287 :c:func:`PyObject_CallMethodObjArgs` is a faster alternative.
301 .. c:function:: PyObject* PyObject_CallMethodObjArgs(PyObject *o, PyObject *name, ..., NULL)
/external/python/cpython2/PC/os2emx/
Dpython27.def117 "PyObject_CallMethodObjArgs"
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc1328 ScopedPyObjectPtr result(PyObject_CallMethodObjArgs( in CheckAndGetInteger()
2479 ScopedPyObjectPtr encoded(PyObject_CallMethodObjArgs( in CheckAndGetInteger()
/external/python/cpython3/Modules/
D_asynciomodule.c753 PyObject *rinfo = PyObject_CallMethodObjArgs((PyObject*)fut, _repr_info, in FutureObj_repr()
/external/python/cpython2/Objects/
Dabstract.c2732 PyObject_CallMethodObjArgs(PyObject *callable, PyObject *name, ...) function
/external/python/cpython3/Objects/
Dabstract.c2717 PyObject_CallMethodObjArgs(PyObject *callable, PyObject *name, ...) in PyObject_CallMethodObjArgs() function
/external/python/cpython2/Misc/
DNEWS1890 - Issue #4346: In PyObject_CallMethod and PyObject_CallMethodObjArgs, don't
DHISTORY6384 PyObject_CallMethodObjArgs() have been added to make it more
/external/python/cpython3/Misc/
DHISTORY23763 PyObject_CallMethodObjArgs() have been added to make it more