Searched refs:PyObject_CallMethodNoArgs (Results 1 – 7 of 7) sorted by relevance
| /third_party/python/Modules/_io/ |
| D | iobase.c | 239 res = PyObject_CallMethodNoArgs(self, _PyIO_str_flush); in _io__IOBase_close_impl() 285 res = PyObject_CallMethodNoArgs((PyObject *)self, _PyIO_str_close); in iobase_finalize() 386 PyObject *res = PyObject_CallMethodNoArgs(self, _PyIO_str_seekable); in _PyIOBase_check_seekable() 419 PyObject *res = PyObject_CallMethodNoArgs(self, _PyIO_str_readable); in _PyIOBase_check_readable() 452 PyObject *res = PyObject_CallMethodNoArgs(self, _PyIO_str_writable); in _PyIOBase_check_writable() 481 return PyObject_CallMethodNoArgs(self, _PyIO_str_close); in iobase_exit() 659 PyObject *line = PyObject_CallMethodNoArgs(self, _PyIO_str_readline); in iobase_iternext()
|
| D | bufferedio.c | 460 return PyObject_CallMethodNoArgs(self->raw, _PyIO_str_flush); in buffered_simple_flush() 512 res = PyObject_CallMethodNoArgs((PyObject *)self, _PyIO_str_flush); in buffered_close() 520 res = PyObject_CallMethodNoArgs(self->raw, _PyIO_str_close); in buffered_close() 547 res = PyObject_CallMethodNoArgs((PyObject *)self, _PyIO_str_flush); in buffered_detach() 564 return PyObject_CallMethodNoArgs(self->raw, _PyIO_str_seekable); in buffered_seekable() 571 return PyObject_CallMethodNoArgs(self->raw, _PyIO_str_readable); in buffered_readable() 578 return PyObject_CallMethodNoArgs(self->raw, _PyIO_str_writable); in buffered_writable() 601 return PyObject_CallMethodNoArgs(self->raw, _PyIO_str_fileno); in buffered_fileno() 608 return PyObject_CallMethodNoArgs(self->raw, _PyIO_str_isatty); in buffered_isatty() 672 res = PyObject_CallMethodNoArgs(self->raw, _PyIO_str_tell); in _buffered_raw_tell() [all …]
|
| D | textio.c | 533 PyObject *state = PyObject_CallMethodNoArgs(self->decoder, in _io_IncrementalNewlineDecoder_getstate_impl() 607 return PyObject_CallMethodNoArgs(self->decoder, _PyIO_str_reset); in _io_IncrementalNewlineDecoder_reset_impl() 969 PyObject *cookieObj = PyObject_CallMethodNoArgs( in _textiowrapper_fix_encoder_state() 1387 PyObject *res = PyObject_CallMethodNoArgs((PyObject *)self, _PyIO_str_flush); in _io_TextIOWrapper_reconfigure_impl() 1526 res = PyObject_CallMethodNoArgs((PyObject *)self, _PyIO_str_flush); in _io_TextIOWrapper_detach_impl() 1733 ret = PyObject_CallMethodNoArgs(self->buffer, _PyIO_str_flush); in _io_TextIOWrapper_write_impl() 1823 PyObject *state = PyObject_CallMethodNoArgs(self->decoder, in textiowrapper_read_chunk() 2408 res = PyObject_CallMethodNoArgs(self->decoder, _PyIO_str_reset); in _textiowrapper_decoder_setstate() 2423 res = PyObject_CallMethodNoArgs(self->encoder, _PyIO_str_reset); in _textiowrapper_encoder_reset() 2554 res = PyObject_CallMethodNoArgs((PyObject *)self, _PyIO_str_flush); in _io_TextIOWrapper_seek_impl() [all …]
|
| D | stringio.c | 411 line = PyObject_CallMethodNoArgs((PyObject *)self, in stringio_iternext()
|
| /third_party/python/Include/cpython/ |
| D | abstract.h | 133 #define _PyObject_CallMethodNoArgs PyObject_CallMethodNoArgs 192 PyObject_CallMethodNoArgs(PyObject *self, PyObject *name) in PyObject_CallMethodNoArgs() function
|
| /third_party/python/Doc/c-api/ |
| D | call.rst | 213 | :c:func:`PyObject_CallMethodNoArgs` | obj + name | --- | --- | 338 .. c:function:: PyObject* PyObject_CallMethodNoArgs(PyObject *obj, PyObject *name)
|
| /third_party/python/Misc/NEWS.d/ |
| D | 3.9.0a4.rst | 948 ``PyObject_CallMethodNoArgs``, ``PyObject_CallMethodOneArg``,
|