Searched refs:Z_STREAM_ERROR (Results 1 - 4 of 4) sorted by relevance
/linux-4.1.27/tools/perf/util/ |
H A D | zlib.c | 15 int ret = Z_STREAM_ERROR; gzip_decompress_to_file()
|
/linux-4.1.27/include/linux/ |
H A D | zlib.h | 152 #define Z_STREAM_ERROR (-2) macro 209 enough memory, Z_STREAM_ERROR if level is not a valid compression level, 289 Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example 301 deflateEnd returns Z_OK if success, Z_STREAM_ERROR if the 425 value), Z_STREAM_ERROR if the stream structure was inconsistent (for example 442 inflateEnd returns Z_OK if success, Z_STREAM_ERROR if the stream state 492 memory, Z_STREAM_ERROR if a parameter is invalid (such as an invalid 504 deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source 548 memory, Z_STREAM_ERROR if a parameter is invalid (such as a null strm). msg 561 inflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source
|
/linux-4.1.27/lib/zlib_deflate/ |
H A D | deflate.c | 186 if (strm == NULL) return Z_STREAM_ERROR; zlib_deflateInit2() 201 return Z_STREAM_ERROR; zlib_deflateInit2() 260 return Z_STREAM_ERROR; zlib_deflateReset() 337 return Z_STREAM_ERROR; zlib_deflate() 343 return Z_STREAM_ERROR; zlib_deflate() 472 if (strm == NULL || strm->state == NULL) return Z_STREAM_ERROR; zlib_deflateEnd() 478 return Z_STREAM_ERROR; zlib_deflateEnd()
|
/linux-4.1.27/lib/zlib_inflate/ |
H A D | inflate.c | 27 if (strm == NULL || strm->state == NULL) return Z_STREAM_ERROR; zlib_inflateReset() 52 if (strm == NULL) return Z_STREAM_ERROR; zlib_inflateInit2() 66 return Z_STREAM_ERROR; zlib_inflateInit2() 150 if (strm == NULL || strm->state == NULL) return Z_STREAM_ERROR; zlib_inflateSyncPacket() 340 return Z_STREAM_ERROR; zlib_inflate() 707 return Z_STREAM_ERROR; zlib_inflate() 745 return Z_STREAM_ERROR; zlib_inflateEnd()
|
Completed in 132 milliseconds