/illumos-gate/usr/src/uts/common/sys/ |
H A D | zmod.h | 49 #define Z_DATA_ERROR (-3) macro
|
/illumos-gate/usr/src/boot/lib/libz/test/ |
H A D | infcover.c | 325 assert(ret == Z_DATA_ERROR); 399 inf("1f 8b 0 0", "bad gzip method", 0, 31, 0, Z_DATA_ERROR); 400 inf("1f 8b 8 80", "bad gzip flags", 0, 31, 0, Z_DATA_ERROR); 401 inf("77 85", "bad zlib method", 0, 15, 0, Z_DATA_ERROR); 403 inf("78 9c", "bad zlib window size", 0, 8, 0, Z_DATA_ERROR); 406 Z_DATA_ERROR); 409 inf("78 90", "bad zlib header check", 0, 47, 0, Z_DATA_ERROR); 432 ret = inflateSync(&strm); assert(ret == Z_DATA_ERROR); 440 ret = inflateUndermine(&strm, 1); assert(ret == Z_DATA_ERROR); 543 if (ret == Z_DATA_ERROR || re [all...] |
H A D | minigzip.c | 284 if (ret == Z_DATA_ERROR) { 285 gz->err = Z_DATA_ERROR;
|
H A D | example.c | 443 if (err != Z_DATA_ERROR) {
|
/illumos-gate/usr/src/boot/lib/libz/ |
H A D | uncompr.c | 22 buffer, or Z_DATA_ERROR if the input data was corrupted. 52 return Z_DATA_ERROR;
|
H A D | gzread.c | 204 if (ret == Z_DATA_ERROR) { /* deflate stream invalid */ 205 gz_error(state, Z_DATA_ERROR, 314 gz_error(state, Z_DATA_ERROR, "requested length does not fit in int"); 465 gz_error(state, Z_DATA_ERROR, "out of room to push characters");
|
H A D | inflate.c | 1215 ret = Z_DATA_ERROR; 1311 return Z_DATA_ERROR; 1412 if (state->have != 4) return Z_DATA_ERROR; 1498 return Z_DATA_ERROR;
|
H A D | zlib.h | 178 #define Z_DATA_ERROR (-3) macro 360 stream state was inconsistent, Z_DATA_ERROR if the stream was freed 495 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was 502 continue decompressing. If Z_DATA_ERROR is returned, the application may 784 Z_DATA_ERROR instead of trying to allocate a larger window. 804 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a 836 inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the 868 Z_BUF_ERROR if no more input was provided, Z_DATA_ERROR if no flush point 1088 if in() or out() returned an error, Z_DATA_ERROR if there was a format error 1210 buffer, or Z_DATA_ERROR i [all...] |
H A D | gzwrite.c | 190 gz_error(state, Z_DATA_ERROR, "requested length does not fit in int");
|
H A D | infback.c | 225 and provides information on the unused input on return. For Z_DATA_ERROR 245 returns Z_STREAM_END on success, Z_DATA_ERROR for an deflate format 616 ret = Z_DATA_ERROR;
|
H A D | deflate.c | 1006 return status == BUSY_STATE ? Z_DATA_ERROR : Z_OK;
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | zlib.h | 222 #define Z_DATA_ERROR (-3) macro 400 block; if not, it returns Z_DATA_ERROR. 416 produced, Z_DATA_ERROR if the input data was corrupted, Z_STREAM_ERROR if 420 when Z_FINISH is used. In the Z_DATA_ERROR case, the application may then 546 the error code Z_DATA_ERROR instead of trying to allocate a larger window. 575 if no more input was provided, Z_DATA_ERROR if no marker has been found,
|
H A D | zlib.c | 2909 if (r == Z_DATA_ERROR) 2953 return Z_DATA_ERROR; 2963 return Z_DATA_ERROR; 2979 return Z_DATA_ERROR; 3025 return Z_DATA_ERROR; 3320 r = Z_DATA_ERROR; 3330 r = Z_DATA_ERROR; 3363 r = Z_DATA_ERROR; 3395 if (r == Z_DATA_ERROR) 3434 r = Z_DATA_ERROR; [all...] |
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | zlib.c | 1296 return (status == BUSY_STATE ? Z_DATA_ERROR : Z_OK); 3824 if (r == Z_DATA_ERROR) 3877 return (Z_DATA_ERROR); 3889 return (Z_DATA_ERROR); 3905 return (Z_DATA_ERROR); 3934 return (Z_DATA_ERROR); 3992 return (Z_DATA_ERROR); 4417 r = Z_DATA_ERROR; 4427 r = Z_DATA_ERROR; 4463 r = Z_DATA_ERROR; [all...] |
H A D | zlib.h | 475 #define Z_DATA_ERROR (-3) macro 636 * state was inconsistent, Z_DATA_ERROR if the stream was freed 692 * returns Z_DATA_ERROR. 710 * point (see inflateSetDictionary below), Z_DATA_ERROR if the input 715 * buffer when Z_FINISH is used. In the Z_DATA_ERROR case, the 910 * as input, inflate() will return with the error code Z_DATA_ERROR 948 * is inconsistent, Z_DATA_ERROR if the given dictionary doesn't match 961 * Z_BUF_ERROR if no more input was provided, Z_DATA_ERROR if no 1042 * output buffer, or Z_DATA_ERROR if the input data was corrupted.
|
/illumos-gate/usr/src/uts/common/zmod/ |
H A D | zlib.h | 177 #define Z_DATA_ERROR (-3) macro 337 stream state was inconsistent, Z_DATA_ERROR if the stream was freed 451 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was 458 continue decompressing. If Z_DATA_ERROR is returned, the application may then 710 Z_DATA_ERROR instead of trying to allocate a larger window. 727 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is 754 inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the 767 if no more input was provided, Z_DATA_ERROR if no flush point has been found, 940 if in() or out() returned an error, Z_DATA_ERROR if there was a format 1064 buffer, or Z_DATA_ERROR i [all...] |
H A D | inflate.c | 1145 ret = Z_DATA_ERROR; 1215 return Z_DATA_ERROR; 1324 if (state->have != 4) return Z_DATA_ERROR;
|
H A D | deflate.c | 892 return status == BUSY_STATE ? Z_DATA_ERROR : Z_OK;
|