Home
last modified time | relevance | path

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

/freebsd-12.1/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c1303 z_stream zstr; in decompress_ctf() local
1306 zstr.zalloc = (alloc_func)0; in decompress_ctf()
1307 zstr.zfree = (free_func)0; in decompress_ctf()
1308 zstr.opaque = (voidpf)0; in decompress_ctf()
1310 zstr.next_in = (Bytef *)cbuf; in decompress_ctf()
1311 zstr.avail_in = cbufsz; in decompress_ctf()
1312 zstr.next_out = (Bytef *)dbuf; in decompress_ctf()
1313 zstr.avail_out = dbufsz; in decompress_ctf()
1317 (rc = inflateEnd(&zstr)) != Z_OK) { in decompress_ctf()
1323 zstr.total_in, zstr.total_out, (caddr_t)zstr.next_in - cbuf); in decompress_ctf()
[all …]
/freebsd-12.1/cddl/contrib/opensolaris/tools/ctf/dump/
H A Ddump.c958 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-12.1/contrib/unbound/validator/
H A Dval_anchor.c1050 const char** zstr; in anchors_apply_cfg() local
1054 for(zstr = as112_zones; *zstr; zstr++) { in anchors_apply_cfg()
1055 if(!anchor_insert_insecure(anchors, *zstr)) { in anchors_apply_cfg()
1056 log_err("error in insecure-lan-zones: %s", *zstr); in anchors_apply_cfg()
/freebsd-12.1/contrib/unbound/services/
H A Dlocalzone.c785 const char** zstr; in local_zone_enter_defaults() local
868 for(zstr = as112_zones; *zstr; zstr++) { in local_zone_enter_defaults()
869 if(!add_empty_default(zones, cfg, *zstr)) { in local_zone_enter_defaults()