| /freebsd/contrib/ldns/drill/ |
| H A D | securetrace.c | 124 ldns_rdf **labels = NULL; in do_secure_trace() local 244 labels = LDNS_CALLOC(ldns_rdf*, labels_count + 2); in do_secure_trace() 245 if (!labels) { in do_secure_trace() 248 labels[0] = ldns_dname_new_frm_str(LDNS_ROOT_LABEL_STR); in do_secure_trace() 249 labels[1] = ldns_rdf_clone(name); in do_secure_trace() 251 labels[i] = ldns_dname_left_chop(labels[i - 1]); in do_secure_trace() 258 status = ldns_resolver_send(&local_p, res, labels[i], LDNS_RR_TYPE_NS, c, 0); in do_secure_trace() 293 if (ldns_dname_is_subdomain(pop, labels[i])) { in do_secure_trace() 328 status = ldns_verify_denial(local_p, labels[i], LDNS_RR_TYPE_NS, &nsec_rrs, &nsec_rr_sigs); in do_secure_trace() 344 ldns_rdf_print(stdout, labels[i]); in do_secure_trace() [all …]
|
| /freebsd/secure/caroot/ |
| H A D | ca-extract.pl | 50 my %labels; 199 $labels{$label."\0".$serial} = $label; 207 $labels{$label."\0".$serial} = $label; 229 print(STDERR "## Expired: $labels{$it}\n"); 233 print(STDERR "## Untrusted: $labels{$it}\n"); 237 print(STDERR "## Trusted: $labels{$it}\n"); 241 $filename = label_to_filename($labels{$it}); 243 print_header($fh, $labels{$it}); 244 printcert($fh, $labels{$it}, $certs{$it});
|
| /freebsd/sys/contrib/openzfs/cmd/ |
| H A D | dbufstat.in | 364 def parse_line(line, labels): 373 val = line[labels[col]] 387 def update_dict(d, k, line, labels): 388 pool = line[labels['pool']] 389 objset = line[labels['objset']] 390 key = line[labels[k]] 392 dbsize = int(line[labels['dbsize']]) 393 usize = int(line[labels['usize']]) 394 blkid = int(line[labels['blkid']]) 395 level = int(line[labels['level']]) [all …]
|
| /freebsd/lib/libc/posix1e/ |
| H A D | mac.c | 89 mac_add_type(const char *name, const char *labels) in mac_add_type() argument 103 labels_dup = strdup(labels); in mac_add_type() 207 char *name, *labels; in mac_init_internal() local 210 labels = next_token(&parse); in mac_init_internal() 211 if (name == NULL || labels == NULL || in mac_init_internal() 220 if (mac_add_type(name, labels) == -1) { in mac_init_internal() 229 char *labels, *type; in mac_init_internal() local 239 labels = next_token(&parse); in mac_init_internal() 240 if (labels == NULL || next_token(&parse) != NULL) { in mac_init_internal() 248 if (mac_add_type(type, labels) == -1) { in mac_init_internal()
|
| /freebsd/crypto/heimdal/lib/krb5/ |
| H A D | get_host_realm.c | 98 const char **labels; in dns_find_realm() local 105 labels = (const char **)config_labels; in dns_find_realm() 107 labels = default_labels; in dns_find_realm() 110 for (i = 0; labels[i] != NULL; i++) { in dns_find_realm() 111 ret = snprintf(dom, sizeof(dom), "%s.%s.", labels[i], domain); in dns_find_realm()
|
| /freebsd/contrib/elftoolchain/addr2line/ |
| H A D | addr2line.c | 441 struct range *labelp, **labels; in check_labels() local 445 labels = NULL; in check_labels() 483 if ((labels = calloc(label_cnt, sizeof(struct range *))) == NULL) in check_labels() 494 free(labels); in check_labels() 502 if (labels[i] != *range) in check_labels() 503 free(labels[i]); in check_labels() 505 free(labels); in check_labels() 515 labels[i++] = labelp; in check_labels() 534 if (labels[i]->lopc == (Dwarf_Unsigned)start) { in check_labels() 535 labels[i]->hipc = start + length; in check_labels() [all …]
|
| /freebsd/crypto/openssh/ |
| H A D | ssh-pkcs11-helper.c | 67 char **labels = NULL; in process_add() local 78 &keys, &labels)) > 0) { in process_add() 85 (r = sshbuf_put_cstring(msg, labels[i])) != 0) in process_add() 88 sshkey_type(keys[i]), labels[i]); in process_add() 89 free(labels[i]); in process_add() 94 free(labels); in process_add()
|
| /freebsd/crypto/heimdal/lib/wind/ |
| H A D | rfc3490.txt | 86 IDNA works by allowing applications to use certain ASCII name labels 87 (beginning with a special prefix) to represent non-ASCII name labels. 142 name labels. While such names are very user-unfriendly to read and 269 "www.example.com" is composed of three labels: "www", "example", and 273 IDNA extends the set of usable characters in labels that are text. 292 generalization, embracing both old ASCII labels and new non-ASCII 293 labels. Although most Unicode characters can appear in 294 internationalized labels, ToASCII will fail for some input strings, 295 and such strings are not valid internationalized labels. 305 labels in their zones. Such restrictions have no impact on the [all …]
|
| /freebsd/crypto/openssl/crypto/hpke/ |
| H A D | hpke_util.c | 455 int labels = 0, result = 0; in ossl_hpke_str2suite() local 490 while (st != NULL && labels < 3) { in ossl_hpke_str2suite() 498 if (labels == 0 in ossl_hpke_str2suite() 503 else if (labels == 1 in ossl_hpke_str2suite() 508 else if (labels == 2 in ossl_hpke_str2suite() 518 ++labels; in ossl_hpke_str2suite() 520 if (st != NULL || labels != 3) in ossl_hpke_str2suite()
|
| /freebsd/sys/geom/label/ |
| H A D | g_label_flashmap.c | 60 if (gfp->labels[pp->index] == NULL) in g_label_flashmap_taste() 63 strlcpy(label, gfp->labels[pp->index], size); in g_label_flashmap_taste()
|
| /freebsd/usr.bin/dtc/ |
| H A D | fdt.hh | 275 string_set labels; member in dtc::fdt::property 330 : key(k), labels(l), valid(true) {} in property() 334 property(property &p) : key(p.key), labels(p.labels), values(p.values), in property() 350 string_set &&labels=string_set(), 414 std::unordered_set<std::string> labels; member in dtc::fdt::node
|
| /freebsd/sys/dev/nvdimm/ |
| H A D | nvdimm.c | 226 if (SLIST_EMPTY(&nv->labels) || in read_label() 228 SLIST_FIRST(&nv->labels)->label.dimm_phys_addr) { in read_label() 229 SLIST_INSERT_HEAD(&nv->labels, entry, link); in read_label() 232 SLIST_FOREACH_SAFE(i, &nv->labels, link, next) { in read_label() 411 SLIST_FOREACH_SAFE(label, &nv->labels, link, next) { in nvdimm_detach() 412 SLIST_REMOVE_HEAD(&nv->labels, link); in nvdimm_detach()
|
| /freebsd/usr.sbin/prometheus_sysctl_exporter/ |
| H A D | prometheus_sysctl_exporter.c | 322 char labels[BUFSIZ]; member 354 label = on->labels; in oid_get_name() 362 len = on->labels + sizeof(on->labels) - label; in oid_get_name() 392 label = on->labels; in oid_get_metric() 414 label = on->labels; in oid_get_metric() 455 if (on->labels[i] != 0) in oidname_has_labels()
|
| /freebsd/sys/contrib/device-tree/src/arm/intel/socfpga/ |
| H A D | socfpga_cyclone5_mercury_sa2.dtsi | 20 /* Adjusted the i2c labels to use generic base-board dtsi files for 23 * The set of i2c0 and i2c1 labels defined in socfpga_cyclone5.dtsi and in 25 * fragments. Thus define generic labels here to match the correct i2c
|
| H A D | socfpga_cyclone5_mercury_sa1.dtsi | 20 /* Adjusted the i2c labels to use generic base-board dtsi files for 23 * The set of i2c0 and i2c1 labels defined in socfpga_cyclone5.dtsi and in 25 * fragments. Thus define generic labels here to match the correct i2c
|
| H A D | socfpga_arria10_mercury_aa1.dtsi | 30 /* Adjusted the i2c labels to use generic base-board dtsi files for 33 * The set of i2c0 and i2c1 labels defined in socfpga_cyclone5.dtsi and in 35 * fragments. Thus define generic labels here to match the correct i2c
|
| /freebsd/sys/contrib/openzfs/.github/workflows/ |
| H A D | README.md | 34 labels.yml 94 - `labels.yml`: maintains PR status labels
|
| /freebsd/contrib/bc/src/ |
| H A D | lang.c | 109 bc_vec_init(&f->labels, sizeof(size_t), BC_DTOR_NONE); in bc_func_init() 132 bc_vec_popAll(&f->labels); in bc_func_reset() 155 bc_vec_free(&f->labels); in bc_func_free()
|
| /freebsd/sbin/pfctl/tests/ |
| H A D | pfctl_test_list.inc | 38 PFCTL_TEST(0001, "Pass with labels") 71 PFCTL_TEST(0047, "Pass with labels") 76 PFCTL_TEST(0053, "Pass with labels") 82 PFCTL_TEST(0065, "Antispoof with labels") 126 PFCTL_TEST(1015, "Ethernet rule with several labels") 128 PFCTL_TEST(1017, "Ethernet rule with ridentifier and several labels")
|
| /freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| H A D | dt_as.c | 213 uint_t *labels = NULL; in dt_as() local 277 if ((labels = dt_alloc(dtp, sizeof (uint_t) * dlp->dl_label)) == NULL) in dt_as() 288 labels[dip->di_label] = i; in dt_as() 337 labels[DIF_INSTR_LABEL(instr)]); in dt_as() 341 dt_free(dtp, labels); in dt_as()
|
| /freebsd/usr.bin/diff3/ |
| H A D | diff3.c | 959 char *labels[] = { NULL, NULL, NULL }; in main() local 997 labels[nblabels++] = optarg; in main() 1055 labels[0] != NULL ? labels[0] : file1); in main() 1059 labels[1] != NULL ? labels[1] : file2); in main() 1063 labels[2] != NULL ? labels[2] : file3); in main()
|
| /freebsd/usr.bin/systat/ |
| H A D | main.c | 133 labels(); in resize() 235 labels(); in main() 253 labels(void) in labels() function
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zinject/ |
| H A D | zinject_args.ksh | 63 typeset -a labels=("nvlist" "pad1" "pad2" "uber") 64 for l in ${labels[@]}; do
|
| /freebsd/sys/geom/ |
| H A D | geom_flashmap.h | 33 const char *labels[FLASH_SLICES_MAX_NUM]; member
|
| /freebsd/sys/contrib/openzfs/lib/libzutil/ |
| H A D | zutil_import.c | 1090 vdev_phys_t *labels; in zpool_read_label() 1101 labels = (vdev_phys_t *)umem_alloc_aligned( in zpool_read_label() 1102 VDEV_LABELS * sizeof (*labels), PAGESIZE, UMEM_DEFAULT); in zpool_read_label() 1103 if (labels == NULL) in zpool_read_label() 1112 aiocbs[l].aio_buf = &labels[l]; in zpool_read_label() 1168 umem_free_aligned(labels, VDEV_LABELS * sizeof (*labels)); in zpool_read_label() 1179 if (nvlist_unpack(labels[l].vp_nvlist, in zpool_read_label() 1180 sizeof (labels[l].vp_nvlist), config, 0) != 0) in zpool_read_label() 1217 umem_free_aligned(labels, VDEV_LABELS * sizeof (*labels)); in zpool_read_label()
|