Searched refs:Z_DATA_ERROR (Results 1 - 9 of 9) sorted by relevance
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/ |
H A D | inftrees.c | 108 case), or Z_DATA_ERROR if the input is invalid. */ 170 return Z_DATA_ERROR; 172 return Z_DATA_ERROR; 234 return Z_DATA_ERROR; /* overflow of MANY */ 309 if (r == Z_DATA_ERROR) 314 r = Z_DATA_ERROR; 344 if (r == Z_DATA_ERROR) 349 r = Z_DATA_ERROR; 359 if (r == Z_DATA_ERROR) 367 r = Z_DATA_ERROR; [all...] |
H A D | infblock.c | 181 r = Z_DATA_ERROR; 191 r = Z_DATA_ERROR; 224 r = Z_DATA_ERROR; 253 if (r == Z_DATA_ERROR) 296 r = Z_DATA_ERROR; 320 if (t == (uInt)Z_DATA_ERROR) 363 r = Z_DATA_ERROR;
|
H A D | inffast.c | 143 return Z_DATA_ERROR; 174 return Z_DATA_ERROR;
|
H A D | infcodes.c | 157 r = Z_DATA_ERROR; 189 r = Z_DATA_ERROR; 233 r = Z_DATA_ERROR;
|
H A D | inflate.c | 223 if (r == Z_DATA_ERROR) 269 return Z_DATA_ERROR; 289 if (adler32(1L, dictionary, dictLength) != z->adler) return Z_DATA_ERROR; 345 return Z_DATA_ERROR;
|
H A D | gzio.c | 256 to Z_DATA_ERROR if the magic header is present but the rest of the header 286 s->z_err = Z_DATA_ERROR; 308 s->z_err = s->z_eof ? Z_DATA_ERROR : Z_OK; 365 if (s->z_err == Z_DATA_ERROR || s->z_err == Z_ERRNO) return -1; 417 s->z_err = Z_DATA_ERROR; 667 s->z_err == Z_ERRNO || s->z_err == Z_DATA_ERROR) { 812 if (c == EOF) s->z_err = Z_DATA_ERROR;
|
H A D | zlib.h | 137 #define Z_DATA_ERROR (-3) macro 286 stream state was inconsistent, Z_DATA_ERROR if the stream was freed 372 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was 377 enough room in the output buffer when Z_FINISH is used. In the Z_DATA_ERROR 542 input, inflate() will return with the error code Z_DATA_ERROR instead of 566 inconsistent, Z_DATA_ERROR if the given dictionary doesn't match the 579 if no more input was provided, Z_DATA_ERROR if no flush point has been found, 653 buffer, or Z_DATA_ERROR if the input data was corrupted.
|
H A D | example.c | 406 if (err != Z_DATA_ERROR) {
|
H A D | deflate.c | 591 return status == BUSY_STATE ? Z_DATA_ERROR : Z_OK;
|
Completed in 58 milliseconds