Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dgzio.c58 int z_err; /* error code for last stream operation */ member
118 s->z_err = Z_OK;
248 s->z_err = Z_ERRNO;
270 if (ferror(s->file)) s->z_err = Z_ERRNO;
304 if (len == 0 && ferror(s->file)) s->z_err = Z_ERRNO;
326 s->z_err = Z_DATA_ERROR;
348 s->z_err = s->z_eof ? Z_DATA_ERROR : Z_OK;
381 if (s->z_err < 0) err = s->z_err;
405 if (s->z_err == Z_DATA_ERROR || s->z_err == Z_ERRNO) return -1;
406 if (s->z_err == Z_STREAM_END) return 0; /* EOF */
[all …]