Home
last modified time | relevance | path

Searched refs:pending_bytes_count (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/_io/
Dtextio.c695 Py_ssize_t pending_bytes_count; member
867 self->pending_bytes_count = 0; in textiowrapper_init()
1230 self->pending_bytes_count = 0; in _textiowrapper_writeflush()
1314 self->pending_bytes_count = 0; in textiowrapper_write()
1320 self->pending_bytes_count += PyBytes_GET_SIZE(b); in textiowrapper_write()
1322 if (self->pending_bytes_count > self->chunk_size || needflush) { in textiowrapper_write()
/external/python/cpython3/Modules/_io/
Dtextio.c678 Py_ssize_t pending_bytes_count; member
1067 self->pending_bytes_count = 0; in _io_TextIOWrapper___init___impl()
1498 self->pending_bytes_count = 0; in _textiowrapper_writeflush()
1591 self->pending_bytes_count = 0; in _io_TextIOWrapper_write_impl()
1597 self->pending_bytes_count += PyBytes_GET_SIZE(b); in _io_TextIOWrapper_write_impl()
1599 if (self->pending_bytes_count > self->chunk_size || needflush || in _io_TextIOWrapper_write_impl()