Searched refs:pending_bytes (Results 1 – 3 of 3) sorted by relevance
678 PyObject *pending_bytes; // data waiting to be written. member1116 Py_CLEAR(self->pending_bytes); in _io_TextIOWrapper___init___impl()1422 Py_CLEAR(self->pending_bytes); in textiowrapper_clear()1454 Py_VISIT(self->pending_bytes); in textiowrapper_traverse()1545 if (self->pending_bytes == NULL) in _textiowrapper_writeflush()1548 PyObject *pending = self->pending_bytes; in _textiowrapper_writeflush()1597 self->pending_bytes = NULL; in _textiowrapper_writeflush()1693 if (self->pending_bytes == NULL) { in _io_TextIOWrapper_write_impl()1695 self->pending_bytes = b; in _io_TextIOWrapper_write_impl()1697 else if (!PyList_CheckExact(self->pending_bytes)) { in _io_TextIOWrapper_write_impl()[all …]
693 PyObject *pending_bytes; /* list of bytes objects waiting to be member862 Py_CLEAR(self->pending_bytes); in textiowrapper_init()1087 Py_CLEAR(self->pending_bytes); in _textiowrapper_clear()1116 Py_VISIT(self->pending_bytes); in textiowrapper_traverse()1225 if (self->pending_bytes == NULL) in _textiowrapper_writeflush()1228 pending = self->pending_bytes; in _textiowrapper_writeflush()1231 Py_CLEAR(self->pending_bytes); in _textiowrapper_writeflush()1308 if (self->pending_bytes == NULL) { in textiowrapper_write()1309 self->pending_bytes = PyList_New(0); in textiowrapper_write()1310 if (self->pending_bytes == NULL) { in textiowrapper_write()[all …]
625 __u64 pending_bytes; member