Searched refs:zstr (Results 1 – 4 of 4) sorted by relevance
| /freebsd-9-stable/contrib/cvs/src/ |
| D | zlib.c | 46 z_stream zstr; member 60 compress_error (status, zstatus, zstr, msg) in compress_error() argument 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.avail_in = bd->size; [all …]
|
| /freebsd-9-stable/cddl/contrib/opensolaris/tools/ctf/cvt/ |
| D | ctf.c | 1206 z_stream zstr; in decompress_ctf() local 1209 zstr.zalloc = (alloc_func)0; in decompress_ctf() 1210 zstr.zfree = (free_func)0; in decompress_ctf() 1211 zstr.opaque = (voidpf)0; in decompress_ctf() 1213 zstr.next_in = (Bytef *)cbuf; in decompress_ctf() 1214 zstr.avail_in = cbufsz; in decompress_ctf() 1215 zstr.next_out = (Bytef *)dbuf; in decompress_ctf() 1216 zstr.avail_out = dbufsz; in decompress_ctf() 1218 if ((rc = inflateInit(&zstr)) != Z_OK || in decompress_ctf() 1219 (rc = inflate(&zstr, Z_NO_FLUSH)) != Z_STREAM_END || in decompress_ctf() [all …]
|
| /freebsd-9-stable/cddl/contrib/opensolaris/tools/ctf/dump/ |
| D | dump.c | 958 z_stream zstr; in main() local 965 bzero(&zstr, sizeof (z_stream)); in main() 966 zstr.next_in = (void *)cd.cd_ctfdata; in main() 967 zstr.avail_in = cd.cd_ctflen; in main() 968 zstr.next_out = buf; in main() 969 zstr.avail_out = hp->cth_stroff + hp->cth_strlen; in main() 971 if ((rc = inflateInit(&zstr)) != Z_OK) in main() 974 if ((rc = inflate(&zstr, Z_FINISH)) != Z_STREAM_END) in main() 977 if ((rc = inflateEnd(&zstr)) != Z_OK) in main() 980 if (zstr.total_out != hp->cth_stroff + hp->cth_strlen) in main()
|
| /freebsd-9-stable/contrib/bind9/lib/dns/ |
| D | zone.c | 12620 const char *zstr; in zone_debuglog() local 12631 zstr = "managed-keys-zone"; in zone_debuglog() 12634 zstr = "redirect-zone"; in zone_debuglog() 12637 zstr = "zone"; in zone_debuglog() 12641 level, "%s: %s %s: %s", me, zstr, zone->strnamerd, in zone_debuglog()
|