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

/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c1316 z_stream zstr; local
1319 zstr.zalloc = (alloc_func)0;
1320 zstr.zfree = (free_func)0;
1321 zstr.opaque = (voidpf)0;
1323 zstr.next_in = (Bytef *)cbuf;
1324 zstr.avail_in = cbufsz;
1325 zstr.next_out = (Bytef *)dbuf;
1326 zstr.avail_out = dbufsz;
1328 if ((rc = inflateInit(&zstr)) != Z_OK ||
1329 (rc = inflate(&zstr, Z_NO_FLUS
[all...]
/freebsd-11-stable/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-11-stable/contrib/unbound/services/
H A Dlocalzone.c829 const char** zstr; local
912 for(zstr = as112_zones; *zstr; zstr++) {
913 if(!add_empty_default(zones, cfg, *zstr)) {
/freebsd-11-stable/contrib/unbound/validator/
H A Dval_anchor.c1048 const char** zstr; local
1052 for(zstr = as112_zones; *zstr; zstr++) {
1053 if(!anchor_insert_insecure(anchors, *zstr)) {
1054 log_err("error in insecure-lan-zones: %s", *zstr);

Completed in 145 milliseconds