Searched refs:_PyIO_str_closed (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Modules/_io/ |
D | _iomodule.h | 150 extern PyObject *_PyIO_str_closed;
|
D | _iomodule.c | 27 PyObject *_PyIO_str_closed; variable 719 if (!(_PyIO_str_closed = PyString_InternFromString("closed"))) in init_io()
|
D | iobase.c | 146 res = PyObject_GetAttr(self, _PyIO_str_closed); in iobase_closed() 221 res = PyObject_GetAttr(self, _PyIO_str_closed); in _PyIOBase_finalize()
|
D | bufferedio.c | 439 res = PyObject_GetAttr(self->raw, _PyIO_str_closed); in buffered_closed() 451 return PyObject_GetAttr(self->raw, _PyIO_str_closed); in buffered_closed_get() 2235 return PyObject_GetAttr((PyObject *) self->writer, _PyIO_str_closed); in bufferedrwpair_closed_get()
|
D | textio.c | 2545 return PyObject_GetAttr(self->buffer, _PyIO_str_closed); in textiowrapper_closed_get()
|
/external/python/cpython3/Modules/_io/ |
D | _iomodule.h | 158 extern PyObject *_PyIO_str_closed;
|
D | iobase.c | 188 closed = _PyObject_LookupAttr(self, _PyIO_str_closed, &res); in iobase_check_closed() 269 if (_PyObject_LookupAttr(self, _PyIO_str_closed, &res) <= 0) { in iobase_finalize()
|
D | _iomodule.c | 31 PyObject *_PyIO_str_closed = NULL; variable
|
D | bufferedio.c | 473 res = PyObject_GetAttr(self->raw, _PyIO_str_closed); in buffered_closed() 485 return PyObject_GetAttr(self->raw, _PyIO_str_closed); in buffered_closed_get() 2259 return PyObject_GetAttr((PyObject *) self->writer, _PyIO_str_closed); in bufferedrwpair_closed_get()
|
D | textio.c | 3084 return PyObject_GetAttr(self->buffer, _PyIO_str_closed); in textiowrapper_closed_get()
|
/external/python/cpython3/Tools/c-globals/ |
D | ignored-globals.txt | 435 _PyIO_str_closed
|