Home
last modified time | relevance | path

Searched refs:PyObject_CallMethodNoArgs (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Modules/_io/
Diobase.c238 res = PyObject_CallMethodNoArgs(self, _PyIO_str_flush); in _io__IOBase_close_impl()
284 res = PyObject_CallMethodNoArgs((PyObject *)self, _PyIO_str_close); in iobase_finalize()
384 PyObject *res = PyObject_CallMethodNoArgs(self, _PyIO_str_seekable); in _PyIOBase_check_seekable()
417 PyObject *res = PyObject_CallMethodNoArgs(self, _PyIO_str_readable); in _PyIOBase_check_readable()
450 PyObject *res = PyObject_CallMethodNoArgs(self, _PyIO_str_writable); in _PyIOBase_check_writable()
479 return PyObject_CallMethodNoArgs(self, _PyIO_str_close); in iobase_exit()
657 PyObject *line = PyObject_CallMethodNoArgs(self, _PyIO_str_readline); in iobase_iternext()
Dbufferedio.c461 return PyObject_CallMethodNoArgs(self->raw, _PyIO_str_flush); in buffered_simple_flush()
513 res = PyObject_CallMethodNoArgs((PyObject *)self, _PyIO_str_flush); in buffered_close()
521 res = PyObject_CallMethodNoArgs(self->raw, _PyIO_str_close); in buffered_close()
545 res = PyObject_CallMethodNoArgs((PyObject *)self, _PyIO_str_flush); in buffered_detach()
562 return PyObject_CallMethodNoArgs(self->raw, _PyIO_str_seekable); in buffered_seekable()
569 return PyObject_CallMethodNoArgs(self->raw, _PyIO_str_readable); in buffered_readable()
576 return PyObject_CallMethodNoArgs(self->raw, _PyIO_str_writable); in buffered_writable()
599 return PyObject_CallMethodNoArgs(self->raw, _PyIO_str_fileno); in buffered_fileno()
606 return PyObject_CallMethodNoArgs(self->raw, _PyIO_str_isatty); in buffered_isatty()
670 res = PyObject_CallMethodNoArgs(self->raw, _PyIO_str_tell); in _buffered_raw_tell()
[all …]
Dtextio.c532 PyObject *state = PyObject_CallMethodNoArgs(self->decoder, in _io_IncrementalNewlineDecoder_getstate_impl()
606 return PyObject_CallMethodNoArgs(self->decoder, _PyIO_str_reset); in _io_IncrementalNewlineDecoder_reset_impl()
968 PyObject *cookieObj = PyObject_CallMethodNoArgs( in _textiowrapper_fix_encoder_state()
1391 PyObject *res = PyObject_CallMethodNoArgs((PyObject *)self, _PyIO_str_flush); in _io_TextIOWrapper_reconfigure_impl()
1530 res = PyObject_CallMethodNoArgs((PyObject *)self, _PyIO_str_flush); in _io_TextIOWrapper_detach_impl()
1723 ret = PyObject_CallMethodNoArgs(self->buffer, _PyIO_str_flush); in _io_TextIOWrapper_write_impl()
1813 PyObject *state = PyObject_CallMethodNoArgs(self->decoder, in textiowrapper_read_chunk()
2398 res = PyObject_CallMethodNoArgs(self->decoder, _PyIO_str_reset); in _textiowrapper_decoder_setstate()
2413 res = PyObject_CallMethodNoArgs(self->encoder, _PyIO_str_reset); in _textiowrapper_encoder_reset()
2542 res = PyObject_CallMethodNoArgs((PyObject *)self, _PyIO_str_flush); in _io_TextIOWrapper_seek_impl()
[all …]
Dstringio.c411 line = PyObject_CallMethodNoArgs((PyObject *)self, in stringio_iternext()
/external/python/cpython3/Include/cpython/
Dabstract.h137 #define _PyObject_CallMethodNoArgs PyObject_CallMethodNoArgs
196 PyObject_CallMethodNoArgs(PyObject *self, PyObject *name) in PyObject_CallMethodNoArgs() function
/external/python/cpython3/Modules/
D_posixsubprocess.c90 result = PyObject_CallMethodNoArgs( in _enable_gc()
681 result = PyObject_CallMethodNoArgs( in subprocess_fork_exec()
693 result = PyObject_CallMethodNoArgs( in subprocess_fork_exec()
/external/python/cpython3/Doc/c-api/
Dcall.rst213 | :c:func:`PyObject_CallMethodNoArgs` | obj + name | --- | --- |
338 .. c:function:: PyObject* PyObject_CallMethodNoArgs(PyObject *obj, PyObject *name)
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a4.rst948 ``PyObject_CallMethodNoArgs``, ``PyObject_CallMethodOneArg``,