Lines Matching defs:chunks
1060 PyObject *chunks = NULL;
1091 chunks = PyList_New(0);
1092 if (chunks == NULL)
1098 if (PyList_Append(chunks, res) < 0) {
1142 if (PyList_Append(chunks, res) < 0) {
1151 if (res != NULL && PyList_Append(chunks, res) < 0) {
1155 Py_XSETREF(res, _PyBytes_Join((PyObject *)&_Py_SINGLETON(bytes_empty), chunks));
1160 Py_XDECREF(chunks);
1513 PyObject *res = NULL, *data = NULL, *tmp = NULL, *chunks = NULL, *readall;
1556 chunks = PyList_New(0);
1557 if (chunks == NULL)
1562 if (PyList_Append(chunks, data) < 0)
1581 tmp = _PyBytes_Join((PyObject *)&_Py_SINGLETON(bytes_empty), chunks);
1595 Py_XDECREF(chunks);