Home
last modified time | relevance | path

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

/titanic_44/usr/src/uts/common/zmod/
H A Dzmod.c61 return (err == Z_OK ? Z_BUF_ERROR : err); in z_uncompress()
87 return (err == Z_OK ? Z_BUF_ERROR : err); in z_compress_level()
H A Dzlib.h179 #define Z_BUF_ERROR (-5) macro
H A Ddeflate.c576 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
782 ERR_RETURN(strm, Z_BUF_ERROR);
787 ERR_RETURN(strm, Z_BUF_ERROR);
H A Dinflate.c1178 ret = Z_BUF_ERROR;
1300 if (strm->avail_in == 0 && state->bits < 8) return Z_BUF_ERROR;
/titanic_44/usr/src/uts/common/sys/
H A Dzmod.h51 #define Z_BUF_ERROR (-5) macro
/titanic_44/usr/src/cmd/ssh/libssh/common/
H A Dcompress.c149 case Z_BUF_ERROR: in buffer_uncompress()
/titanic_44/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.h224 #define Z_BUF_ERROR (-5) macro
H A Dzlib.c742 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
777 ERR_RETURN(strm, Z_BUF_ERROR);
2867 r = Z_BUF_ERROR;
3001 return Z_BUF_ERROR;
3890 return y != 0 && g != 1 ? Z_BUF_ERROR : Z_OK;
3905 else if (r == Z_BUF_ERROR)
3932 else if (r == Z_BUF_ERROR)
3946 else if (r == Z_BUF_ERROR) {
4333 if (n && r == Z_BUF_ERROR) r = Z_OK;
4361 if (n && r == Z_BUF_ERROR) r = Z_OK;
/titanic_44/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.h477 #define Z_BUF_ERROR (-5) macro
H A Dzlib.c1133 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
1186 ERR_RETURN(strm, Z_BUF_ERROR);
1191 ERR_RETURN(strm, Z_BUF_ERROR);
3749 r = Z_BUF_ERROR;
3957 return (Z_BUF_ERROR);
5063 return (y != 0 && g != 1 ? Z_BUF_ERROR : Z_OK);
5083 else if (r == Z_BUF_ERROR || *bb == 0)
5128 else if (r == Z_BUF_ERROR) {
5559 if (n && r == Z_BUF_ERROR) r = Z_OK;
5587 if (n && r == Z_BUF_ERROR) r = Z_OK;
/titanic_44/usr/src/tools/ctf/cvt/
H A Dctf.c512 if ((type == Z_FULL_FLUSH && rc == Z_BUF_ERROR) || in compress_flush()