Searched refs:zstr (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/contrib/cvs/src/
H A Dzlib.c46 z_stream zstr; member in struct:compress_buffer
60 compress_error (status, zstatus, zstr, msg)
63 z_stream *zstr;
72 zmsg = zstr->msg;
102 zstatus = inflateInit (&n->zstr);
104 zstatus = deflateInit (&n->zstr, level);
106 compress_error (1, zstatus, &n->zstr, "compression initialization");
170 cb->zstr.avail_out = size;
171 cb->zstr.next_out = (Bytef *) data;
182 cb->zstr
454 z_stream zstr; local
619 z_stream zstr; local
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c1206 z_stream zstr; local
1209 zstr.zalloc = (alloc_func)0;
1210 zstr.zfree = (free_func)0;
1211 zstr.opaque = (voidpf)0;
1213 zstr.next_in = (Bytef *)cbuf;
1214 zstr.avail_in = cbufsz;
1215 zstr.next_out = (Bytef *)dbuf;
1216 zstr.avail_out = dbufsz;
1218 if ((rc = inflateInit(&zstr)) != Z_OK ||
1219 (rc = inflate(&zstr, Z_NO_FLUS
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/tools/ctf/dump/
H A Ddump.c958 z_stream zstr; local
965 bzero(&zstr, sizeof (z_stream));
966 zstr.next_in = (void *)cd.cd_ctfdata;
967 zstr.avail_in = cd.cd_ctflen;
968 zstr.next_out = buf;
969 zstr.avail_out = hp->cth_stroff + hp->cth_strlen;
971 if ((rc = inflateInit(&zstr)) != Z_OK)
974 if ((rc = inflate(&zstr, Z_FINISH)) != Z_STREAM_END)
977 if ((rc = inflateEnd(&zstr)) != Z_OK)
980 if (zstr
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dzone.c12431 const char *zstr; local
12442 zstr = "managed-keys-zone";
12445 zstr = "redirect-zone";
12448 zstr = "zone";
12452 level, "%s: %s %s: %s", me, zstr, zone->strnamerd,

Completed in 182 milliseconds