Searched refs:Z_BUF_ERROR (Results 1 - 8 of 8) sorted by relevance
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/ |
H A D | uncompr.c | 22 enough memory, Z_BUF_ERROR if there was not enough room in the output 37 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; 41 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; 52 return err == Z_OK ? Z_BUF_ERROR : err;
|
H A D | compress.c | 17 memory, Z_BUF_ERROR if there was not enough room in the output buffer, 34 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; 38 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; 50 return err == Z_OK ? Z_BUF_ERROR : err;
|
H A D | infutil.c | 40 if (n && r == Z_BUF_ERROR) r = Z_OK; 66 if (n && r == Z_BUF_ERROR) r = Z_OK;
|
H A D | inftrees.c | 106 tables to decode that set of codes. Return Z_OK on success, Z_BUF_ERROR 289 /* Return Z_BUF_ERROR if we were given an incomplete table */ 290 return y != 0 && g != 1 ? Z_BUF_ERROR : Z_OK; 311 else if (r == Z_BUF_ERROR || *bb == 0) 361 else if (r == Z_BUF_ERROR) {
|
H A D | inflate.c | 160 f = f == Z_FINISH ? Z_BUF_ERROR : Z_OK; 161 r = Z_BUF_ERROR; 320 return Z_BUF_ERROR;
|
H A D | zlib.h | 139 #define Z_BUF_ERROR (-5) macro 274 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible 376 enough memory, Z_BUF_ERROR if no progress is possible or if there was not 526 stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR 578 inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR 619 enough memory, Z_BUF_ERROR if there was not enough room in the output 634 memory, Z_BUF_ERROR if there was not enough room in the output buffer, 652 enough memory, Z_BUF_ERROR if there was not enough room in the output
|
H A D | deflate.c | 453 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR); 501 ERR_RETURN(strm, Z_BUF_ERROR); 506 ERR_RETURN(strm, Z_BUF_ERROR);
|
H A D | gzio.c | 626 if (len == 0 && s->z_err == Z_BUF_ERROR) s->z_err = Z_OK;
|
Completed in 542 milliseconds