Searched refs:labels (Results 1 - 25 of 52) sorted by relevance

123

/freebsd-13-stable/sys/geom/
H A Dgeom_flashmap.h35 const char *labels[FLASH_SLICES_MAX_NUM]; member in struct:g_flashmap
H A Dgeom_flashmap.c113 free(__DECONST(void *, gfp->labels[i]), M_FLASHMAP);
114 gfp->labels[i] = strdup(slice->sl_name, M_FLASHMAP);
/freebsd-13-stable/contrib/dialog/
H A Dbuttons.c91 count_labels(const char **labels) argument
94 if (labels != 0) {
95 while (*labels++ != 0) {
123 * Determine the hot-keys for a set of button-labels. Normally these are
131 get_hotkeys(const char **labels) argument
134 size_t count = count_labels(labels);
139 const char *label = labels[n];
232 dlg_button_count(const char **labels) argument
235 while (*labels++ != 0)
245 dlg_button_sizes(const char **labels, argument
279 dlg_button_x_step(const char **labels, int limit, int *gap, int *margin, int *step) argument
313 dlg_button_layout(const char **labels, int *limit) argument
333 dlg_draw_buttons(WINDOW *win, int y, int x, const char **labels, int selected, int vertical, int limit) argument
458 dlg_char_to_button(int ch, const char **labels) argument
554 static const char *labels[3]; local
592 static const char *labels[4]; local
610 static const char *labels[5]; local
731 static const char *labels[4]; local
771 dlg_next_button(const char **labels, int button) argument
788 dlg_prev_button(const char **labels, int button) argument
[all...]
/freebsd-13-stable/contrib/ldns/drill/
H A Dsecuretrace.c124 ldns_rdf **labels = NULL; local
244 labels = LDNS_XMALLOC(ldns_rdf*, labels_count + 2);
245 if (!labels) {
248 labels[0] = ldns_dname_new_frm_str(LDNS_ROOT_LABEL_STR);
249 labels[1] = ldns_rdf_clone(name);
251 labels[i] = ldns_dname_left_chop(labels[i - 1]);
258 status = ldns_resolver_send(&local_p, res, labels[i], LDNS_RR_TYPE_NS, c, 0);
286 if (ldns_dname_is_subdomain(pop, labels[i])) {
316 status = ldns_verify_denial(local_p, labels[
[all...]
/freebsd-13-stable/secure/caroot/
H A DMAca-bundle.pl47 my %labels;
209 $labels{$label."\0".$serial} = $label;
216 $labels{$label."\0".$serial} = $label;
233 warn "Found trust for nonexistent certificate $labels{$it}\n" if $debug;
236 warn "Skipping untrusted $labels{$it}\n" if $debug;
255 $filename = label_to_filename($labels{$it});
257 print_header($fh, $labels{$it});
259 printcert($fh, $labels{$it}, $certs{$it});
266 print STDERR "Trusting $certcount: $labels{$it}\n" if $debug;
/freebsd-13-stable/lib/libc/posix1e/
H A Dmac.c92 mac_add_type(const char *name, const char *labels) argument
106 labels_dup = strdup(labels);
211 char *name, *labels; local
214 labels = next_token(&parse);
215 if (name == NULL || labels == NULL ||
224 if (mac_add_type(name, labels) == -1) {
233 char *labels, *type; local
243 labels = next_token(&parse);
244 if (labels == NULL || next_token(&parse) != NULL) {
252 if (mac_add_type(type, labels)
[all...]
/freebsd-13-stable/sys/contrib/openzfs/cmd/dbufstat/
H A Ddbufstat.in373 def parse_line(line, labels):
380 # function, prevent KeyError exception on labels[col] for these.
382 val = line[labels[col]]
396 def update_dict(d, k, line, labels):
397 pool = line[labels['pool']]
398 objset = line[labels['objset']]
399 key = line[labels[k]]
401 dbsize = int(line[labels['dbsize']])
402 blkid = int(line[labels['blkid']])
403 level = int(line[labels['leve
[all...]
/freebsd-13-stable/sys/geom/label/
H A Dg_label_flashmap.c63 if (gfp->labels[pp->index] == NULL)
66 strlcpy(label, gfp->labels[pp->index], size);
75 G_LABEL_INIT(flashmap, g_label_flashmap, "Create device nodes for Flashmap labels");
/freebsd-13-stable/crypto/heimdal/lib/krb5/
H A Dget_host_realm.c98 const char **labels; local
105 labels = (const char **)config_labels;
107 labels = default_labels;
110 for (i = 0; labels[i] != NULL; i++) {
111 ret = snprintf(dom, sizeof(dom), "%s.%s.", labels[i], domain);
/freebsd-13-stable/contrib/elftoolchain/addr2line/
H A Daddr2line.c427 * children of cu die for labels. If the address falls into one of the labels
441 struct range *labelp, **labels; local
445 labels = NULL;
458 /* Count labels. */
482 /* Allocate space for labels. */
483 if ((labels = calloc(label_cnt, sizeof(struct range *))) == NULL)
486 /* Add labels to list. */
494 free(labels);
502 if (labels[
[all...]
/freebsd-13-stable/usr.sbin/prometheus_sysctl_exporter/
H A Dprometheus_sysctl_exporter.c321 char labels[BUFSIZ]; member in struct:oidname
334 /* Fetches the name and labels of an OID, reusing the previous results. */
352 /* No need to fetch labels for components that we already have. */
353 label = on->labels;
358 /* Fetch the remaining labels. */
361 len = on->labels + sizeof(on->labels) - label;
373 /* Prints the name and labels of an OID to a file stream. */
385 label = on->labels;
403 /* Print the labels o
[all...]
/freebsd-13-stable/sys/dev/nvdimm/
H A Dnvdimm.c229 if (SLIST_EMPTY(&nv->labels) ||
231 SLIST_FIRST(&nv->labels)->label.dimm_phys_addr) {
232 SLIST_INSERT_HEAD(&nv->labels, entry, link);
235 SLIST_FOREACH_SAFE(i, &nv->labels, link, next) {
420 * Ignoring errors reading labels. Not all NVDIMMs
421 * support labels and namespaces.
438 SLIST_FOREACH_SAFE(label, &nv->labels, link, next) {
439 SLIST_REMOVE_HEAD(&nv->labels, link);
H A Dnvdimm_ns.c65 SLIST_FOREACH(e, &nv->labels, link) {
H A Dnvdimm_var.h101 SLIST_HEAD(, nvdimm_label_entry) labels; member in struct:nvdimm_dev
/freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.cpp242 // When sorting by labels, __kmp_affinity_assign_child_nums() must first be
243 // called to renumber the labels from [0..n] and place them into the child_num
244 // vector of the address object. This is done in case the labels used for
250 // because we are paying attention to the labels themselves, not the ordinal
262 lastLabel[labCt] = address2os[0].first.labels[labCt];
267 if (address2os[i].first.labels[labCt] != lastLabel[labCt]) {
271 lastLabel[labCt2] = address2os[i].first.labels[labCt2];
274 lastLabel[labCt] = address2os[i].first.labels[labCt];
342 __kmp_str_buf_print(&buf, "%d ", address2os[proc].first.labels[level]);
360 addrP[proc].first.labels[
488 __kmp_hwloc_process_obj_core_pu(AddrUnsPair *addrPair, int &nActiveThreads, int &num_active_cores, hwloc_obj_t obj, int depth, int *labels) argument
604 int labels[3] = {0}; // package [,node] [,tile] - head of labels array local
[all...]
H A Dkmp_affinity.h557 unsigned labels[maxDepth]; member in class:Address
565 labels[i] = b.labels[i];
575 if (labels[i] != b.labels[i])
585 if (labels[i] != b.labels[i])
594 printf("%u ", labels[i]);
632 if (aa->labels[i] < bb->labels[
[all...]
/freebsd-13-stable/usr.bin/dtc/
H A Dfdt.hh275 * Zero or more labels.
277 string_set labels; member in class:dtc::fdt::property
332 : key(k), labels(l), valid(true) {}
336 property(property &p) : key(p.key), labels(p.labels), values(p.values),
352 string_set &&labels=string_set(),
413 * The labels for this node, if any. Node labels are used as the
416 std::unordered_set<std::string> labels; member in class:dtc::fdt::node
768 * A map from labels t
[all...]
/freebsd-13-stable/usr.bin/diff3/
H A Ddiff3.c588 char *labels[] = { NULL, NULL, NULL }; local
627 labels[nblabels++] = optarg;
683 labels[0] != NULL ? labels[0] : file1);
687 labels[1] != NULL ? labels[1] : file2);
691 labels[2] != NULL ? labels[2] : file3);
/freebsd-13-stable/contrib/bc/src/
H A Dlang.c107 bc_vec_init(&f->labels, sizeof(size_t), NULL);
132 bc_vec_popAll(&f->labels);
160 bc_vec_free(&f->labels);
/freebsd-13-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_as.c213 uint_t *labels = NULL; local
277 if ((labels = dt_alloc(dtp, sizeof (uint_t) * dlp->dl_label)) == NULL)
283 * While doing this, we also fill in our labels[] translation table
288 labels[dip->di_label] = i;
337 labels[DIF_INSTR_LABEL(instr)]);
341 dt_free(dtp, labels);
/freebsd-13-stable/crypto/heimdal/lib/roken/
H A Dresolve.h150 unsigned labels; member in struct:rk_sig_record
H A Dresolve-test.c137 printf ("type %u (%s), algorithm %u, labels %u, orig_ttl %u, sig_expiration %u, sig_inception %u, key_tag %u, signer %s\n",
139 sig->algorithm, sig->labels, sig->orig_ttl,
/freebsd-13-stable/usr.bin/systat/
H A Dextern.h131 void labels(void);
H A Dmain.c223 labels();
241 labels(void) function
/freebsd-13-stable/contrib/bc/include/
H A Dlang.h231 BcVec labels; member in struct:BcFunc

Completed in 282 milliseconds

123