Searched refs:Z_STREAM_END (Results 1 - 15 of 15) sorted by relevance

/opensolaris-onvv-gate/usr/src/uts/common/sys/
H A Dzmod.h45 #define Z_STREAM_END 1 macro
/opensolaris-onvv-gate/usr/src/uts/common/zmod/
H A Dzmod.c59 if ((err = inflate(&zs, Z_FINISH)) != Z_STREAM_END) {
85 if ((err = deflate(&zs, Z_FINISH)) != Z_STREAM_END) {
H A Dzlib.h173 #define Z_STREAM_END 1 macro
299 pending output is flushed and deflate returns with Z_STREAM_END if there
302 more input data, until it returns with Z_STREAM_END or an error. After
303 deflate has returned Z_STREAM_END, the only possible operations on the
309 Z_STREAM_END, then it must be called again as described above.
320 processed or more output produced), Z_STREAM_END if all input has been
415 inflate() should normally be called until it returns Z_STREAM_END or an
436 total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described
438 checksum is equal to that saved by the compressor and returns Z_STREAM_END
449 or more output produced), Z_STREAM_END i
[all...]
H A Ddeflate.c778 * returning Z_STREAM_END instead of Z_BUF_ERROR.
836 if (s->wrap <= 0) return Z_STREAM_END;
861 return s->pending != 0 ? Z_OK : Z_STREAM_END;
H A Dinflate.c1142 ret = Z_STREAM_END;
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.h219 #define Z_STREAM_END 1 macro
322 all pending output is flushed and deflate returns with Z_STREAM_END if there
325 more input data, until it returns with Z_STREAM_END or an error. After
326 deflate has returned Z_STREAM_END, the only possible operations on the
332 Z_STREAM_END, then it must be called again as described above.
340 processed or more output produced), Z_STREAM_END if all input has been
402 inflate() should normally be called until it returns Z_STREAM_END or an
414 processed or more output produced), Z_STREAM_END if the end of the
H A Dzlib.c840 if (state->noheader) return Z_STREAM_END;
850 return state->pending != 0 ? Z_OK : Z_STREAM_END;
2915 if (r != Z_STREAM_END)
2951 return Z_STREAM_END;
3479 if ((r = inflate_codes(s, z, r)) != Z_STREAM_END)
3508 r = Z_STREAM_END;
4175 c->mode = r == Z_STREAM_END ? WASH : BADCODE;
4291 r = Z_STREAM_END;
4530 return Z_STREAM_END;
4560 "stream end", /* Z_STREAM_END
[all...]
/opensolaris-onvv-gate/usr/src/common/fs/
H A Ddecompress.c256 if (filep->fi_cfoff >= ip->i_size || err == Z_STREAM_END)
/opensolaris-onvv-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.h471 #define Z_STREAM_END 1 macro
602 * Z_STREAM_END if there was enough output space; if deflate returns
605 * it returns with Z_STREAM_END or an error. After deflate has
606 * returned Z_STREAM_END, the only possible operations on the stream
612 * deflate does not return Z_STREAM_END, then it must be called again
621 * processed or more output produced), Z_STREAM_END if all input has
694 * inflate() should normally be called until it returns Z_STREAM_END
707 * processed or more output produced), Z_STREAM_END if the end of the
H A Dzlib.c1182 * Z_STREAM_END instead of Z_BUFF_ERROR.
1255 return (Z_STREAM_END);
1266 return (s->pending != 0 ? Z_OK : Z_STREAM_END);
3832 if (r != Z_STREAM_END)
3875 return (Z_STREAM_END);
4589 if ((r = inflate_codes(s, z, r)) != Z_STREAM_END)
4611 r = Z_STREAM_END;
5361 c->mode = r == Z_STREAM_END ?
5492 r = Z_STREAM_END;
5801 return (Z_STREAM_END);
[all...]
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/comp/
H A Dc_zlib.c342 if (err != Z_STREAM_END) {
/opensolaris-onvv-gate/usr/src/tools/ctf/cvt/
H A Dctf.c513 (type == Z_FINISH && rc == Z_STREAM_END))
1216 (rc = inflate(&zstr, Z_NO_FLUSH)) != Z_STREAM_END ||
/opensolaris-onvv-gate/usr/src/tools/ctf/dump/
H A Ddump.c974 if ((rc = inflate(&zstr, Z_FINISH)) != Z_STREAM_END)
/opensolaris-onvv-gate/usr/src/lib/libkmsagent/common/SOAP/
H A Dstdsoap2.cpp1058 if (r == Z_OK || r == Z_STREAM_END)
1063 if (r == Z_STREAM_END)
1176 if (r == Z_OK || r == Z_STREAM_END)
1183 if (ret && !soap->buflen && r != Z_STREAM_END)
1186 if (r == Z_STREAM_END)
7698 if (deflateEnd(soap->d_stream) != Z_OK || r != Z_STREAM_END)
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DCPAN.pm5675 if $gz->gzerror != Compress::Zlib::Z_STREAM_END();
5702 my $success = ! $err || $err == Compress::Zlib::Z_STREAM_END();

Completed in 213 milliseconds