Home
last modified time | relevance | path

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

/freebsd/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c1412 z_stream zstr; in decompress_ctf() local
1415 zstr.zalloc = (alloc_func)0; in decompress_ctf()
1416 zstr.zfree = (free_func)0; in decompress_ctf()
1417 zstr.opaque = (voidpf)0; in decompress_ctf()
1419 zstr.next_in = (Bytef *)cbuf; in decompress_ctf()
1420 zstr.avail_in = cbufsz; in decompress_ctf()
1421 zstr.next_out = (Bytef *)dbuf; in decompress_ctf()
1422 zstr.avail_out = dbufsz; in decompress_ctf()
1426 (rc = inflateEnd(&zstr)) != Z_OK) { in decompress_ctf()
1432 zstr.total_in, zstr.total_out, (caddr_t)zstr.next_in - cbuf); in decompress_ctf()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp147 z_stream zstr; in ParseHeader() local
148 memset(&zstr, 0, sizeof(zstr)); in ParseHeader()
149 zstr.next_in = (Bytef *)const_cast<uint8_t *>(m_data.GetDataStart() + in ParseHeader()
151 zstr.avail_in = m_data.BytesLeft(offset); in ParseHeader()
152 zstr.next_out = in ParseHeader()
154 zstr.avail_out = decompressed_size; in ParseHeader()
156 int rc = inflateInit(&zstr); in ParseHeader()
163 rc = inflate(&zstr, Z_FINISH); in ParseHeader()
169 rc = inflateEnd(&zstr); in ParseHeader()
175 if (zstr.total_out != decompressed_size) { in ParseHeader()
[all …]
/freebsd/cddl/contrib/opensolaris/tools/ctf/dump/
H A Ddump.c1049 z_stream zstr; in main() local
1056 bzero(&zstr, sizeof (z_stream)); in main()
1057 zstr.next_in = (void *)cd.cd_ctfdata; in main()
1058 zstr.avail_in = cd.cd_ctflen; in main()
1059 zstr.next_out = buf; in main()
1060 zstr.avail_out = hp->cth_stroff + hp->cth_strlen; in main()
1062 if ((rc = inflateInit(&zstr)) != Z_OK) in main()
1065 if ((rc = inflate(&zstr, Z_FINISH)) != Z_STREAM_END) in main()
1068 if ((rc = inflateEnd(&zstr)) != Z_OK) in main()
1071 if (zstr.total_out != hp->cth_stroff + hp->cth_strlen) in main()
/freebsd/contrib/unbound/validator/
H A Dval_anchor.c1049 const char** zstr; in anchors_apply_cfg() local
1057 for(zstr = as112_zones; *zstr; zstr++) { in anchors_apply_cfg()
1058 if(!anchor_insert_insecure(anchors, *zstr)) { in anchors_apply_cfg()
1059 log_err("error in insecure-lan-zones: %s", *zstr); in anchors_apply_cfg()
/freebsd/contrib/tzcode/
H A Dzic.c3056 struct zone zstr[2]; in stringzone() local
3095 stdzp = &zstr[0]; in stringzone()
3096 dstzp = &zstr[1]; in stringzone()
3097 zstr[0].z_stdoff = zp->z_stdoff + 2 * save; in stringzone()
3098 zstr[0].z_format = "XXX"; /* Any 3 letters will do. */ in stringzone()
3099 zstr[0].z_format_specifier = 0; in stringzone()
3100 zstr[1].z_stdoff = zstr[0].z_stdoff; in stringzone()
3101 zstr[1].z_format = zp->z_format; in stringzone()
3102 zstr[1].z_format_specifier = zp->z_format_specifier; in stringzone()
/freebsd/contrib/unbound/services/
H A Dlocalzone.c875 const char** zstr; in local_zone_enter_defaults() local
963 for(zstr = as112_zones; *zstr; zstr++) { in local_zone_enter_defaults()
964 if(!add_empty_default(zones, cfg, *zstr)) { in local_zone_enter_defaults()
H A Dauthzone.c1945 char zstr[255+1]; in auth_zone_zonemd_check_hash() local
1946 dname_str(z->name, zstr); in auth_zone_zonemd_check_hash()
1953 char zstr[255+1]; in auth_zone_zonemd_check_hash() local
1954 dname_str(z->name, zstr); in auth_zone_zonemd_check_hash()
1956 verbose(VERB_ALGO, "auth-zone %s ZONEMD hash is correct", zstr); in auth_zone_zonemd_check_hash()
1976 char zstr[255+1]; in auth_zone_zonemd_check_hash() local
1977 dname_str(z->name, zstr); in auth_zone_zonemd_check_hash()
1978 verbose(VERB_ALGO, "auth-zone %s ZONEMD failed: %s", zstr, *reason); in auth_zone_zonemd_check_hash()
7968 char zstr[255+1]; in auth_zone_zonemd_fail() local
7971 dname_str(z->name, zstr); in auth_zone_zonemd_fail()
[all …]