Searched refs:PyObject_CallMethodObjArgs (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython2/Modules/_io/ |
D | iobase.c | 185 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()
|
D | textio.c | 275 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 …]
|
D | bufferedio.c | 430 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 …]
|
D | stringio.c | 326 line = PyObject_CallMethodObjArgs((PyObject *)self, in stringio_iternext()
|
/external/python/cpython2/Python/ |
D | _warnings.c | 671 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/ |
D | refcounts.dat | 933 PyObject_CallMethodObjArgs:PyObject*::+1: 934 PyObject_CallMethodObjArgs:PyObject*:o:0: 935 PyObject_CallMethodObjArgs:PyObject*:name:0: 936 PyObject_CallMethodObjArgs::...::
|
/external/python/cpython2/Include/ |
D | abstract.h | 370 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(PyObject *o,
|
/external/python/cpython2/Doc/c-api/ |
D | object.rst | 281 :c:func:`PyObject_CallMethodObjArgs` is a faster alternative. 294 .. c:function:: PyObject* PyObject_CallMethodObjArgs(PyObject *o, PyObject *name, ..., NULL)
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 117 "PyObject_CallMethodObjArgs"
|
/external/protobuf/python/google/protobuf/pyext/ |
D | message.cc | 1328 ScopedPyObjectPtr result(PyObject_CallMethodObjArgs( in CheckAndGetInteger() 2479 ScopedPyObjectPtr encoded(PyObject_CallMethodObjArgs( in CheckAndGetInteger()
|
/external/python/cpython2/Objects/ |
D | abstract.c | 2732 PyObject_CallMethodObjArgs(PyObject *callable, PyObject *name, ...) function
|
/external/python/cpython2/Misc/ |
D | NEWS | 1890 - Issue #4346: In PyObject_CallMethod and PyObject_CallMethodObjArgs, don't
|
D | HISTORY | 6384 PyObject_CallMethodObjArgs() have been added to make it more
|