Symbol: label
bin/csh/func.c
75
static struct biltins label = {"", dozip, 0, 0};
bin/csh/func.c
84
label.bname = short2str(cp);
bin/csh/func.c
85
return (&label);
bin/sh/show.c
1054
char label;
bin/sh/show.c
1125
for (df = debug_flags; df->label != '\0'; df++) {
bin/sh/show.c
1126
if (f == '+' || df->label == f) {
bin/sh/show.c
1150
for (df = debug_flags; df->label != '\0'; df++) {
bin/sh/show.c
1153
if (is_alpha(df->label) &&
bin/sh/show.c
1155
out1c(df->label - ('a' - 'A'));
bin/sh/show.c
1157
out1c(df->label);
bin/stty/print.c
197
static const char *label;
bin/stty/print.c
207
label = lb;
bin/stty/print.c
215
col = printf("%s: %s", label, s);
dist/pf/sbin/pfctl/parse.y
1164
antispoof_opt : label {
dist/pf/sbin/pfctl/parse.y
1165
if (antispoof_opts.label) {
dist/pf/sbin/pfctl/parse.y
1169
antispoof_opts.label = $1;
dist/pf/sbin/pfctl/parse.y
202
char *label;
dist/pf/sbin/pfctl/parse.y
211
char *label;
dist/pf/sbin/pfctl/parse.y
2118
| label {
dist/pf/sbin/pfctl/parse.y
2119
if (filter_opts.label) {
dist/pf/sbin/pfctl/parse.y
2123
filter_opts.label = $1;
dist/pf/sbin/pfctl/parse.y
3257
label : LABEL STRING {
dist/pf/sbin/pfctl/parse.y
4228
expand_label_str(char *label, size_t len, const char *srch, const char *repl)
dist/pf/sbin/pfctl/parse.y
4235
p = q = label;
dist/pf/sbin/pfctl/parse.y
4246
strlcpy(label, tmp, len); /* always fits */
dist/pf/sbin/pfctl/parse.y
4251
expand_label_if(const char *name, char *label, size_t len, const char *ifname)
dist/pf/sbin/pfctl/parse.y
4253
if (strstr(label, name) != NULL) {
dist/pf/sbin/pfctl/parse.y
4255
expand_label_str(label, len, name, "any");
dist/pf/sbin/pfctl/parse.y
4257
expand_label_str(label, len, name, ifname);
dist/pf/sbin/pfctl/parse.y
4262
expand_label_addr(const char *name, char *label, size_t len, sa_family_t af,
dist/pf/sbin/pfctl/parse.y
4267
if (strstr(label, name) != NULL) {
dist/pf/sbin/pfctl/parse.y
4311
expand_label_str(label, len, name, tmp_not);
dist/pf/sbin/pfctl/parse.y
4313
expand_label_str(label, len, name, tmp);
dist/pf/sbin/pfctl/parse.y
4318
expand_label_port(const char *name, char *label, size_t len,
dist/pf/sbin/pfctl/parse.y
4323
if (strstr(label, name) != NULL) {
dist/pf/sbin/pfctl/parse.y
4344
expand_label_str(label, len, name, op);
dist/pf/sbin/pfctl/parse.y
4349
expand_label_proto(const char *name, char *label, size_t len, u_int8_t proto)
dist/pf/sbin/pfctl/parse.y
4354
if (strstr(label, name) != NULL) {
dist/pf/sbin/pfctl/parse.y
4357
expand_label_str(label, len, name, pe->p_name);
dist/pf/sbin/pfctl/parse.y
4360
expand_label_str(label, len, name, n);
dist/pf/sbin/pfctl/parse.y
4366
expand_label_nr(const char *name, char *label, size_t len)
dist/pf/sbin/pfctl/parse.y
4370
if (strstr(label, name) != NULL) {
dist/pf/sbin/pfctl/parse.y
4372
expand_label_str(label, len, name, n);
dist/pf/sbin/pfctl/parse.y
4377
expand_label(char *label, size_t len, const char *ifname, sa_family_t af,
dist/pf/sbin/pfctl/parse.y
4382
expand_label_if("$if", label, len, ifname);
dist/pf/sbin/pfctl/parse.y
4383
expand_label_addr("$srcaddr", label, len, af, src_host);
dist/pf/sbin/pfctl/parse.y
4384
expand_label_addr("$dstaddr", label, len, af, dst_host);
dist/pf/sbin/pfctl/parse.y
4385
expand_label_port("$srcport", label, len, src_port);
dist/pf/sbin/pfctl/parse.y
4386
expand_label_port("$dstport", label, len, dst_port);
dist/pf/sbin/pfctl/parse.y
4387
expand_label_proto("$proto", label, len, proto);
dist/pf/sbin/pfctl/parse.y
4388
expand_label_nr("$nr", label, len);
dist/pf/sbin/pfctl/parse.y
452
%type <v.string> label string tag anchorname
dist/pf/sbin/pfctl/parse.y
4658
char label[PF_RULE_LABEL_SIZE];
dist/pf/sbin/pfctl/parse.y
4665
if (strlcpy(label, r->label, sizeof(label)) >= sizeof(label))
dist/pf/sbin/pfctl/parse.y
4715
if (strlcpy(r->label, label, sizeof(r->label)) >=
dist/pf/sbin/pfctl/parse.y
4716
sizeof(r->label))
dist/pf/sbin/pfctl/parse.y
4724
expand_label(r->label, PF_RULE_LABEL_SIZE, r->ifname, r->af,
dist/pf/sbin/pfctl/parse.y
5473
if (strlcpy(r->label, s, sizeof(r->label)) >=
dist/pf/sbin/pfctl/parse.y
5474
sizeof(r->label)) {
dist/pf/sbin/pfctl/parse.y
5476
sizeof(r->label)-1);
dist/pf/sbin/pfctl/pfctl.c
810
if (pr.rule.label[0]) {
dist/pf/sbin/pfctl/pfctl.c
811
printf("%s ", pr.rule.label);
dist/pf/sbin/pfctl/pfctl.c
825
if (pr.rule.label[0] && (opts & PF_OPT_SHOWALL))
dist/pf/sbin/pfctl/pfctl.c
855
if (pr.rule.label[0]) {
dist/pf/sbin/pfctl/pfctl.c
856
printf("%s ", pr.rule.label);
dist/pf/sbin/pfctl/pfctl.c
871
if (pr.rule.label[0] && (opts & PF_OPT_SHOWALL))
dist/pf/sbin/pfctl/pfctl_optimize.c
109
PF_RULE_FIELD(label, BARRIER),
dist/pf/sbin/pfctl/pfctl_parser.c
1009
if (r->label[0])
dist/pf/sbin/pfctl/pfctl_parser.c
1010
printf(" label \"%s\"", r->label);
games/phantasia/map.c
100
label("OUTER CIRCLES:");
games/phantasia/map.c
103
label("> 9: The Outer Waste");
games/phantasia/map.c
105
label("> 20: The Dead Marshes");
games/phantasia/map.c
107
label("> 35: Kennaquhair");
games/phantasia/map.c
109
label("> 55: Morannon");
games/phantasia/map.c
111
label("(0,0): The Lord's Chamber");
games/phantasia/map.c
114
label("Grid squares are 100 x 100");
games/phantasia/map.c
116
label("Created by Ted Estes");
games/phantasia/map.c
118
label("Plotted by Chris Robertson");
games/phantasia/map.c
120
label(" c 1985");
games/phantasia/map.c
141
label(s1);
games/phantasia/map.c
158
label(s1);
games/phantasia/map.c
61
label("- THE PHANTASIA UNIVERSE -");
games/phantasia/map.c
64
label("Lorien");
games/phantasia/map.c
66
label("Ithilien");
games/phantasia/map.c
68
label("Rohan");
games/phantasia/map.c
70
label("Anorien");
games/phantasia/map.c
84
label("The Moors");
games/phantasia/map.c
86
label("Adventurous");
games/phantasia/map.c
88
label("The Moors");
games/phantasia/map.c
90
label("Adventurous");
games/phantasia/map.c
92
label("The Moors");
games/phantasia/map.c
94
label("Adventurous");
games/phantasia/map.c
96
label("The Moors");
games/phantasia/map.c
98
label("Adventurous");
games/phantasia/misc.c
100
label = "The Point of No Return";
games/phantasia/misc.c
102
label = "The Ashen Mountains";
games/phantasia/misc.c
105
label = "Morannon";
games/phantasia/misc.c
108
label = "Kennaquahair";
games/phantasia/misc.c
111
label = "The Dead Marshes";
games/phantasia/misc.c
114
label = "The Outer Waste";
games/phantasia/misc.c
117
label = "The Moors Adventurous";
games/phantasia/misc.c
120
label = "The Lord's Chamber";
games/phantasia/misc.c
147
label = nametable[((int) circle) - 1][quadrant];
games/phantasia/misc.c
152
snprintf(Databuf, SZ_DATABUF, "%.29s", label);
games/phantasia/misc.c
156
label, playerp->p_x, playerp->p_y);
games/phantasia/misc.c
86
const char *label; /* pointer to place name */
games/rogue/message.c
246
boolean label;
games/rogue/message.c
249
label = (stat_mask & STAT_LABEL) ? 1 : 0;
games/rogue/message.c
252
if (label) {
games/rogue/message.c
259
if (label) {
games/rogue/message.c
268
if (label) {
games/rogue/message.c
280
if (label) {
games/rogue/message.c
292
if (label) {
games/rogue/message.c
301
if (label) {
lib/libc/arch/alpha/SYS.h
52
#define PSEUDO(label,name) \
lib/libc/arch/alpha/SYS.h
53
LEAF(label,0); /* XXX # of args? */ \
lib/libc/arch/alpha/SYS.h
56
END(label);
lib/libc/arch/alpha/SYS.h
58
#define PSEUDO_NOERROR(label,name) \
lib/libc/arch/alpha/SYS.h
59
LEAF(label,0); /* XXX # of args? */ \
lib/libc/arch/alpha/SYS.h
62
END(label);
lib/libc/arch/ia64/SYS.h
50
#define PSEUDO(label,name) \
lib/libc/arch/ia64/SYS.h
51
ENTRY(label,0); /* XXX # of args? */ \
lib/libc/arch/ia64/SYS.h
54
END(label);
lib/libc/arch/ia64/SYS.h
56
#define PSEUDO_NOERROR(label,name) \
lib/libc/arch/ia64/SYS.h
57
ENTRY(label,0); /* XXX # of args? */ \
lib/libc/arch/ia64/SYS.h
60
END(label);
lib/libc/gen/fmtmsg.c
143
writeit(FILE *stream, unsigned int which, const char *label,
lib/libc/gen/fmtmsg.c
150
((which & MM_VERBLABEL) && label != MM_NULLLBL) ?
lib/libc/gen/fmtmsg.c
151
label : "",
lib/libc/gen/fmtmsg.c
152
((which & MM_VERBLABEL) && label != MM_NULLLBL) ?
lib/libc/gen/fmtmsg.c
160
((which & MM_VERBLABEL) && label != MM_NULLLBL) ||
lib/libc/gen/fmtmsg.c
168
((which & MM_VERBACTION) && label != MM_NULLACT) ?
lib/libc/gen/fmtmsg.c
180
fmtmsg(long classification, const char *label, int severity,
lib/libc/gen/fmtmsg.c
188
if (label != MM_NULLLBL) {
lib/libc/gen/fmtmsg.c
193
p = strchr(label, ':');
lib/libc/gen/fmtmsg.c
194
if (p == NULL || p - label > 10 || strlen(p + 1) > 14)
lib/libc/gen/fmtmsg.c
211
label, sevstr, text, action, tag) < 0)
lib/libc/gen/fmtmsg.c
218
label, sevstr, text, action, tag) < 0)
lib/libc/nameser/ns_name.c
222
u_char *label, *bp, *eom;
lib/libc/nameser/ns_name.c
229
label = bp++;
lib/libc/nameser/ns_name.c
239
&label, &bp, eom))
lib/libc/nameser/ns_name.c
245
label = bp++;
lib/libc/nameser/ns_name.c
279
c = (int)(bp - label - 1);
lib/libc/nameser/ns_name.c
284
if (label >= eom) {
lib/libc/nameser/ns_name.c
288
*label = c;
lib/libc/nameser/ns_name.c
310
label = bp++;
lib/libc/nameser/ns_name.c
319
c = (int)(bp - label - 1);
lib/libc/nameser/ns_name.c
325
if (label >= eom) {
lib/libc/nameser/ns_name.c
329
*label = c;
lib/libc/net/getaddrinfo.c
1030
dst1->aio_srcpolicy->pc_policy.label ==
lib/libc/net/getaddrinfo.c
1031
dst1->aio_dstpolicy->pc_policy.label &&
lib/libc/net/getaddrinfo.c
1033
dst2->aio_srcpolicy->pc_policy.label !=
lib/libc/net/getaddrinfo.c
1034
dst2->aio_dstpolicy->pc_policy.label)) {
lib/libc/net/getaddrinfo.c
1038
dst2->aio_srcpolicy->pc_policy.label ==
lib/libc/net/getaddrinfo.c
1039
dst2->aio_dstpolicy->pc_policy.label &&
lib/libc/net/getaddrinfo.c
1041
dst1->aio_srcpolicy->pc_policy.label !=
lib/libc/net/getaddrinfo.c
1042
dst1->aio_dstpolicy->pc_policy.label)) {
lib/libc/time/localtime.c
2985
goto label;
lib/libc/time/localtime.c
2990
label:
lib/libc/time/strftime.c
243
label:
lib/libc/time/strftime.c
318
goto label;
lib/libc/time/strftime.c
332
goto label;
lib/libc/time/strftime.c
765
goto label;
lib/libc/time/strftime.c
770
goto label;
lib/libc/time/strftime.c
775
goto label;
lib/libcurses/curses_private.h
199
char label[MAX_SLK_LABEL + 1];
lib/libcurses/slk.c
260
slk_set(int labnum, const char *label, int justify)
lib/libcurses/slk.c
263
return __slk_set(_cursesi_screen, labnum, label, justify);
lib/libcurses/slk.c
284
slk_wset(int labnum, const wchar_t *label, int justify)
lib/libcurses/slk.c
287
return __slk_wset(_cursesi_screen, labnum, label, justify);
lib/libcurses/slk.c
469
__slk_set(SCREEN *screen, int labnum, const char *label, int justify)
lib/libcurses/slk.c
491
if (label == NULL)
lib/libcurses/slk.c
492
label = "";
lib/libcurses/slk.c
495
while(isspace((unsigned char)*label))
lib/libcurses/slk.c
496
label++;
lib/libcurses/slk.c
498
end = label;
lib/libcurses/slk.c
515
len = end - label;
lib/libcurses/slk.c
518
if ((text = strndup(label, len)) == NULL)
lib/libcurses/slk.c
551
__slk_wset(SCREEN *screen, int labnum, const wchar_t *label, int justify)
lib/libcurses/slk.c
561
olabel = label;
lib/libcurses/slk.c
573
olabel = label;
lib/libcurses/slk.c
787
p = l->label;
lib/libcurses/slk.c
834
t_plab_norm(screen->term), labnum + 1, l->label));
lib/libcurses/slk.c
840
l->label, strlen(l->label));
lib/libcurses/slk.c
845
inc = wctomb(ts, l->label[lcnt]);
lib/libcurses/slk.c
854
l->x + tx, 0, lcnt, l->label[lcnt]);
lib/libcurses/slk.c
856
screen->slk_label_len, wcwidth(l->label[lcnt]));
lib/libcurses/slk.c
858
wc[0] = l->label[lcnt];
lib/libcurses/slk.c
866
if (l->x + wcwidth(l->label[lcnt] + tx) >=
lib/libcurses/slk.c
876
0, l->x + tx, l->label[lcnt]);
lib/libcurses/slk.c
884
0, l->x + tx, l->label[lcnt]);
lib/libcurses/slk.c
887
tx += wcwidth(l->label[lcnt]);
lib/libintl/plural_parser.c
350
#define T_ENSURE_OK(token, label) \
lib/libintl/plural_parser.c
353
goto label; \
lib/libintl/plural_parser.c
355
#define T_ENSURE_SOMETHING(token, label) \
lib/libintl/plural_parser.c
359
goto label; \
lib/libintl/plural_parser.c
361
goto label; \
lib/libossaudio/oss3_mixer.c
296
if (strcmp(dp->name, mi.label.name) == 0)
lib/libossaudio/oss3_mixer.c
299
mlen = strlen(mi.label.name);
lib/libossaudio/oss3_mixer.c
301
&& mi.label.name[mlen-dlen-1] == '.'
lib/libossaudio/oss3_mixer.c
303
mi.label.name + mlen - dlen) == 0)
lib/libossaudio/oss3_mixer.c
312
strlcpy(di->names[i], mi.label.name,
lib/libossaudio/oss3_mixer.c
322
if (strcmp(mi.label.name, AudioNsource) != 0)
lib/libossaudio/oss3_mixer.c
329
&mi.un.e.member[j].label,
lib/libossaudio/oss3_mixer.c
339
&mi.un.s.member[j].label,
lib/libossaudio/oss3_mixer.c
351
opaque_to_enum(struct audiodevinfo *di, audio_mixer_name_t *label, int opq)
lib/libossaudio/oss3_mixer.c
359
if (o == -1 && label != NULL &&
lib/libossaudio/oss3_mixer.c
360
!strncmp(di->names[i], label->name, sizeof di->names[i])) {
lib/libossaudio/oss4_mixer.c
139
memset(tmpai->label, 0, sizeof(tmpai->label));
lib/libossaudio/oss4_mixer.c
320
strlcpy(ext->id, mdi.label.name, sizeof(ext->id));
lib/libossaudio/oss4_mixer.c
321
strlcpy(ext->extname, mdi.label.name, sizeof(ext->extname));
lib/libossaudio/oss4_mixer.c
341
if (!strcmp(mdi.un.e.member[0].label.name, AudioNoff) &&
lib/libossaudio/oss4_mixer.c
342
!strcmp(mdi.un.e.member[1].label.name, AudioNon)) {
lib/libossaudio/oss4_mixer.c
410
len = strlen(mdi.un.e.member[i].label.name) + 1;
lib/libossaudio/oss4_mixer.c
416
mdi.un.e.member[i].label.name, len);
lib/libossaudio/oss4_mixer.c
425
len = strlen(mdi.un.s.member[i].label.name) + 1;
lib/libossaudio/oss4_mixer.c
431
mdi.un.s.member[i].label.name, len);
lib/libossaudio/soundcard.h
475
char label[OSS_LABEL_SIZE];
libexec/ld.elf_so/arch/hppa/hppa_reloc.c
702
hppa_plabel *label = RTLD_GET_PLABEL(ptr);
libexec/ld.elf_so/arch/hppa/hppa_reloc.c
703
func_pc = label->hppa_plabel_pc;
libexec/ld.elf_so/arch/hppa/hppa_reloc.c
704
func_sl = label->hppa_plabel_sl;
sbin/apmlabel/apmlabel.c
166
if (temp % label.d_secsize != 0) {
sbin/apmlabel/apmlabel.c
171
npe.p_size = temp / label.d_secsize;
sbin/apmlabel/apmlabel.c
174
if (temp % label.d_secsize != 0) {
sbin/apmlabel/apmlabel.c
179
npe.p_offset = temp / label.d_secsize;
sbin/apmlabel/apmlabel.c
188
for (j = 0; j < label.d_npartitions; j++) {
sbin/apmlabel/apmlabel.c
193
lpe = &label.d_partitions[j];
sbin/apmlabel/apmlabel.c
216
if (label.d_npartitions < MAXPARTITIONS) {
sbin/apmlabel/apmlabel.c
217
unused = label.d_npartitions;
sbin/apmlabel/apmlabel.c
218
label.d_npartitions++;
sbin/apmlabel/apmlabel.c
231
label.d_partitions[unused] = npe;
sbin/apmlabel/apmlabel.c
343
showpartitions(stdout, &label, 0);
sbin/apmlabel/apmlabel.c
66
static struct disklabel label;
sbin/apmlabel/apmlabel.c
72
if (ioctl(sd, DIOCGDINFO, &label) < 0) {
sbin/apmlabel/apmlabel.c
80
if (label.d_npartitions <= getrawpartition())
sbin/apmlabel/apmlabel.c
81
label.d_npartitions = getrawpartition() + 1;
sbin/apmlabel/apmlabel.c
89
label.d_checksum = 0;
sbin/apmlabel/apmlabel.c
90
label.d_checksum = dkcksum(&label);
sbin/apmlabel/apmlabel.c
91
if (ioctl(sd, doraw ? DIOCWDINFO : DIOCSDINFO, &label) < 0) {
sbin/disklabel/bswap.h
61
#define dkcksum_target(label) dkcksum(label)
sbin/efi/bootvar.c
107
create_bootbody(const char *label, uint32_t attrib)
sbin/efi/bootvar.c
112
desc_size = utf8_to_ucs2_size(label);
sbin/efi/bootvar.c
120
utf8_to_ucs2(label, strlen(label) + 1, bb->u.body->Description, &size);
sbin/efi/bootvar.c
223
const char *label, const char *loader, const char *fname,
sbin/efi/bootvar.c
230
bb = create_bootbody(label, attrib);
sbin/efi/main.c
232
_X(const char *, label, DEFAULT_LABEL ) \
sbin/efi/main.c
395
opt.label = estrdup(optarg);
sbin/efi/main.c
643
attrib, opt.label, opt.loader, opt.opt_fname,
sbin/fdisk/fdisk.c
928
printvis(int indent, const char *label, const char *buf, size_t size)
sbin/fdisk/fdisk.c
937
label, visbuf);
sbin/fsck/progress.c
114
lengthextras = strlen(dev) + (label != NULL ? strlen(label) : 0);
sbin/fsck/progress.c
125
if (label != NULL)
sbin/fsck/progress.c
126
len += snprintf(buf + len, BUFLEFT, "%s ", label);
sbin/fsck/progress.c
90
progress_bar(const char *dev, const char *label, off_t current, off_t total)
sbin/fsck_ffs/setup.c
609
daddr_t label = APPLEUFS_LABEL_OFFSET / dev_bsize;
sbin/fsck_ffs/setup.c
618
if (bread(fsreadfd, (char *)appleufsblk.b_un.b_fs, label,
sbin/fsck_ffs/setup.c
621
appleufsblk.b_bno = label;
sbin/fsck_v7fs/datablock.c
118
progress(&(struct progress_arg){ .label = "data-free", .tick = (ndata /
sbin/fsck_v7fs/datablock.c
212
progress(&(struct progress_arg){ .label = "data-data", .tick = (n / 2)
sbin/fsck_v7fs/freeblock.c
122
progress(&(struct progress_arg){ .label = "free-free", .tick = (n / 2)
sbin/fsck_v7fs/freeblock.c
270
struct progress_arg progress_arg = { .label = "freeblock", .tick =
sbin/fsck_v7fs/fsck_v7fs.h
48
const char *label;
sbin/fsck_v7fs/main.c
198
static char label[32];
sbin/fsck_v7fs/main.c
207
if (p->label)
sbin/fsck_v7fs/main.c
208
strcpy(label, p->label);
sbin/fsck_v7fs/main.c
218
progress_bar(cdev, label, Progress.total, PROGRESS_BAR_GRANULE);
sbin/fsck_v7fs/pathname.c
296
progress(&(struct progress_arg){ .label = "pathname", .tick = inodes /
sbin/gpt/biosboot.c
172
biosboot(gpt_t gpt, off_t start, uint64_t size, u_int entry, uint8_t *label,
sbin/gpt/biosboot.c
223
if (label != NULL) {
sbin/gpt/biosboot.c
227
if (strcmp((char *)label, (char *)utfbuf) == 0)
sbin/gpt/biosboot.c
232
if (entry < 1 && label == NULL && size > 0 &&
sbin/gpt/biosboot.c
236
if (entry < 1 && label == NULL && size == 0 &&
sbin/gpt/biosboot.c
276
uint8_t *label = NULL;
sbin/gpt/biosboot.c
293
if (gpt_name_get(gpt, &label) == -1)
sbin/gpt/biosboot.c
322
if (biosboot(ngpt, start, size, entry, label, bootpath, active) == -1)
sbin/gpt/biosboot.c
333
free(label);
sbin/gpt/gpt.c
1081
if (gpt_name_get(gpt, &find->label) == -1)
sbin/gpt/gpt.c
1111
(find->block > 0 || find->entry > 0 || find->label != NULL
sbin/gpt/gpt.c
1132
if (find->label != NULL) {
sbin/gpt/gpt.c
1136
if (strcmp((char *)find->label, (char *)utfbuf) != 0)
sbin/gpt/gpt.h
118
uint8_t *name, *label;
sbin/gpt/show.c
433
gpt_show_sec_num(const char *label, int64_t secsize, off_t num, int xshow,
sbin/gpt/show.c
456
printf("%s: %" PRIu64, label, (uint64_t)num);
sbin/mbrlabel/mbrlabel.c
124
unsigned bsize = label.d_secsize;
sbin/mbrlabel/mbrlabel.c
176
for (j = 0; j < label.d_npartitions; j++) {
sbin/mbrlabel/mbrlabel.c
181
lpe = &label.d_partitions[j];
sbin/mbrlabel/mbrlabel.c
199
for (j = 0; j < label.d_npartitions; j++) {
sbin/mbrlabel/mbrlabel.c
204
lpe = &label.d_partitions[j];
sbin/mbrlabel/mbrlabel.c
222
if (label.d_npartitions < MAXPARTITIONS) {
sbin/mbrlabel/mbrlabel.c
223
unused = label.d_npartitions;
sbin/mbrlabel/mbrlabel.c
224
label.d_npartitions++;
sbin/mbrlabel/mbrlabel.c
256
label.d_partitions[unused] = npe;
sbin/mbrlabel/mbrlabel.c
347
showpartitions(stdout, &label, 0);
sbin/mbrlabel/mbrlabel.c
65
struct disklabel label;
sbin/mbrlabel/mbrlabel.c
71
if (ioctl(sd, DIOCGDINFO, &label) < 0) {
sbin/mbrlabel/mbrlabel.c
79
if (label.d_npartitions <= getrawpartition())
sbin/mbrlabel/mbrlabel.c
80
label.d_npartitions = getrawpartition() + 1;
sbin/mbrlabel/mbrlabel.c
88
label.d_checksum = 0;
sbin/mbrlabel/mbrlabel.c
89
label.d_checksum = dkcksum(&label);
sbin/mbrlabel/mbrlabel.c
90
if (ioctl(sd, doraw ? DIOCWDINFO : DIOCSDINFO, &label) < 0) {
sbin/newfs_msdos/mkfs_msdos.c
148
u_int8_t label[11]; /* volume label */
sbin/newfs_msdos/mkfs_msdos.c
716
mklabel(bsx->label, o.volume_label ? o.volume_label : "NO NAME");
sbin/newfs_v7fs/main.c
212
progress(&(struct progress_arg){ .label = "zero ilist", .tick =
sbin/newfs_v7fs/main.c
256
progress(&(struct progress_arg){ .label = "freeblock list", .tick =
sbin/newfs_v7fs/newfs_v7fs.c
213
static char label[32];
sbin/newfs_v7fs/newfs_v7fs.c
222
if (p->label)
sbin/newfs_v7fs/newfs_v7fs.c
223
strcpy(label, p->label);
sbin/newfs_v7fs/newfs_v7fs.c
231
progress_bar(cdev, label, Progress.total, PROGRESS_BAR_GRANULE);
sbin/newfs_v7fs/newfs_v7fs.h
38
const char *label;
sbin/route/route.c
1024
ms[where].shim.label = atoi(s);
sbin/route/route.c
1751
which, ms.shim.label);
sbin/route/route.c
1757
printf("%u; ", ms.shim.label);
sbin/route/rtutil.c
775
snprintf(obuf, sizeof(obuf), "%u", ms.shim.label);
sbin/route/rtutil.c
782
ms.shim.label);
sbin/routed/table.c
1776
char *label)
sbin/routed/table.c
1807
label ? label : "Chg ");
sbin/routed/table.c
1840
char label[20];
sbin/routed/table.c
1857
(void)snprintf(label, sizeof(label), "Use #%d",
sbin/routed/table.c
1859
rtchange(rt, rt->rt_state & ~(RS_NET_SYN | RS_RDISC), rts, label);
sbin/routed/trace.c
785
const char *label)
sbin/routed/trace.c
800
label,
sbin/routed/trace.c
807
(int)strlen(label), "", "",
sbin/svhlabel/svhlabel.c
129
if (label.d_secsize != SGI_BOOT_BLOCK_BLOCKSIZE)
sbin/svhlabel/svhlabel.c
131
label.d_secsize = SGI_BOOT_BLOCK_BLOCKSIZE;
sbin/svhlabel/svhlabel.c
157
if (label.d_secperunit != (uint32_t)vh->partitions[i].blocks)
sbin/svhlabel/svhlabel.c
159
label.d_secperunit = vh->partitions[i].blocks;
sbin/svhlabel/svhlabel.c
166
if (j >= label.d_npartitions)
sbin/svhlabel/svhlabel.c
170
if (++j >= label.d_npartitions)
sbin/svhlabel/svhlabel.c
174
if (memcmp(&label.d_partitions[j], &npe, sizeof(npe)) != 0) {
sbin/svhlabel/svhlabel.c
175
label.d_partitions[j] = npe;
sbin/svhlabel/svhlabel.c
183
if (label.d_nsectors != 1 || label.d_ntracks != 1 ||
sbin/svhlabel/svhlabel.c
184
label.d_secpercyl != 1 || label.d_ncylinders != label.d_secperunit)
sbin/svhlabel/svhlabel.c
186
label.d_nsectors = 1;
sbin/svhlabel/svhlabel.c
187
label.d_ntracks = 1;
sbin/svhlabel/svhlabel.c
188
label.d_secpercyl = 1;
sbin/svhlabel/svhlabel.c
189
label.d_ncylinders = label.d_secperunit;
sbin/svhlabel/svhlabel.c
192
if (label.d_partitions[i].p_fstype != FS_UNUSED ||
sbin/svhlabel/svhlabel.c
193
label.d_partitions[i].p_offset != 0 ||
sbin/svhlabel/svhlabel.c
194
label.d_partitions[i].p_size != label.d_secperunit) {
sbin/svhlabel/svhlabel.c
195
label.d_partitions[i].p_fstype = FS_UNUSED;
sbin/svhlabel/svhlabel.c
196
label.d_partitions[i].p_offset = 0;
sbin/svhlabel/svhlabel.c
197
label.d_partitions[i].p_size = label.d_secperunit;
sbin/svhlabel/svhlabel.c
341
showpartitions(stdout, &label, 0);
sbin/svhlabel/svhlabel.c
70
struct disklabel label;
sbin/svhlabel/svhlabel.c
77
if (ioctl(sd, DIOCGDINFO, &label) < 0) {
sbin/svhlabel/svhlabel.c
85
if (label.d_npartitions <= rawpart)
sbin/svhlabel/svhlabel.c
86
label.d_npartitions = rawpart + 1;
sbin/svhlabel/svhlabel.c
94
label.d_checksum = 0;
sbin/svhlabel/svhlabel.c
95
label.d_checksum = dkcksum(&label);
sbin/svhlabel/svhlabel.c
96
if (ioctl(sd, doraw ? DIOCWDINFO : DIOCSDINFO, &label) < 0) {
share/examples/puffs/pgfs/pgfs_db.c
64
const char *label;
share/examples/puffs/pgfs/pgfs_db.c
662
setlabel(struct Xconn *xc, const char *label)
share/examples/puffs/pgfs/pgfs_db.c
676
if (label != NULL && label != xc->label) {
share/examples/puffs/pgfs/pgfs_db.c
681
"SET application_name TO 'pgfs: %s'", label);
share/examples/puffs/pgfs/pgfs_db.c
686
xc->label = label;
share/examples/puffs/pgfs/pgfs_db.c
699
begin(struct puffs_usermount *pu, const char *label)
share/examples/puffs/pgfs/pgfs_db.c
705
setlabel(xc, label);
share/examples/puffs/pgfs/pgfs_db.c
716
begin_readonly(struct puffs_usermount *pu, const char *label)
share/examples/puffs/pgfs/pgfs_db.c
722
setlabel(xc, label);
share/examples/puffs/pgfs/pgfs_db.c
888
xc->label = NULL;
sys/arch/alpha/include/asm.h
487
#define MSG(msg,reg,label) \
sys/arch/alpha/include/asm.h
488
lda reg, label; \
sys/arch/alpha/include/asm.h
490
label: ASCIZ msg; \
sys/arch/alpha/include/asm.h
497
#define PRINTF(msg,label) \
sys/arch/alpha/include/asm.h
498
MSG(msg,a0,label); \
sys/arch/alpha/include/asm.h
505
#define PANIC(msg,label) \
sys/arch/alpha/include/asm.h
506
MSG(msg,a0,label); \
sys/arch/amiga/dev/aucc.c
723
#define setname(a) strlcpy(dip->label.name, (a), sizeof(dip->label.name))
sys/arch/amiga/dev/aucc.c
726
snprintf(dip->un.s.member[i].label.name,
sys/arch/amiga/dev/aucc.c
727
sizeof(dip->un.s.member[i].label.name),
sys/arch/amiga/dev/aucc.c
754
DPRINTF(("AUDIO_MIXER_DEVINFO: name=%s\n", dip->label.name));
sys/arch/amiga/dev/toccata.c
631
strcpy(dip->label.name, AudioNmicrophone);
sys/arch/amiga/dev/toccata.c
642
strcpy(dip->label.name, AudioNmicrophone);
sys/arch/amiga/dev/toccata.c
653
strcpy(dip->label.name, "aux1");
sys/arch/amiga/dev/toccata.c
672
strcpy(dip->label.name, "aux2");
sys/arch/amiga/dev/toccata.c
690
strcpy(dip->label.name, AudioNmonitor);
sys/arch/amiga/dev/toccata.c
699
strcpy(dip->label.name, AudioNmaster);
sys/arch/amiga/dev/toccata.c
709
strcpy(dip->label.name, AudioNline);
sys/arch/amiga/dev/toccata.c
727
strcpy(dip->label.name, AudioNmute);
sys/arch/amiga/dev/toccata.c
729
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/arch/amiga/dev/toccata.c
731
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/arch/amiga/dev/toccata.c
740
strcpy(dip->label.name, AudioNrecord);
sys/arch/amiga/dev/toccata.c
750
strcpy(dip->label.name, AudioNsource);
sys/arch/amiga/dev/toccata.c
752
strcpy(dip->un.e.member[0].label.name, AudioNmicrophone);
sys/arch/amiga/dev/toccata.c
754
strcpy(dip->un.e.member[1].label.name, AudioNline);
sys/arch/amiga/dev/toccata.c
756
strcpy(dip->un.e.member[2].label.name, "aux1");
sys/arch/amiga/dev/toccata.c
758
strcpy(dip->un.e.member[3].label.name, AudioNoutput);
sys/arch/amiga/dev/toccata.c
766
strcpy(dip->label.name, AudioCinputs);
sys/arch/amiga/dev/toccata.c
773
strcpy(dip->label.name, AudioCoutputs);
sys/arch/amiga/dev/toccata.c
780
strcpy(dip->label.name, AudioCmonitor);
sys/arch/amiga/dev/toccata.c
787
strcpy(dip->label.name, AudioCrecord);
sys/arch/amiga/dev/zz9k_ax.c
434
strcpy(di->label.name, "speaker");
sys/arch/amiga/dev/zz9k_ax.c
440
strcpy(di->un.s.member[0].label.name, "channel0");
sys/arch/amiga/dev/zz9k_ax.c
443
strcpy(di->label.name, "master");
sys/arch/amiga/dev/zz9k_ax.c
452
strcpy(di->label.name, "outputs");
sys/arch/amiga/dev/zz9k_ax.c
462
printf("zzax_query_devinfo: %s\n", di->label.name);
sys/arch/arm/broadcom/bcm2835_vcaudio.c
707
strcpy(di->label.name, AudioCoutputs);
sys/arch/arm/broadcom/bcm2835_vcaudio.c
713
strcpy(di->label.name, AudioCinputs);
sys/arch/arm/broadcom/bcm2835_vcaudio.c
719
strcpy(di->label.name, AudioNmaster);
sys/arch/arm/broadcom/bcm2835_vcaudio.c
727
strcpy(di->label.name, "auto");
sys/arch/arm/broadcom/bcm2835_vcaudio.c
736
strcpy(di->label.name, AudioNheadphone);
sys/arch/arm/broadcom/bcm2835_vcaudio.c
745
strcpy(di->label.name, "hdmi");
sys/arch/arm/broadcom/bcm2835_vcaudio.c
754
strcpy(di->label.name, AudioNdac);
sys/arch/arm/broadcom/bcm2835_vcaudio.c
762
strcpy(di->label.name, AudioNselect);
sys/arch/arm/broadcom/bcm2835_vcaudio.c
767
strcpy(di->un.e.member[0].label.name, "auto");
sys/arch/arm/broadcom/bcm2835_vcaudio.c
769
strcpy(di->un.e.member[1].label.name, AudioNheadphone);
sys/arch/arm/broadcom/bcm2835_vcaudio.c
771
strcpy(di->un.e.member[2].label.name, "hdmi");
sys/arch/arm/imx/imx23_digfilt.c
544
strcpy(di->label.name, AudioCoutputs);
sys/arch/arm/imx/imx23_digfilt.c
551
strcpy(di->label.name, AudioNdac);
sys/arch/arm/imx/imx23_digfilt.c
565
strlcpy(di->label.name, AudioNmute, sizeof(di->label.name));
sys/arch/arm/imx/imx23_digfilt.c
567
strlcpy(di->un.e.member[0].label.name, AudioNon,
sys/arch/arm/imx/imx23_digfilt.c
568
sizeof(di->un.e.member[0].label.name));
sys/arch/arm/imx/imx23_digfilt.c
570
strlcpy(di->un.e.member[1].label.name, AudioNoff,
sys/arch/arm/imx/imx23_digfilt.c
571
sizeof(di->un.e.member[1].label.name));
sys/arch/arm/imx/imx23_digfilt.c
577
strcpy(di->label.name, AudioNheadphone);
sys/arch/arm/imx/imx23_digfilt.c
594
strcpy(di->label.name, AudioNline);
sys/arch/arm/sunxi/sun4i_a10_codec.c
202
strcpy(di->label.name, AudioCoutputs);
sys/arch/arm/sunxi/sun4i_a10_codec.c
209
strcpy(di->label.name, AudioCinputs);
sys/arch/arm/sunxi/sun4i_a10_codec.c
218
strcpy(di->label.name, mix->name);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
435
strcpy(di->label.name, AudioCoutputs);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
442
strcpy(di->label.name, AudioCinputs);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
449
strcpy(di->label.name, AudioCrecord);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
457
strcpy(di->label.name, AudioNmaster);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
474
strcpy(di->label.name, mix->name);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
492
strcpy(di->label.name, AudioNpreamp);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
500
strcpy(di->un.e.member[0].label.name, AudioNoff);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
502
strcpy(di->un.e.member[1].label.name, AudioNon);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
508
strcpy(di->label.name, AudioNmute);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
512
strcpy(di->un.e.member[0].label.name, AudioNoff);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
514
strcpy(di->un.e.member[1].label.name, AudioNon);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
520
strcpy(di->label.name, AudioNsource);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
524
strcpy(di->un.s.member[0].label.name, AudioNline);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
526
strcpy(di->un.s.member[1].label.name, AudioNheadphone);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
532
strcpy(di->label.name, AudioNsource);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
536
strcpy(di->un.s.member[0].label.name, AudioNline);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
538
strcpy(di->un.s.member[1].label.name, AudioNmicrophone);
sys/arch/arm/sunxi/sun50i_a64_acodec.c
540
strcpy(di->un.s.member[2].label.name, AudioNmicrophone "2");
sys/arch/arm/sunxi/sun50i_a64_acodec.c
542
strcpy(di->un.s.member[3].label.name, AudioNdac);
sys/arch/arm/sunxi/sun6i_a31_codec.c
263
strcpy(di->label.name, AudioCoutputs);
sys/arch/arm/sunxi/sun6i_a31_codec.c
270
strcpy(di->label.name, AudioCinputs);
sys/arch/arm/sunxi/sun6i_a31_codec.c
279
strcpy(di->label.name, mix->name);
sys/arch/arm/sunxi/sun8i_h3_codec.c
354
strcpy(di->label.name, AudioCoutputs);
sys/arch/arm/sunxi/sun8i_h3_codec.c
361
strcpy(di->label.name, AudioCinputs);
sys/arch/arm/sunxi/sun8i_h3_codec.c
368
strcpy(di->label.name, AudioCrecord);
sys/arch/arm/sunxi/sun8i_h3_codec.c
381
strcpy(di->label.name, mix->name);
sys/arch/arm/sunxi/sun8i_h3_codec.c
392
strcpy(di->label.name, AudioNsource);
sys/arch/arm/sunxi/sun8i_h3_codec.c
396
strcpy(di->un.s.member[0].label.name, AudioNline);
sys/arch/arm/sunxi/sun8i_h3_codec.c
398
strcpy(di->un.s.member[1].label.name, "mic1");
sys/arch/arm/sunxi/sun8i_h3_codec.c
400
strcpy(di->un.s.member[2].label.name, "mic2");
sys/arch/arm/sunxi/sun8i_h3_codec.c
402
strcpy(di->un.s.member[3].label.name, AudioNdac);
sys/arch/arm/sunxi/sun8i_v3s_codec.c
333
strcpy(di->label.name, AudioCoutputs);
sys/arch/arm/sunxi/sun8i_v3s_codec.c
340
strcpy(di->label.name, AudioCinputs);
sys/arch/arm/sunxi/sun8i_v3s_codec.c
347
strcpy(di->label.name, AudioCrecord);
sys/arch/arm/sunxi/sun8i_v3s_codec.c
357
strcpy(di->label.name, mix->name);
sys/arch/arm/sunxi/sun8i_v3s_codec.c
368
strcpy(di->label.name, AudioNsource);
sys/arch/arm/sunxi/sun8i_v3s_codec.c
372
strcpy(di->un.s.member[0].label.name, "mic");
sys/arch/arm/sunxi/sun8i_v3s_codec.c
374
strcpy(di->un.s.member[1].label.name, AudioNdac);
sys/arch/atari/atari/disksubr.c
196
bsd_label(dev_t dev, void (*strat)(struct buf *), struct disklabel *label,
sys/arch/atari/atari/disksubr.c
207
bp->b_cylinder = blkno / label->d_secpercyl;
sys/arch/atari/atari/disksubr.c
237
*label = *dl;
sys/arch/atari/stand/installboot/disklabel.c
103
bsd_label(int fd, off_t offs, struct disklabel *label)
sys/arch/atari/stand/installboot/disklabel.c
123
*label = *p;
sys/arch/atari/stand/installboot/disklabel.c
128
ahdi_label(int fd, uint32_t *bbsec, struct disklabel *label)
sys/arch/atari/stand/installboot/disklabel.c
177
if ((e = bsd_label(fd, offs, label)) < 0)
sys/arch/atari/stand/installboot/installboot.c
224
install_fd(char *devnm, struct disklabel *label)
sys/arch/atari/stand/installboot/installboot.c
230
if (label->d_secsize != 512)
sys/arch/atari/stand/installboot/installboot.c
233
label->d_secsize);
sys/arch/atari/stand/installboot/installboot.c
234
if (label->d_ntracks != 2)
sys/arch/atari/stand/installboot/installboot.c
249
for (rootpart = label->d_partitions; ; ++rootpart) {
sys/arch/atari/stand/installboot/installboot.c
253
if (rootpart != label->d_partitions) { /* XXX */
sys/arch/atari/stand/installboot/installboot.c
254
*(label->d_partitions) = *rootpart;
sys/arch/atari/stand/installboot/installboot.c
257
label->d_partitions->p_fstype = FS_BSDFFS; /* XXX */
sys/arch/atari/stand/installboot/installboot.c
258
label->d_npartitions = 1;
sys/arch/atari/stand/installboot/installboot.c
259
label->d_checksum = 0;
sys/arch/atari/stand/installboot/installboot.c
260
label->d_checksum = dkcksum(label);
sys/arch/atari/stand/installboot/installboot.c
263
mkbootblock(&bootarea, xxboot, bootxx, label, 0);
sys/arch/atari/stand/installboot/installboot.c
280
install_hd(char *devnm, struct disklabel *label, bool use_wd)
sys/arch/atari/stand/installboot/installboot.c
294
if (label->d_partitions[0].p_size == 0)
sys/arch/atari/stand/installboot/installboot.c
296
if (label->d_partitions[0].p_fstype != FS_BSDFFS)
sys/arch/atari/stand/installboot/installboot.c
298
devnm, fstypenames[label->d_partitions[0].p_fstype]);
sys/arch/atari/stand/installboot/installboot.c
303
if (memcmp(label, &rawlabel, sizeof(*label)))
sys/arch/atari/stand/installboot/installboot.c
332
mkbootblock(&bootarea, xxboot, bootxx, label, magic);
sys/arch/atari/stand/installboot/installboot.c
410
struct disklabel *label, u_int magic)
sys/arch/atari/stand/installboot/installboot.c
420
BBSETLABEL(bb, label);
sys/arch/atari/stand/libsa/diskio.c
53
init_dskio (void *func, void *label, int root)
sys/arch/atari/stand/libsa/diskio.c
55
struct disklabel *dl = label;
sys/arch/dreamcast/dev/g2/aica.c
658
strcpy(md->label.name, AudioNmaster);
sys/arch/dreamcast/dev/g2/aica.c
666
strcpy(md->label.name, AudioNoutput);
sys/arch/dreamcast/dev/g2/aica.c
668
strcpy(md->label.name, AudioNvolume);
sys/arch/dreamcast/dev/g2/aica.c
674
strcpy(md->label.name, AudioCoutputs);
sys/arch/evbppc/nintendo/dev/bwai.c
165
strcpy(di->label.name, AudioCoutputs);
sys/arch/evbppc/nintendo/dev/bwai.c
172
strcpy(di->label.name, AudioCinputs);
sys/arch/evbppc/nintendo/dev/bwai.c
179
strcpy(di->label.name, AudioNmaster);
sys/arch/evbppc/nintendo/dev/bwai.c
189
strcpy(di->label.name, AudioNdac);
sys/arch/hpcmips/vr/vraiu.c
475
strcpy(di->label.name, AudioNdac);
sys/arch/hpcmips/vr/vraiu.c
483
strcpy(di->label.name, AudioCinputs);
sys/arch/hppa/gsc/harmony.c
792
strlcpy(dip->label.name, AudioNinput, sizeof dip->label.name);
sys/arch/hppa/gsc/harmony.c
801
strlcpy(dip->label.name, "overrange", sizeof dip->label.name);
sys/arch/hppa/gsc/harmony.c
803
strlcpy(dip->un.e.member[0].label.name, AudioNoff,
sys/arch/hppa/gsc/harmony.c
804
sizeof dip->un.e.member[0].label.name);
sys/arch/hppa/gsc/harmony.c
806
strlcpy(dip->un.e.member[1].label.name, AudioNon,
sys/arch/hppa/gsc/harmony.c
807
sizeof dip->un.e.member[1].label.name);
sys/arch/hppa/gsc/harmony.c
814
strlcpy(dip->label.name, AudioNoutput, sizeof dip->label.name);
sys/arch/hppa/gsc/harmony.c
823
strlcpy(dip->label.name, "gain", sizeof dip->label.name);
sys/arch/hppa/gsc/harmony.c
825
strlcpy(dip->un.e.member[0].label.name, AudioNoff,
sys/arch/hppa/gsc/harmony.c
826
sizeof dip->un.e.member[0].label.name);
sys/arch/hppa/gsc/harmony.c
828
strlcpy(dip->un.e.member[1].label.name, AudioNon,
sys/arch/hppa/gsc/harmony.c
829
sizeof dip->un.e.member[1].label.name);
sys/arch/hppa/gsc/harmony.c
836
strlcpy(dip->label.name, AudioNmonitor, sizeof dip->label.name);
sys/arch/hppa/gsc/harmony.c
845
strlcpy(dip->label.name, AudioNsource, sizeof dip->label.name);
sys/arch/hppa/gsc/harmony.c
847
strlcpy(dip->un.e.member[0].label.name, AudioNmicrophone,
sys/arch/hppa/gsc/harmony.c
848
sizeof dip->un.e.member[0].label.name);
sys/arch/hppa/gsc/harmony.c
850
strlcpy(dip->un.e.member[1].label.name, AudioNline,
sys/arch/hppa/gsc/harmony.c
851
sizeof dip->un.e.member[1].label.name);
sys/arch/hppa/gsc/harmony.c
858
strlcpy(dip->label.name, AudioNoutput, sizeof dip->label.name);
sys/arch/hppa/gsc/harmony.c
860
strlcpy(dip->un.e.member[0].label.name, AudioNline,
sys/arch/hppa/gsc/harmony.c
861
sizeof dip->un.e.member[0].label.name);
sys/arch/hppa/gsc/harmony.c
863
strlcpy(dip->un.e.member[1].label.name, AudioNspeaker,
sys/arch/hppa/gsc/harmony.c
864
sizeof dip->un.e.member[1].label.name);
sys/arch/hppa/gsc/harmony.c
866
strlcpy(dip->un.e.member[2].label.name, AudioNheadphone,
sys/arch/hppa/gsc/harmony.c
867
sizeof dip->un.e.member[2].label.name);
sys/arch/hppa/gsc/harmony.c
874
strlcpy(dip->label.name, AudioCinputs, sizeof dip->label.name);
sys/arch/hppa/gsc/harmony.c
880
strlcpy(dip->label.name, AudioCoutputs, sizeof dip->label.name);
sys/arch/hppa/gsc/harmony.c
886
strlcpy(dip->label.name, AudioCmonitor, sizeof dip->label.name);
sys/arch/hppa/gsc/harmony.c
892
strlcpy(dip->label.name, AudioCrecord, sizeof dip->label.name);
sys/arch/hppa/include/asm.h
47
.export x, entry ! .label x ! .proc
sys/arch/hppa/include/asm.h
99
#define ALTENTRY(x) ! .export x, entry ! .label x
sys/arch/hppa/stand/common/dk.c
42
dk_disklabel(struct hppa_dev *dp, struct disklabel *label)
sys/arch/hppa/stand/common/dk.c
51
return (getdisklabel(buf, label));
sys/arch/i386/stand/efiboot/efidisk.c
190
struct RF_ComponentLabel_s label;
sys/arch/i386/stand/efiboot/efidisk.c
195
if (biosdisk_read_raidframe(edi->dev, part->offset, &label) != 0)
sys/arch/i386/stand/efiboot/efidisk.c
198
if (label.version != RF_COMPONENT_LABEL_VERSION)
sys/arch/i386/stand/efiboot/efidisk.c
201
raidframe[i].last_unit = label.last_unit;
sys/arch/i386/stand/efiboot/efidisk.c
202
raidframe[i].serial = label.serial_number;
sys/arch/i386/stand/efiboot/efidisk.c
210
raidframe[i].size = label.__numBlocks;
sys/arch/i386/stand/lib/biosdisk.c
1156
struct RF_ComponentLabel_s *label)
sys/arch/i386/stand/lib/biosdisk.c
1184
size = roundup(sizeof(*label), d->ll.secsize) / d->ll.secsize;
sys/arch/i386/stand/lib/biosdisk.c
1187
memcpy(label, d->buf, sizeof(*label));
sys/arch/i386/stand/lib/biosdisk.c
570
bi_disk.label.type = lp->d_type;
sys/arch/i386/stand/lib/biosdisk.c
571
memcpy(bi_disk.label.packname, lp->d_packname, 16);
sys/arch/i386/stand/lib/biosdisk.c
572
bi_disk.label.checksum = lp->d_checksum;
sys/arch/i386/stand/lib/biosdisk.c
801
struct RF_ComponentLabel_s label;
sys/arch/i386/stand/lib/biosdisk.c
808
if ((biosdisk_read_raidframe(d->ll.dev, offset, &label)) != 0)
sys/arch/i386/stand/lib/biosdisk.c
811
if (label.version != RF_COMPONENT_LABEL_VERSION)
sys/arch/i386/stand/lib/biosdisk.c
814
raidframe[i].last_unit = label.last_unit;
sys/arch/i386/stand/lib/biosdisk.c
815
raidframe[i].serial = label.serial_number;
sys/arch/i386/stand/lib/biosdisk.c
826
raidframe[i].size = label.__numBlocks;
sys/arch/ia64/include/asm.h
151
#define MSG(msg,reg,label) \
sys/arch/ia64/include/asm.h
152
addl reg,@ltoff(label),gp;; \
sys/arch/ia64/include/asm.h
155
label: ASCIZ msg; \
sys/arch/ia64/unwind/decode.c
217
uwd->B1.label = (buf[0] & 0x1f);
sys/arch/ia64/unwind/decode.c
260
buf = unwind_decode_ule128(buf, &uwd->B4.label);
sys/arch/ia64/unwind/decode.h
102
u_int label;
sys/arch/ia64/unwind/decode.h
117
vsize_t label;
sys/arch/ia64/unwind/stackframe.c
563
printf("label = %d) \n", rchain->udesc.B1.label);
sys/arch/ia64/unwind/stackframe.c
588
printf("label = %ld) \n", rchain->udesc.B4.label);
sys/arch/ia64/unwind/stackframe.c
959
clonerecordstack(u_int label)
sys/arch/ia64/unwind/stackframe.c
970
switchrecordstack(u_int label)
sys/arch/landisk/include/bootinfo.h
52
} label;
sys/arch/landisk/landisk/autoconf.c
125
error = VOP_IOCTL(tmpvn, DIOCGDINFO, &label, FREAD, NOCRED);
sys/arch/landisk/landisk/autoconf.c
137
if (label.d_type == bid->label.type &&
sys/arch/landisk/landisk/autoconf.c
138
label.d_checksum == bid->label.checksum &&
sys/arch/landisk/landisk/autoconf.c
139
strncmp(label.d_packname, bid->label.packname, 16) == 0)
sys/arch/landisk/landisk/autoconf.c
84
struct disklabel label;
sys/arch/landisk/stand/boot/biosdisk.c
311
bi_disk.label.type = lp->d_type;
sys/arch/landisk/stand/boot/biosdisk.c
312
memcpy(bi_disk.label.packname, lp->d_packname, 16);
sys/arch/landisk/stand/boot/biosdisk.c
313
bi_disk.label.checksum = lp->d_checksum;
sys/arch/m68k/fpsp/fpsp.h
84
* label to a routine that will process a real exception of the
sys/arch/mac68k/obio/ascaudio.c
715
strcpy(di->label.name, AudioCoutputs);
sys/arch/mac68k/obio/ascaudio.c
721
strcpy(di->label.name, AudioCinputs);
sys/arch/mac68k/obio/ascaudio.c
727
strcpy(di->label.name, AudioNmaster);
sys/arch/mac68k/obio/ascaudio.c
735
strcpy(di->label.name, AudioNdac);
sys/arch/macppc/dev/awacs.c
850
strcpy(dip->label.name, AudioNoutput);
sys/arch/macppc/dev/awacs.c
854
strcpy(dip->un.s.member[0].label.name, AudioNspeaker);
sys/arch/macppc/dev/awacs.c
856
strcpy(dip->un.s.member[1].label.name, AudioNheadphone);
sys/arch/macppc/dev/awacs.c
862
strcpy(dip->label.name, AudioNmaster);
sys/arch/macppc/dev/awacs.c
872
strcpy(dip->label.name, AudioNmonitor);
sys/arch/macppc/dev/awacs.c
884
strcpy(dip->label.name, AudioNbass);
sys/arch/macppc/dev/awacs.c
895
strcpy(dip->label.name, AudioNtreble);
sys/arch/macppc/dev/awacs.c
905
strcpy(dip->label.name, AudioNsource);
sys/arch/macppc/dev/awacs.c
909
strcpy(dip->un.s.member[0].label.name, AudioNcd);
sys/arch/macppc/dev/awacs.c
911
strcpy(dip->un.s.member[1].label.name, AudioNmicrophone);
sys/arch/macppc/dev/awacs.c
913
strcpy(dip->un.s.member[2].label.name, AudioNline);
sys/arch/macppc/dev/awacs.c
919
strcpy(dip->label.name, AudioNrecord);
sys/arch/macppc/dev/awacs.c
928
strcpy(dip->label.name, AudioCmonitor);
sys/arch/macppc/dev/awacs.c
935
strcpy(dip->label.name, AudioCoutputs);
sys/arch/macppc/dev/awacs.c
942
strcpy(dip->label.name, AudioCrecord);
sys/arch/macppc/dev/snapper.c
1225
strcpy(dip->label.name, AudioNoutput);
sys/arch/macppc/dev/snapper.c
1229
strcpy(dip->un.s.member[0].label.name, AudioNspeaker);
sys/arch/macppc/dev/snapper.c
1231
strcpy(dip->un.s.member[1].label.name, AudioNheadphone);
sys/arch/macppc/dev/snapper.c
1233
strcpy(dip->un.s.member[2].label.name, AudioNline);
sys/arch/macppc/dev/snapper.c
1239
strcpy(dip->label.name, AudioNmaster);
sys/arch/macppc/dev/snapper.c
1252
strcpy(dip->label.name, AudioNsource);
sys/arch/macppc/dev/snapper.c
1256
strcpy(dip->un.s.member[0].label.name, AudioNmicrophone);
sys/arch/macppc/dev/snapper.c
1258
strcpy(dip->un.s.member[1].label.name, AudioNline);
sys/arch/macppc/dev/snapper.c
1264
strcpy(dip->label.name, AudioNrecord);
sys/arch/macppc/dev/snapper.c
1273
strcpy(dip->label.name, AudioCmonitor);
sys/arch/macppc/dev/snapper.c
1280
strcpy(dip->label.name, AudioCoutputs);
sys/arch/macppc/dev/snapper.c
1287
strcpy(dip->label.name, AudioCrecord);
sys/arch/macppc/dev/snapper.c
1297
strcpy(dip->label.name, AudioNtreble);
sys/arch/macppc/dev/snapper.c
1308
strcpy(dip->label.name, AudioNbass);
sys/arch/macppc/dev/snapper.c
1319
strcpy(dip->label.name, AudioNdac);
sys/arch/macppc/dev/snapper.c
1330
strcpy(dip->label.name, AudioNline);
sys/arch/macppc/dev/snapper.c
1341
strcpy(dip->label.name, AudioNmicrophone);
sys/arch/macppc/macppc/disksubr.c
717
struct disklabel label;
sys/arch/macppc/macppc/disksubr.c
722
label = *lp;
sys/arch/macppc/macppc/disksubr.c
723
readdisklabel(dev, strat, &label, osdep);
sys/arch/macppc/stand/ofwboot/ofdev.c
388
struct disklabel label;
sys/arch/macppc/stand/ofwboot/ofdev.c
451
|| getdisklabel(buf, &label))) {
sys/arch/macppc/stand/ofwboot/ofdev.c
456
error = search_mac_label(&ofdev, buf, &label);
sys/arch/macppc/stand/ofwboot/ofdev.c
459
&label, 0);
sys/arch/macppc/stand/ofwboot/ofdev.c
475
ofdev.partoff = label.d_partitions[part].p_offset;
sys/arch/mips/mips/db_trace.c
144
mips_label_t label;
sys/arch/mips/mips/db_trace.c
214
db_read_bytes((db_addr_t)&pcb->pcb_context, sizeof(label), (char *)&label);
sys/arch/mips/mips/db_trace.c
215
sp = label.val[_L_SP];
sys/arch/mips/mips/db_trace.c
216
s8 = label.val[_L_S8];
sys/arch/mips/mips/db_trace.c
217
ra = label.val[_L_RA];
sys/arch/next68k/stand/boot/sd.c
120
struct next68k_disklabel *label;
sys/arch/next68k/stand/boot/sd.c
148
label = (struct next68k_disklabel *)(io_buf+NEXT68K_LABEL_OFFSET);
sys/arch/next68k/stand/boot/sd.c
150
if (!IS_DISKLABEL(label)) /* || (label->cd_flags & CD_UNINIT)!=0) */
sys/arch/next68k/stand/boot/sd.c
155
label->cd_label,label->cd_name, label->cd_type));
sys/arch/next68k/stand/boot/sd.c
157
while (label->cd_secsize > blklen)
sys/arch/next68k/stand/boot/sd.c
162
if (label->cd_secsize < blklen)
sys/arch/next68k/stand/boot/sd.c
165
label->cd_secsize, blklen>>sc_blkshift);
sys/arch/next68k/stand/boot/sd.c
170
if (label->cd_partitions[i].cp_size > 0) {
sys/arch/next68k/stand/boot/sd.c
171
pi->offset[pi->npart] = (label->cd_partitions[i].cp_offset
sys/arch/next68k/stand/boot/sd.c
172
+ label->cd_front) << sc_blkshift;
sys/arch/ofppc/ofppc/disksubr.c
798
struct disklabel label;
sys/arch/ofppc/ofppc/disksubr.c
803
label = *lp;
sys/arch/ofppc/ofppc/disksubr.c
804
readdisklabel(dev, strat, &label, osdep);
sys/arch/ofppc/stand/ofwboot/ofdev.c
196
struct disklabel label;
sys/arch/ofppc/stand/ofwboot/ofdev.c
265
error = search_mbr_label(&ofdev, 0, buf, &label, 0);
sys/arch/ofppc/stand/ofwboot/ofdev.c
269
error = search_rdb_label(&ofdev, buf, &label);
sys/arch/ofppc/stand/ofwboot/ofdev.c
278
if (getdisklabel(buf, &label) != NULL)
sys/arch/ofppc/stand/ofwboot/ofdev.c
297
ofdev.partoff = label.d_partitions[part].p_offset;
sys/arch/ofppc/stand/ofwboot/ofdev.c
298
if (label.d_partitions[part].p_fstype == FS_RAID) {
sys/arch/prep/isa/paud_isa.c
234
strcpy(dip->label.name, AudioNmicrophone);
sys/arch/prep/isa/paud_isa.c
244
strcpy(dip->label.name, AudioNcd);
sys/arch/prep/isa/paud_isa.c
254
strcpy(dip->label.name, AudioNdac);
sys/arch/prep/isa/paud_isa.c
264
strcpy(dip->label.name, AudioNrecord);
sys/arch/prep/isa/paud_isa.c
274
strcpy(dip->label.name, AudioNmonitor);
sys/arch/prep/isa/paud_isa.c
283
strcpy(dip->label.name, AudioCinputs);
sys/arch/prep/isa/paud_isa.c
290
strcpy(dip->label.name, AudioCmonitor);
sys/arch/prep/isa/paud_isa.c
297
strcpy(dip->label.name, AudioCrecord);
sys/arch/prep/isa/paud_isa.c
327
strcpy(dip->label.name, AudioNmute);
sys/arch/prep/isa/paud_isa.c
329
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/arch/prep/isa/paud_isa.c
331
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/arch/prep/isa/paud_isa.c
340
strcpy(dip->label.name, AudioNsource);
sys/arch/prep/isa/paud_isa.c
342
strcpy(dip->un.e.member[0].label.name, AudioNmicrophone);
sys/arch/prep/isa/paud_isa.c
344
strcpy(dip->un.e.member[1].label.name, AudioNcd);
sys/arch/prep/isa/paud_isa.c
346
strcpy(dip->un.e.member[2].label.name, AudioNdac);
sys/arch/sgimips/hpc/haltwo.c
549
strcpy(dev->label.name, AudioNmaster);
sys/arch/sgimips/hpc/haltwo.c
560
strcpy(dev->label.name, AudioCoutputs);
sys/arch/sgimips/hpc/haud.c
1046
strcpy(dev->label.name, AudioNmaster);
sys/arch/sgimips/hpc/haud.c
1056
strcpy(dev->label.name, AudioCoutputs);
sys/arch/sgimips/mace/mavb.c
561
strlcpy(di->label.name, AudioCrecord, sizeof di->label.name);
sys/arch/sgimips/mace/mavb.c
568
strlcpy(di->label.name, AudioNsource, sizeof di->label.name);
sys/arch/sgimips/mace/mavb.c
572
strlcpy(di->un.e.member[i].label.name,
sys/arch/sgimips/mace/mavb.c
574
sizeof di->un.e.member[0].label.name);
sys/arch/sgimips/mace/mavb.c
582
strlcpy(di->label.name, AudioNvolume, sizeof di->label.name);
sys/arch/sgimips/mace/mavb.c
591
strlcpy(di->label.name, AudioCinputs, sizeof di->label.name);
sys/arch/sgimips/mace/mavb.c
598
strlcpy(di->label.name, AudioNmaster, sizeof di->label.name);
sys/arch/sgimips/mace/mavb.c
607
strlcpy(di->label.name, AudioNmute, sizeof di->label.name);
sys/arch/sgimips/mace/mavb.c
609
strlcpy(di->un.e.member[0].label.name, AudioNoff,
sys/arch/sgimips/mace/mavb.c
610
sizeof di->un.e.member[0].label.name);
sys/arch/sgimips/mace/mavb.c
612
strlcpy(di->un.e.member[1].label.name, AudioNon,
sys/arch/sgimips/mace/mavb.c
613
sizeof di->un.e.member[1].label.name);
sys/arch/sgimips/mace/mavb.c
626
strlcpy(di->label.name,
sys/arch/sgimips/mace/mavb.c
628
sizeof di->label.name);
sys/arch/sgimips/mace/mavb.c
645
strlcpy(di->label.name, AudioNmute, sizeof di->label.name);
sys/arch/sgimips/mace/mavb.c
647
strlcpy(di->un.e.member[0].label.name, AudioNoff,
sys/arch/sgimips/mace/mavb.c
648
sizeof di->un.e.member[0].label.name);
sys/arch/sgimips/mace/mavb.c
650
strlcpy(di->un.e.member[1].label.name, AudioNon,
sys/arch/sgimips/mace/mavb.c
651
sizeof di->un.e.member[1].label.name);
sys/arch/sgimips/mace/mavb.c
658
strlcpy(di->label.name, "sum." AudioNmute,
sys/arch/sgimips/mace/mavb.c
659
sizeof di->label.name);
sys/arch/sgimips/mace/mavb.c
661
strlcpy(di->un.e.member[0].label.name, AudioNoff,
sys/arch/sgimips/mace/mavb.c
662
sizeof di->un.e.member[0].label.name);
sys/arch/sgimips/mace/mavb.c
664
strlcpy(di->un.e.member[1].label.name, AudioNon,
sys/arch/sgimips/mace/mavb.c
665
sizeof di->un.e.member[1].label.name);
sys/arch/sgimips/mace/mavb.c
672
strlcpy(di->label.name, AudioCoutputs, sizeof di->label.name);
sys/arch/sgimips/mace/mavb.c
678
strlcpy(di->label.name, AudioNmono "." AudioNmute,
sys/arch/sgimips/mace/mavb.c
679
sizeof di->label.name);
sys/arch/sgimips/mace/mavb.c
681
strlcpy(di->un.e.member[0].label.name, AudioNoff,
sys/arch/sgimips/mace/mavb.c
682
sizeof di->un.e.member[0].label.name);
sys/arch/sgimips/mace/mavb.c
684
strlcpy(di->un.e.member[1].label.name, AudioNon,
sys/arch/sgimips/mace/mavb.c
685
sizeof di->un.e.member[1].label.name);
sys/arch/sgimips/mace/mavb.c
692
strlcpy(di->label.name, AudioNheadphone "." AudioNmute,
sys/arch/sgimips/mace/mavb.c
693
sizeof di->label.name);
sys/arch/sgimips/mace/mavb.c
695
strlcpy(di->un.e.member[0].label.name, AudioNoff,
sys/arch/sgimips/mace/mavb.c
696
sizeof di->un.e.member[0].label.name);
sys/arch/sgimips/mace/mavb.c
698
strlcpy(di->un.e.member[1].label.name, AudioNon,
sys/arch/sgimips/mace/mavb.c
699
sizeof di->un.e.member[1].label.name);
sys/arch/sh3/include/asm.h
185
#define PIC_PROLOGUE(label)
sys/arch/sh3/include/asm.h
186
#define PIC_PROLOGUE_NOSAVE(label)
sys/arch/shark/stand/ofwboot/ofdev.c
250
struct disklabel label;
sys/arch/shark/stand/ofwboot/ofdev.c
305
|| getdisklabel(buf, &label)) {
sys/arch/shark/stand/ofwboot/ofdev.c
307
error = search_label(&ofdev, 0, buf, &label, 0);
sys/arch/shark/stand/ofwboot/ofdev.c
320
ofdev.partoff = label.d_partitions[part].p_offset;
sys/arch/sparc/stand/ofwboot/ofdev.c
435
struct disklabel label;
sys/arch/sparc/stand/ofwboot/ofdev.c
437
struct disklabel label;
sys/arch/sparc/stand/ofwboot/ofdev.c
545
|| (errmsg = getdisklabel(b.buf, &label))) {
sys/arch/sparc/stand/ofwboot/ofdev.c
551
errmsg = search_label(&ofdev, 0, b.buf, &label, 0);
sys/arch/sparc/stand/ofwboot/ofdev.c
577
ofdev.partoff = label.d_partitions[part].p_offset;
sys/arch/sparc/stand/ofwboot/ofdev.c
580
if (label.d_partitions[part].p_fstype == FS_RAID) {
sys/arch/x68k/stand/installboot/installboot.c
127
if (ioctl(fd, DIOCGDINFO, &label) < 0)
sys/arch/x68k/stand/installboot/installboot.c
129
if (part >= label.d_npartitions)
sys/arch/x68k/stand/installboot/installboot.c
131
blocksize = label.d_secsize;
sys/arch/x68k/stand/installboot/installboot.c
143
if (label.d_partitions[part].p_fstype != FS_BSDFFS
sys/arch/x68k/stand/installboot/installboot.c
144
&& label.d_partitions[part].p_fstype != FS_BSDLFS)
sys/arch/x68k/stand/installboot/installboot.c
146
if ((label.d_partitions[part].p_offset * blocksize < 32768) &&
sys/arch/x68k/stand/installboot/installboot.c
147
label.d_partitions[part].p_offset != 0)
sys/arch/x68k/stand/installboot/installboot.c
153
else if (label.d_partitions[part].p_offset == 0) {
sys/arch/x68k/stand/installboot/installboot.c
161
memcpy(&label, lp, sizeof(struct disklabel));
sys/arch/x68k/stand/installboot/installboot.c
165
memset(&label, 0, sizeof(struct disklabel));
sys/arch/x68k/stand/installboot/installboot.c
223
memcpy(bootblock + LABELBYTEOFFSET, &label, sizeof(label));
sys/arch/x68k/stand/installboot/installboot.c
59
struct disklabel label;
sys/arch/x68k/stand/libsa/sdcd.c
163
struct disklabel *label;
sys/arch/x68k/stand/libsa/sdcd.c
184
label = (void *)(buffer + LABELOFFSET);
sys/arch/x68k/stand/libsa/sdcd.c
185
if (label->d_magic == DISKMAGIC &&
sys/arch/x68k/stand/libsa/sdcd.c
186
label->d_magic2 == DISKMAGIC) {
sys/arch/x68k/stand/libsa/sdcd.c
187
for (i = 0; i < label->d_npartitions; i++) {
sys/arch/x68k/stand/libsa/sdcd.c
188
partitions[i].start = label->d_partitions[i].p_offset;
sys/arch/x68k/stand/libsa/sdcd.c
189
partitions[i].size = label->d_partitions[i].p_size;
sys/arch/x68k/stand/libsa/sdcd.c
191
current_npart = label->d_npartitions;
sys/arch/x68k/stand/mboot/mboot.c
59
long *label = (void*) 0x3000;
sys/arch/x68k/stand/mboot/mboot.c
60
if (IOCS_S_READ(0, 1, scsiid, size, label) < 0) {
sys/arch/x68k/stand/mboot/mboot.c
64
if (label[0] != 0x58363853 ||
sys/arch/x68k/stand/mboot/mboot.c
65
label[1] != 0x43534931) {
sys/arch/x68k/stand/mboot/mboot.c
72
struct cpu_disklabel *label = (void*) 0x3000;
sys/arch/x68k/stand/mboot/mboot.c
76
if (IOCS_S_READ(2<<(2-size), size?2:1, scsiid, size, label) < 0) {
sys/arch/x68k/stand/mboot/mboot.c
80
t = label->dosparts[0].dp_typname;
sys/arch/x68k/stand/mboot/mboot.c
87
if (label->dosparts[i].dp_flag == PART_BOOTABLE)
sys/arch/x68k/stand/mboot/mboot.c
89
else if (label->dosparts[i].dp_flag == PART_INUSE)
sys/arch/x68k/stand/mboot/mboot.c
95
unsigned int start = label->dosparts[i].dp_start;
sys/arch/x68k/stand/newdisk/newdisk.c
123
if (ioctl(fd, DIOCGDINFO, &label) < 0)
sys/arch/x68k/stand/newdisk/newdisk.c
126
if (label.d_secsize != 512)
sys/arch/x68k/stand/newdisk/newdisk.c
131
label.d_secperunit);
sys/arch/x68k/stand/newdisk/newdisk.c
136
#define n label.d_secperunit
sys/arch/x68k/stand/newdisk/newdisk.c
160
#define n (label.d_secperunit/2)
sys/arch/x68k/stand/newdisk/newdisk.c
74
struct disklabel label;
sys/arch/x86/include/bootinfo.h
75
} label;
sys/arch/x86/x86/x86_autoconf.c
278
struct disklabel label;
sys/arch/x86/x86/x86_autoconf.c
302
error = VOP_IOCTL(tmpvn, DIOCGDINFO, &label, FREAD, NOCRED);
sys/arch/x86/x86/x86_autoconf.c
315
if (label.d_type == bid->label.type &&
sys/arch/x86/x86/x86_autoconf.c
316
label.d_checksum == bid->label.checksum &&
sys/arch/x86/x86/x86_autoconf.c
317
strncmp(label.d_packname, bid->label.packname, 16) == 0)
sys/arch/zaurus/dev/wm8731_zaudio.c
784
strlcpy(di->label.name, AudioNspeaker,
sys/arch/zaurus/dev/wm8731_zaudio.c
785
sizeof(di->label.name));
sys/arch/zaurus/dev/wm8731_zaudio.c
797
strlcpy(di->label.name, AudioNmute, sizeof(di->label.name));
sys/arch/zaurus/dev/wm8731_zaudio.c
799
strlcpy(di->un.e.member[0].label.name, AudioNon,
sys/arch/zaurus/dev/wm8731_zaudio.c
800
sizeof(di->un.e.member[0].label.name));
sys/arch/zaurus/dev/wm8731_zaudio.c
802
strlcpy(di->un.e.member[1].label.name, AudioNoff,
sys/arch/zaurus/dev/wm8731_zaudio.c
803
sizeof(di->un.e.member[1].label.name));
sys/arch/zaurus/dev/wm8731_zaudio.c
812
strlcpy(di->label.name, AudioNmicrophone,
sys/arch/zaurus/dev/wm8731_zaudio.c
813
sizeof(di->label.name));
sys/arch/zaurus/dev/wm8731_zaudio.c
831
strlcpy(di->label.name, AudioNsource, sizeof(di->label.name));
sys/arch/zaurus/dev/wm8731_zaudio.c
833
strlcpy(di->un.e.member[0].label.name, AudioNmicrophone,
sys/arch/zaurus/dev/wm8731_zaudio.c
834
sizeof(di->un.e.member[0].label.name));
sys/arch/zaurus/dev/wm8731_zaudio.c
843
strlcpy(di->label.name, AudioCoutputs, sizeof(di->label.name));
sys/arch/zaurus/dev/wm8731_zaudio.c
851
strlcpy(di->label.name, AudioCinputs, sizeof(di->label.name));
sys/arch/zaurus/dev/wm8731_zaudio.c
859
strlcpy(di->label.name, AudioCinputs, sizeof(di->label.name));
sys/arch/zaurus/dev/wm8750_zaudio.c
881
strlcpy(di->label.name, AudioNspeaker, sizeof(di->label.name));
sys/arch/zaurus/dev/wm8750_zaudio.c
899
strlcpy(di->label.name, AudioNheadphone,
sys/arch/zaurus/dev/wm8750_zaudio.c
900
sizeof(di->label.name));
sys/arch/zaurus/dev/wm8750_zaudio.c
912
strlcpy(di->label.name, AudioNmute, sizeof(di->label.name));
sys/arch/zaurus/dev/wm8750_zaudio.c
914
strlcpy(di->un.e.member[0].label.name, AudioNon,
sys/arch/zaurus/dev/wm8750_zaudio.c
915
sizeof(di->un.e.member[0].label.name));
sys/arch/zaurus/dev/wm8750_zaudio.c
917
strlcpy(di->un.e.member[1].label.name, AudioNoff,
sys/arch/zaurus/dev/wm8750_zaudio.c
918
sizeof(di->un.e.member[1].label.name));
sys/arch/zaurus/dev/wm8750_zaudio.c
927
strlcpy(di->label.name, AudioNmicrophone,
sys/arch/zaurus/dev/wm8750_zaudio.c
928
sizeof(di->label.name));
sys/arch/zaurus/dev/wm8750_zaudio.c
946
strlcpy(di->label.name, AudioNsource, sizeof(di->label.name));
sys/arch/zaurus/dev/wm8750_zaudio.c
948
strlcpy(di->un.e.member[0].label.name, AudioNmicrophone,
sys/arch/zaurus/dev/wm8750_zaudio.c
949
sizeof(di->un.e.member[0].label.name));
sys/arch/zaurus/dev/wm8750_zaudio.c
958
strlcpy(di->label.name, AudioCoutputs, sizeof(di->label.name));
sys/arch/zaurus/dev/wm8750_zaudio.c
966
strlcpy(di->label.name, AudioCinputs, sizeof(di->label.name));
sys/arch/zaurus/dev/wm8750_zaudio.c
974
strlcpy(di->label.name, AudioCinputs, sizeof(di->label.name));
sys/arch/zaurus/include/bootinfo.h
55
} label;
sys/arch/zaurus/stand/zboot/diskprobe.c
421
bios_getdisklabel(bios_diskinfo_t *bdi, struct disklabel *label)
sys/arch/zaurus/stand/zboot/diskprobe.c
441
msg = getdisklabel(buf, label);
sys/arch/zaurus/stand/zboot/unixdev.c
125
bi_disk.label.type = dip->disklabel.d_type;
sys/arch/zaurus/stand/zboot/unixdev.c
126
memcpy(bi_disk.label.packname, dip->disklabel.d_packname, 16);
sys/arch/zaurus/stand/zboot/unixdev.c
127
bi_disk.label.checksum = dip->disklabel.d_checksum;
sys/arch/zaurus/zaurus/autoconf.c
112
error = VOP_IOCTL(tmpvn, DIOCGDINFO, &label, FREAD, NOCRED);
sys/arch/zaurus/zaurus/autoconf.c
125
if (label.d_type == bid->label.type &&
sys/arch/zaurus/zaurus/autoconf.c
126
label.d_checksum == bid->label.checksum &&
sys/arch/zaurus/zaurus/autoconf.c
127
strncmp(label.d_packname, bid->label.packname, 16) == 0)
sys/arch/zaurus/zaurus/autoconf.c
94
struct disklabel label;
sys/compat/linux/arch/i386/linux_machdep.c
789
struct disklabel label;
sys/compat/linux/arch/i386/linux_machdep.c
918
error = ioctlf(fp, DIOCGDINFO, (void *)&label);
sys/compat/linux/arch/i386/linux_machdep.c
931
realtotal = label.d_ntracks * label.d_nsectors *
sys/compat/linux/arch/i386/linux_machdep.c
932
label.d_ncylinders;
sys/compat/linux/arch/i386/linux_machdep.c
936
heads = label.d_ntracks;
sys/compat/linux/arch/i386/linux_machdep.c
937
cylinders = label.d_ncylinders;
sys/compat/linux/arch/i386/linux_machdep.c
938
sectors = label.d_nsectors;
sys/compat/linux/common/linux_blkio.c
100
error = ioctlf(fp, DIOCGDINFO, &label);
sys/compat/linux/common/linux_blkio.c
103
error = copyout(&label.d_secsize, SCARG(uap, data),
sys/compat/linux/common/linux_blkio.c
104
sizeof label.d_secsize);
sys/compat/linux/common/linux_blkio.c
72
struct disklabel label;
sys/compat/linux/common/linux_blkio.c
90
error = ioctlf(fp, DIOCGDINFO, &label);
sys/compat/linux/common/linux_blkio.c
93
size = label.d_nsectors * label.d_ntracks *
sys/compat/linux/common/linux_blkio.c
94
label.d_ncylinders;
sys/compat/linux/common/linux_hdio.c
110
error = ioctlf(fp, DIOCGDINFO, &label);
sys/compat/linux/common/linux_hdio.c
118
hdg.heads = label.d_ntracks;
sys/compat/linux/common/linux_hdio.c
119
hdg.cylinders = label.d_ncylinders;
sys/compat/linux/common/linux_hdio.c
120
hdg.sectors = label.d_nsectors;
sys/compat/linux/common/linux_hdio.c
129
error = ioctlf(fp, DIOCGDINFO, &label);
sys/compat/linux/common/linux_hdio.c
137
hdg_big.heads = label.d_ntracks;
sys/compat/linux/common/linux_hdio.c
138
hdg_big.cylinders = label.d_ncylinders;
sys/compat/linux/common/linux_hdio.c
139
hdg_big.sectors = label.d_nsectors;
sys/compat/linux/common/linux_hdio.c
75
struct disklabel label;
sys/compat/netbsd32/netbsd32_netbsd.c
568
NETBSD32TOP_UAP(label, const char);
sys/compat/netbsd32/netbsd32_syscallargs.h
1662
syscallarg(netbsd32_charp) label;
sys/compat/netbsd32/netbsd32_systrace_args.c
2242
uarg[0] = (intptr_t) SCARG(p, label).i32; /* netbsd32_charp */
sys/compat/ossaudio/ossaudio.c
1005
if (strcmp(dp->name, mi.label.name) == 0)
sys/compat/ossaudio/ossaudio.c
1008
mlen = strlen(mi.label.name);
sys/compat/ossaudio/ossaudio.c
1010
&& mi.label.name[mlen-dlen-1] == '.'
sys/compat/ossaudio/ossaudio.c
1011
&& strcmp(dp->name, mi.label.name + mlen - dlen) == 0)
sys/compat/ossaudio/ossaudio.c
1020
strncpy(di->names[i], mi.label.name,
sys/compat/ossaudio/ossaudio.c
1030
if (strcmp(mi.label.name, AudioNsource) != 0)
sys/compat/ossaudio/ossaudio.c
1037
&mi.un.e.member[j].label,
sys/compat/ossaudio/ossaudio.c
1047
&mi.un.s.member[j].label,
sys/compat/ossaudio/ossaudio.c
67
static int opaque_to_enum(struct audiodevinfo *di, audio_mixer_name_t *label, int opq);
sys/compat/ossaudio/ossaudio.c
881
opaque_to_enum(struct audiodevinfo *di, audio_mixer_name_t *label, int opq)
sys/compat/ossaudio/ossaudio.c
889
if (o == -1 && label != NULL &&
sys/compat/ossaudio/ossaudio.c
890
!strncmp(di->names[i], label->name, sizeof di->names[i])) {
sys/compat/sunos/sunos_ioctl.c
887
struct disklabel label;
sys/compat/sunos/sunos_ioctl.c
889
error = (*ctl)(fp, DIOCGDINFO, &label);
sys/compat/sunos/sunos_ioctl.c
896
if (label.d_secpercyl == 0) {
sys/compat/sunos/sunos_ioctl.c
900
if (pi.pi_offset % label.d_secpercyl != 0) {
sys/compat/sunos/sunos_ioctl.c
906
datapart->sdkp_cyloffset = pi.pi_offset / label.d_secpercyl;
sys/compat/sunos32/sunos32_ioctl.c
925
struct disklabel label;
sys/compat/sunos32/sunos32_ioctl.c
931
error = sunos32_do_ioctl(fd, DIOCGDINFO, &label, l);
sys/compat/sunos32/sunos32_ioctl.c
935
if (label.d_secpercyl == 0)
sys/compat/sunos32/sunos32_ioctl.c
937
if (pi.pi_offset % label.d_secpercyl != 0)
sys/compat/sunos32/sunos32_ioctl.c
941
datapart->sdkp_cyloffset = pi.pi_offset / label.d_secpercyl;
sys/dev/audio/audio.c
1253
if (strcmp(mi.label.name, AudioCinputs) == 0)
sys/dev/audio/audio.c
1255
if (strcmp(mi.label.name, AudioCmonitor) == 0)
sys/dev/audio/audio.c
1257
if (strcmp(mi.label.name, AudioCoutputs) == 0)
sys/dev/audio/audio.c
1259
if (strcmp(mi.label.name, AudioCrecord) == 0)
sys/dev/audio/audio.c
1290
if (strcmp(mi.label.name, AudioNmaster) == 0
sys/dev/audio/audio.c
1293
if (strcmp(mi.label.name, AudioNsource) == 0
sys/dev/audio/audio.c
1298
if (strcmp(mi.un.e.member[i].label.name,
sys/dev/audio/audio.c
1306
if (strcmp(mi.label.name, AudioNdac) == 0 &&
sys/dev/audio/audio.c
1310
if (strcmp(mi.label.name, AudioNmonitor) == 0)
sys/dev/audio/audio.c
1313
if (strcmp(mi.label.name, AudioNmaster) == 0)
sys/dev/audio/audio.c
1315
if (strcmp(mi.label.name, AudioNselect) == 0)
sys/dev/audio/audio.c
1323
if (strcmp(mi.label.name, AudioNmaster) == 0) {
sys/dev/audio/audio.c
1328
if (strcmp(mi.label.name, AudioNrecord) == 0) {
sys/dev/audio/audio.c
1332
if (strcmp(mi.label.name, AudioNvolume) == 0) {
sys/dev/audio/audio.c
1337
if (strcmp(mi.label.name, AudioNsource) == 0) {
sys/dev/audio/audio.c
1341
if (strcmp(mi.un.e.member[i].label.name,
sys/dev/audio/audio.c
8646
if (mi.mixer_class == class && strcmp(mi.label.name, name) == 0)
sys/dev/audio/audio.c
8668
if (strcmp(mi->un.e.member[j].label.name,
sys/dev/audio/audio.c
8675
au_portof(sc, mi->un.e.member[j].label.name,
sys/dev/audio/audio.c
8685
if (strcmp(mi->un.s.member[j].label.name,
sys/dev/audio/audio.c
8692
au_portof(sc, mi->un.s.member[j].label.name,
sys/dev/bluetooth/btsco.c
916
strcpy(di->label.name, AudioNspeaker);
sys/dev/bluetooth/btsco.c
926
strcpy(di->label.name, AudioNmicrophone);
sys/dev/bluetooth/btsco.c
936
strcpy(di->label.name, AudioCinputs);
sys/dev/ebus/cs4231_ebus.c
273
cs4231_ebus_regdump(const char *label, struct cs4231_ebus_softc *ebsc)
sys/dev/ebus/cs4231_ebus.c
277
printf("cs4231regdump(%s): regs:", label);
sys/dev/fdt/fdt_boot.c
473
const char *label = fdtbus_get_string(chosen, "netbsd,gpt-label");
sys/dev/fdt/fdt_boot.c
474
if (label == NULL || *label == '\0')
sys/dev/fdt/fdt_boot.c
477
device_t dv = dkwedge_find_by_wname(label);
sys/dev/fdt/gpioleds.c
103
if (led_attach(label, pin, gpioleds_get, gpioleds_set) == NULL)
sys/dev/fdt/gpioleds.c
106
aprint_normal(" %s", label);
sys/dev/fdt/gpioleds.c
85
char label[64];
sys/dev/fdt/gpioleds.c
93
if (OF_getprop(child, "label", label, sizeof(label)) <= 0 &&
sys/dev/fdt/gpioleds.c
94
OF_getprop(child, "name", label, sizeof(label)) <= 0)
sys/dev/hdaudio/hdafg.c
2883
strcpy(mx[index].mx_di.label.name, AudioCoutputs);
sys/dev/hdaudio/hdafg.c
2886
strcpy(mx[index].mx_di.label.name, AudioCinputs);
sys/dev/hdaudio/hdafg.c
2889
strcpy(mx[index].mx_di.label.name, AudioCrecord);
sys/dev/hdaudio/hdafg.c
2906
strcpy(mx[index].mx_di.label.name, AudioNmaster);
sys/dev/hdaudio/hdafg.c
2909
mx[index].mx_di.label.name);
sys/dev/hdaudio/hdafg.c
2923
strcpy(mx[index].mx_di.label.name, AudioNmaster "." AudioNmute);
sys/dev/hdaudio/hdafg.c
2925
strcpy(mx[index].mx_di.un.e.member[0].label.name, AudioNoff);
sys/dev/hdaudio/hdafg.c
2927
strcpy(mx[index].mx_di.un.e.member[1].label.name, AudioNon);
sys/dev/hdaudio/hdafg.c
2966
snprintf(mx[index].mx_di.label.name,
sys/dev/hdaudio/hdafg.c
2967
sizeof(mx[index].mx_di.label.name),
sys/dev/hdaudio/hdafg.c
2972
strcpy(mx[index].mx_di.label.name,
sys/dev/hdaudio/hdafg.c
2983
mx[index].mx_di.label.name, index);
sys/dev/hdaudio/hdafg.c
2991
snprintf(mx[index].mx_di.label.name,
sys/dev/hdaudio/hdafg.c
2992
sizeof(mx[index].mx_di.label.name),
sys/dev/hdaudio/hdafg.c
2994
mx[index - 1].mx_di.label.name);
sys/dev/hdaudio/hdafg.c
2997
snprintf(mx[index].mx_di.label.name,
sys/dev/hdaudio/hdafg.c
2998
sizeof(mx[index].mx_di.label.name),
sys/dev/hdaudio/hdafg.c
3003
snprintf(mx[index].mx_di.label.name,
sys/dev/hdaudio/hdafg.c
3004
sizeof(mx[index].mx_di.label.name),
sys/dev/hdaudio/hdafg.c
3014
strcpy(mx[index].mx_di.un.e.member[0].label.name, AudioNoff);
sys/dev/hdaudio/hdafg.c
3016
strcpy(mx[index].mx_di.un.e.member[1].label.name, AudioNon);
sys/dev/hdaudio/hdafg.c
3019
mx[index].mx_di.label.name, index);
sys/dev/hdaudio/hdafg.c
3031
strcpy(mx[index].mx_di.label.name, "dacsel"); /* AudioNselect */
sys/dev/hdaudio/hdafg.c
3039
snprintf(mx[index].mx_di.un.s.member[j].label.name,
sys/dev/hdaudio/hdafg.c
3040
sizeof(mx[index].mx_di.un.s.member[j].label.name),
sys/dev/hdaudio/hdafg.c
3055
strcpy(mx[index].mx_di.label.name, AudioNsource);
sys/dev/hdaudio/hdafg.c
3063
snprintf(mx[index].mx_di.un.s.member[j].label.name,
sys/dev/hdaudio/hdafg.c
3064
sizeof(mx[index].mx_di.un.s.member[j].label.name),
sys/dev/i2c/es8316ac.c
442
strcpy(di->label.name, mix->name);
sys/dev/i2c/es8316ac.c
471
strcpy(di->un.e.member[0].label.name, AudioNoff);
sys/dev/i2c/es8316ac.c
473
strcpy(di->un.e.member[1].label.name, AudioNon);
sys/dev/ic/ac97.c
1697
strcpy(dip->label.name, name);
sys/dev/ic/am7930.c
611
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/ic/am7930.c
619
strcpy(dip->label.name, AudioNspeaker);
sys/dev/ic/am7930.c
627
strcpy(dip->label.name, AudioNheadphone);
sys/dev/ic/am7930.c
635
strcpy(dip->label.name, AudioNmonitor);
sys/dev/ic/am7930.c
643
strcpy(dip->label.name, AudioNsource);
sys/dev/ic/am7930.c
645
strcpy(dip->un.e.member[0].label.name, AudioNmicrophone);
sys/dev/ic/am7930.c
652
strcpy(dip->label.name, AudioNoutput);
sys/dev/ic/am7930.c
654
strcpy(dip->un.e.member[0].label.name, AudioNspeaker);
sys/dev/ic/am7930.c
656
strcpy(dip->un.e.member[1].label.name, AudioNheadphone);
sys/dev/ic/am7930.c
664
strcpy(dip->label.name, AudioNmute);
sys/dev/ic/am7930.c
666
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/ic/am7930.c
668
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/ic/am7930.c
675
strcpy(dip->label.name, AudioCinputs);
sys/dev/ic/am7930.c
681
strcpy(dip->label.name, AudioCoutputs);
sys/dev/ic/am7930.c
687
strcpy(dip->label.name, AudioCrecord);
sys/dev/ic/am7930.c
693
strcpy(dip->label.name, AudioCmonitor);
sys/dev/ic/am7930.c
700
DPRINTF(("AUDIO_MIXER_DEVINFO: name=%s\n", dip->label.name));
sys/dev/ic/anx_dp.c
858
strcpy(di->label.name, AudioCoutputs);
sys/dev/ic/anx_dp.c
865
strcpy(di->label.name, AudioCinputs);
sys/dev/ic/anx_dp.c
872
strcpy(di->label.name, AudioNmaster);
sys/dev/ic/anx_dp.c
882
strcpy(di->label.name, AudioNdac);
sys/dev/ic/arcofi.c
907
strlcpy(md->label.name, AudioNline,
sys/dev/ic/arcofi.c
908
sizeof md->label.name);
sys/dev/ic/arcofi.c
915
strlcpy(md->label.name, AudioNline,
sys/dev/ic/arcofi.c
916
sizeof md->label.name);
sys/dev/ic/arcofi.c
923
strlcpy(md->label.name, AudioNspeaker,
sys/dev/ic/arcofi.c
924
sizeof md->label.name);
sys/dev/ic/arcofi.c
951
strlcpy(md->label.name, AudioNmute, sizeof md->label.name);
sys/dev/ic/arcofi.c
953
strlcpy(md->un.e.member[0].label.name, AudioNoff,
sys/dev/ic/arcofi.c
954
sizeof md->un.e.member[0].label.name);
sys/dev/ic/arcofi.c
956
strlcpy(md->un.e.member[1].label.name, AudioNon,
sys/dev/ic/arcofi.c
957
sizeof md->un.e.member[1].label.name);
sys/dev/ic/arcofi.c
967
strlcpy(md->label.name, AudioCinputs,
sys/dev/ic/arcofi.c
968
sizeof md->label.name);
sys/dev/ic/arcofi.c
975
strlcpy(md->label.name, AudioCoutputs,
sys/dev/ic/arcofi.c
976
sizeof md->label.name);
sys/dev/ic/cissreg.h
214
u_int8_t label[64];
sys/dev/ic/cs4231.c
440
strcpy(dip->label.name, AudioNdac);
sys/dev/ic/cs4231.c
450
strcpy(dip->label.name, AudioNline);
sys/dev/ic/cs4231.c
460
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/ic/cs4231.c
470
strcpy(dip->label.name, AudioNcd);
sys/dev/ic/cs4231.c
481
strcpy(dip->label.name, AudioNmonitor);
sys/dev/ic/cs4231.c
490
strcpy(dip->label.name, AudioNmaster);
sys/dev/ic/cs4231.c
501
strcpy(dip->label.name, AudioNmono);
sys/dev/ic/cs4231.c
504
strcpy(dip->un.e.member[0].label.name, AudioNon);
sys/dev/ic/cs4231.c
506
strcpy(dip->un.e.member[1].label.name, AudioNoff);
sys/dev/ic/cs4231.c
544
strcpy(dip->label.name, AudioNmute);
sys/dev/ic/cs4231.c
546
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/ic/cs4231.c
548
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/ic/cs4231.c
557
strcpy(dip->label.name, AudioNrecord);
sys/dev/ic/cs4231.c
567
strcpy(dip->label.name, AudioNsource);
sys/dev/ic/cs4231.c
569
strcpy(dip->un.e.member[0].label.name, AudioNoutput);
sys/dev/ic/cs4231.c
571
strcpy(dip->un.e.member[1].label.name, AudioNmicrophone);
sys/dev/ic/cs4231.c
573
strcpy(dip->un.e.member[2].label.name, AudioNdac);
sys/dev/ic/cs4231.c
575
strcpy(dip->un.e.member[3].label.name, AudioNline);
sys/dev/ic/cs4231.c
583
strcpy(dip->label.name, AudioCinputs);
sys/dev/ic/cs4231.c
590
strcpy(dip->label.name, AudioCoutputs);
sys/dev/ic/cs4231.c
597
strcpy(dip->label.name, AudioCrecord);
sys/dev/ic/cs4231.c
604
DPRINTF(("AUDIO_MIXER_DEVINFO: name=%s\n", dip->label.name));
sys/dev/ic/dw_hdmi.c
796
strcpy(di->label.name, AudioCoutputs);
sys/dev/ic/dw_hdmi.c
803
strcpy(di->label.name, AudioCinputs);
sys/dev/ic/dw_hdmi.c
810
strcpy(di->label.name, AudioNmaster);
sys/dev/ic/dw_hdmi.c
820
strcpy(di->label.name, AudioNdac);
sys/dev/ic/interwave.c
1282
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/ic/interwave.c
1291
strcpy(dip->label.name, AudioNline);
sys/dev/ic/interwave.c
1300
strcpy(dip->label.name, AudioNcd);
sys/dev/ic/interwave.c
1309
strcpy(dip->label.name, AudioNline);
sys/dev/ic/interwave.c
1318
strcpy(dip->label.name, AudioNdac);
sys/dev/ic/interwave.c
1327
strcpy(dip->label.name, AudioNinput);
sys/dev/ic/interwave.c
1336
strcpy(dip->label.name, AudioNmono);
sys/dev/ic/interwave.c
1346
strcpy(dip->label.name, AudioNrecord);
sys/dev/ic/interwave.c
1356
strcpy(dip->label.name, "filter");
sys/dev/ic/interwave.c
1366
strcpy(dip->label.name, AudioNsource);
sys/dev/ic/interwave.c
1368
strcpy(dip->un.e.member[0].label.name, AudioNline);
sys/dev/ic/interwave.c
1370
strcpy(dip->un.e.member[1].label.name, "aux1");
sys/dev/ic/interwave.c
1372
strcpy(dip->un.e.member[2].label.name, AudioNmicrophone);
sys/dev/ic/interwave.c
1374
strcpy(dip->un.e.member[3].label.name, AudioNmixerout);
sys/dev/ic/interwave.c
1381
strcpy(dip->label.name, AudioCinputs);
sys/dev/ic/interwave.c
1387
strcpy(dip->label.name, AudioCoutputs);
sys/dev/ic/interwave.c
1393
strcpy(dip->label.name, AudioCrecord);
sys/dev/ic/uda1341.c
302
strlcpy(mi->label.name, AudioNspeaker,
sys/dev/ic/uda1341.c
303
sizeof(mi->label.name));
sys/dev/ic/uda1341.c
314
strlcpy(mi->label.name, AudioNbass,
sys/dev/ic/uda1341.c
315
sizeof(mi->label.name));
sys/dev/ic/uda1341.c
326
strlcpy(mi->label.name, AudioNtreble,
sys/dev/ic/uda1341.c
327
sizeof(mi->label.name));
sys/dev/ic/uda1341.c
338
strlcpy(mi->label.name, AudioNmode,
sys/dev/ic/uda1341.c
339
sizeof(mi->label.name));
sys/dev/ic/uda1341.c
346
strlcpy(mi->un.e.member[0].label.name,
sys/dev/ic/uda1341.c
347
"flat", sizeof(mi->un.e.member[0].label.name));
sys/dev/ic/uda1341.c
350
strlcpy(mi->un.e.member[1].label.name,
sys/dev/ic/uda1341.c
351
"minimum", sizeof(mi->un.e.member[1].label.name));
sys/dev/ic/uda1341.c
354
strlcpy(mi->un.e.member[2].label.name,
sys/dev/ic/uda1341.c
355
"maximum", sizeof(mi->un.e.member[2].label.name));
sys/dev/ic/uda1341.c
360
strlcpy(mi->label.name, AudioNmute,
sys/dev/ic/uda1341.c
361
sizeof(mi->label.name));
sys/dev/ic/uda1341.c
368
strlcpy(mi->un.e.member[0].label.name,
sys/dev/ic/uda1341.c
369
"off", sizeof(mi->un.e.member[0].label.name));
sys/dev/ic/uda1341.c
372
strlcpy(mi->un.e.member[1].label.name,
sys/dev/ic/uda1341.c
373
"on", sizeof(mi->un.e.member[1].label.name));
sys/dev/ic/uda1341.c
377
strlcpy(mi->label.name, "gain",
sys/dev/ic/uda1341.c
378
sizeof(mi->label.name));
sys/dev/ic/uda1341.c
385
strlcpy(mi->un.e.member[0].label.name,
sys/dev/ic/uda1341.c
386
"off", sizeof(mi->un.e.member[0].label.name));
sys/dev/ic/uda1341.c
389
strlcpy(mi->un.e.member[1].label.name,
sys/dev/ic/uda1341.c
390
"on", sizeof(mi->un.e.member[1].label.name));
sys/dev/ic/uda1341.c
394
strlcpy(mi->label.name, "deemphasis",
sys/dev/ic/uda1341.c
395
sizeof(mi->label.name));
sys/dev/ic/uda1341.c
402
strlcpy(mi->un.e.member[0].label.name,
sys/dev/ic/uda1341.c
403
"none", sizeof(mi->un.e.member[0].label.name));
sys/dev/ic/uda1341.c
406
strlcpy(mi->un.e.member[1].label.name,
sys/dev/ic/uda1341.c
407
"32KHz", sizeof(mi->un.e.member[1].label.name));
sys/dev/ic/uda1341.c
410
strlcpy(mi->un.e.member[2].label.name,
sys/dev/ic/uda1341.c
411
"44.1KHz", sizeof(mi->un.e.member[2].label.name));
sys/dev/ic/uda1341.c
414
strlcpy(mi->un.e.member[3].label.name,
sys/dev/ic/uda1341.c
415
"48KHz", sizeof(mi->un.e.member[3].label.name));
sys/dev/ic/uda1341.c
418
strlcpy(mi->un.e.member[4].label.name,
sys/dev/ic/uda1341.c
419
"auto", sizeof(mi->un.e.member[4].label.name));
sys/dev/ic/uda1341.c
428
strlcpy(mi->label.name, AudioCoutputs,
sys/dev/ic/uda1341.c
429
sizeof(mi->label.name));
sys/dev/ic/uda1341.c
432
strlcpy(mi->label.name, "inmix1",
sys/dev/ic/uda1341.c
433
sizeof(mi->label.name));
sys/dev/ic/uda1341.c
444
strlcpy(mi->label.name, "inmix2",
sys/dev/ic/uda1341.c
445
sizeof(mi->label.name));
sys/dev/ic/uda1341.c
456
strlcpy(mi->label.name, AudioNmicrophone,
sys/dev/ic/uda1341.c
457
sizeof(mi->label.name));
sys/dev/ic/uda1341.c
468
strlcpy(mi->label.name, "inmode",
sys/dev/ic/uda1341.c
469
sizeof(mi->label.name));
sys/dev/ic/uda1341.c
476
strlcpy(mi->un.e.member[0].label.name,
sys/dev/ic/uda1341.c
477
"dd", sizeof(mi->un.e.member[0].label.name));
sys/dev/ic/uda1341.c
480
strlcpy(mi->un.e.member[1].label.name,
sys/dev/ic/uda1341.c
481
"ch1", sizeof(mi->un.e.member[1].label.name));
sys/dev/ic/uda1341.c
484
strlcpy(mi->un.e.member[2].label.name,
sys/dev/ic/uda1341.c
485
"ch2", sizeof(mi->un.e.member[2].label.name));
sys/dev/ic/uda1341.c
488
strlcpy(mi->un.e.member[3].label.name,
sys/dev/ic/uda1341.c
489
"mix", sizeof(mi->un.e.member[3].label.name));
sys/dev/ic/uda1341.c
493
strlcpy(mi->label.name, "agc",
sys/dev/ic/uda1341.c
494
sizeof(mi->label.name));
sys/dev/ic/uda1341.c
501
strlcpy(mi->un.e.member[0].label.name,
sys/dev/ic/uda1341.c
502
"off", sizeof(mi->un.e.member[0].label.name));
sys/dev/ic/uda1341.c
505
strlcpy(mi->un.e.member[1].label.name,
sys/dev/ic/uda1341.c
506
"on", sizeof(mi->un.e.member[1].label.name));
sys/dev/ic/uda1341.c
510
strlcpy(mi->label.name, "agclevel",
sys/dev/ic/uda1341.c
511
sizeof(mi->label.name));
sys/dev/ic/uda1341.c
522
strlcpy(mi->label.name, "ch2gain",
sys/dev/ic/uda1341.c
523
sizeof(mi->label.name));
sys/dev/ic/uda1341.c
538
strlcpy(mi->label.name, AudioCinputs,
sys/dev/ic/uda1341.c
539
sizeof(mi->label.name));
sys/dev/isa/aria.c
1371
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/isa/aria.c
1380
strcpy(dip->label.name, AudioNline);
sys/dev/isa/aria.c
1389
strcpy(dip->label.name, AudioNcd);
sys/dev/isa/aria.c
1398
strcpy(dip->label.name, "telephone");
sys/dev/isa/aria.c
1407
strcpy(dip->label.name, AudioNdac);
sys/dev/isa/aria.c
1416
strcpy(dip->label.name, AudioNoutput);
sys/dev/isa/aria.c
1448
strcpy(dip->label.name, AudioNmute);
sys/dev/isa/aria.c
1450
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/isa/aria.c
1452
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/isa/aria.c
1460
strcpy(dip->label.name, AudioNvolume);
sys/dev/isa/aria.c
1468
strcpy(dip->label.name, AudioNtreble);
sys/dev/isa/aria.c
1476
strcpy(dip->label.name, AudioNbass);
sys/dev/isa/aria.c
1484
strcpy(dip->label.name, AudioNoutput);
sys/dev/isa/aria.c
1492
strcpy(dip->label.name, AudioNsource);
sys/dev/isa/aria.c
1494
strcpy(dip->un.e.member[0].label.name, AudioNoutput);
sys/dev/isa/aria.c
1496
strcpy(dip->un.e.member[1].label.name, AudioNmicrophone);
sys/dev/isa/aria.c
1498
strcpy(dip->un.e.member[2].label.name, AudioNdac);
sys/dev/isa/aria.c
1500
strcpy(dip->un.e.member[3].label.name, AudioNline);
sys/dev/isa/aria.c
1502
strcpy(dip->un.e.member[4].label.name, AudioNcd);
sys/dev/isa/aria.c
1504
strcpy(dip->un.e.member[5].label.name, "telephone");
sys/dev/isa/aria.c
1511
strcpy(dip->label.name, AudioCinputs);
sys/dev/isa/aria.c
1517
strcpy(dip->label.name, AudioCoutputs);
sys/dev/isa/aria.c
1523
strcpy(dip->label.name, AudioCrecord);
sys/dev/isa/aria.c
1529
strcpy(dip->label.name, AudioCequalization);
sys/dev/isa/ess.c
1872
strcpy(dip->label.name, AudioNdac);
sys/dev/isa/ess.c
1885
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/isa/ess.c
1894
strcpy(dip->label.name, AudioNline);
sys/dev/isa/ess.c
1903
strcpy(dip->label.name, AudioNfmsynth);
sys/dev/isa/ess.c
1912
strcpy(dip->label.name, AudioNcd);
sys/dev/isa/ess.c
1921
strcpy(dip->label.name, "auxb");
sys/dev/isa/ess.c
1930
strcpy(dip->label.name, AudioCinputs);
sys/dev/isa/ess.c
1937
strcpy(dip->label.name, AudioNmaster);
sys/dev/isa/ess.c
1946
strcpy(dip->label.name, "pc_speaker");
sys/dev/isa/ess.c
1955
strcpy(dip->label.name, AudioCoutputs);
sys/dev/isa/ess.c
1962
strcpy(dip->label.name, AudioNrecord);
sys/dev/isa/ess.c
1971
strcpy(dip->label.name, AudioNsource);
sys/dev/isa/ess.c
1984
strcpy(dip->un.e.member[0].label.name, AudioNmicrophone);
sys/dev/isa/ess.c
1986
strcpy(dip->un.e.member[1].label.name, AudioNline);
sys/dev/isa/ess.c
1988
strcpy(dip->un.e.member[2].label.name, AudioNcd);
sys/dev/isa/ess.c
1990
strcpy(dip->un.e.member[3].label.name, AudioNmixerout);
sys/dev/isa/ess.c
1995
strcpy(dip->un.s.member[0].label.name, AudioNdac);
sys/dev/isa/ess.c
1997
strcpy(dip->un.s.member[1].label.name, AudioNmicrophone);
sys/dev/isa/ess.c
1999
strcpy(dip->un.s.member[2].label.name, AudioNline);
sys/dev/isa/ess.c
2001
strcpy(dip->un.s.member[3].label.name, AudioNfmsynth);
sys/dev/isa/ess.c
2003
strcpy(dip->un.s.member[4].label.name, AudioNcd);
sys/dev/isa/ess.c
2005
strcpy(dip->un.s.member[5].label.name, "auxb");
sys/dev/isa/ess.c
2013
strcpy(dip->label.name, AudioCrecord);
sys/dev/isa/ess.c
2019
strcpy(dip->label.name, AudioNmute);
sys/dev/isa/ess.c
2023
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/isa/ess.c
2025
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/isa/ess.c
2032
strcpy(dip->label.name, AudioCmonitor);
sys/dev/isa/ess.c
2044
strcpy(dip->label.name, AudioNspatial);
sys/dev/isa/ess.c
2054
strcpy(dip->label.name, "enable");
sys/dev/isa/ess.c
2057
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/isa/ess.c
2059
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/isa/ess.c
2072
strcpy(dip->label.name, AudioNdac);
sys/dev/isa/ess.c
2081
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/isa/ess.c
2090
strcpy(dip->label.name, AudioNline);
sys/dev/isa/ess.c
2099
strcpy(dip->label.name, AudioNfmsynth);
sys/dev/isa/ess.c
2108
strcpy(dip->label.name, AudioNcd);
sys/dev/isa/ess.c
2117
strcpy(dip->label.name, "auxb");
sys/dev/isa/ess.c
2127
strcpy(dip->label.name, AudioNpreamp);
sys/dev/isa/ess.c
2130
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/isa/ess.c
2132
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/isa/gus.c
3644
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/isa/gus.c
3655
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/isa/gus.c
3665
strcpy(dip->label.name, AudioNdac);
sys/dev/isa/gus.c
3675
strcpy(dip->label.name, AudioNline);
sys/dev/isa/gus.c
3685
strcpy(dip->label.name, AudioNcd);
sys/dev/isa/gus.c
3696
strcpy(dip->label.name, AudioNmonitor);
sys/dev/isa/gus.c
3705
strcpy(dip->label.name, AudioNoutput);
sys/dev/isa/gus.c
3715
strcpy(dip->label.name, AudioNmaster);
sys/dev/isa/gus.c
3761
strcpy(dip->label.name, AudioNmute);
sys/dev/isa/gus.c
3763
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/isa/gus.c
3765
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/isa/gus.c
3774
strcpy(dip->label.name, AudioNrecord);
sys/dev/isa/gus.c
3784
strcpy(dip->label.name, AudioNsource);
sys/dev/isa/gus.c
3786
strcpy(dip->un.e.member[0].label.name, AudioNoutput);
sys/dev/isa/gus.c
3788
strcpy(dip->un.e.member[1].label.name, AudioNmicrophone);
sys/dev/isa/gus.c
3790
strcpy(dip->un.e.member[2].label.name, AudioNdac);
sys/dev/isa/gus.c
3792
strcpy(dip->un.e.member[3].label.name, AudioNline);
sys/dev/isa/gus.c
3800
strcpy(dip->label.name, AudioCinputs);
sys/dev/isa/gus.c
3807
strcpy(dip->label.name, AudioCoutputs);
sys/dev/isa/gus.c
3814
strcpy(dip->label.name, AudioCmonitor);
sys/dev/isa/gus.c
3821
strcpy(dip->label.name, AudioCrecord);
sys/dev/isa/gus.c
3828
DPRINTF(("AUDIO_MIXER_DEVINFO: name=%s\n", dip->label.name));
sys/dev/isa/gus.c
3849
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/isa/gus.c
3859
strcpy(dip->label.name, AudioNline);
sys/dev/isa/gus.c
3869
strcpy(dip->label.name, AudioNcd);
sys/dev/isa/gus.c
3879
strcpy(dip->label.name, AudioNdac);
sys/dev/isa/gus.c
3889
strcpy(dip->label.name, AudioNmaster);
sys/dev/isa/gus.c
3929
strcpy(dip->label.name, AudioNmute);
sys/dev/isa/gus.c
3931
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/isa/gus.c
3933
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/isa/gus.c
3941
strcpy(dip->label.name, AudioNsource);
sys/dev/isa/gus.c
3943
strcpy(dip->un.e.member[0].label.name, AudioNoutput);
sys/dev/isa/gus.c
3951
strcpy(dip->label.name, AudioCinputs);
sys/dev/isa/gus.c
3958
strcpy(dip->label.name, AudioCoutputs);
sys/dev/isa/gus.c
3965
strcpy(dip->label.name, AudioCrecord);
sys/dev/isa/gus.c
3972
DPRINTF(("AUDIO_MIXER_DEVINFO: name=%s\n", dip->label.name));
sys/dev/isa/sbdsp.c
2165
strcpy(dip->label.name, AudioNmaster);
sys/dev/isa/sbdsp.c
2174
strcpy(dip->label.name, AudioNfmsynth);
sys/dev/isa/sbdsp.c
2183
strcpy(dip->label.name, AudioNcd);
sys/dev/isa/sbdsp.c
2192
strcpy(dip->label.name, AudioNdac);
sys/dev/isa/sbdsp.c
2200
strcpy(dip->label.name, AudioCoutputs);
sys/dev/isa/sbdsp.c
2213
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/isa/sbdsp.c
2223
strcpy(dip->label.name, AudioNline);
sys/dev/isa/sbdsp.c
2231
strcpy(dip->label.name, AudioNsource);
sys/dev/isa/sbdsp.c
2235
strcpy(dip->un.s.member[0].label.name, AudioNmicrophone);
sys/dev/isa/sbdsp.c
2237
strcpy(dip->un.s.member[1].label.name, AudioNcd);
sys/dev/isa/sbdsp.c
2239
strcpy(dip->un.s.member[2].label.name, AudioNline);
sys/dev/isa/sbdsp.c
2241
strcpy(dip->un.s.member[3].label.name, AudioNfmsynth);
sys/dev/isa/sbdsp.c
2246
strcpy(dip->un.e.member[0].label.name, AudioNmicrophone);
sys/dev/isa/sbdsp.c
2248
strcpy(dip->un.e.member[1].label.name, AudioNcd);
sys/dev/isa/sbdsp.c
2250
strcpy(dip->un.e.member[2].label.name, AudioNline);
sys/dev/isa/sbdsp.c
2257
strcpy(dip->label.name, AudioNbass);
sys/dev/isa/sbdsp.c
2267
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/isa/sbdsp.c
2269
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/isa/sbdsp.c
2276
strcpy(dip->label.name, AudioNtreble);
sys/dev/isa/sbdsp.c
2286
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/isa/sbdsp.c
2288
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/isa/sbdsp.c
2297
strcpy(dip->label.name, AudioCrecord);
sys/dev/isa/sbdsp.c
2304
strcpy(dip->label.name, AudioCinputs);
sys/dev/isa/sbdsp.c
2317
strcpy(dip->label.name, "pc_speaker");
sys/dev/isa/sbdsp.c
2326
strcpy(dip->label.name, AudioNinput);
sys/dev/isa/sbdsp.c
2335
strcpy(dip->label.name, AudioNoutput);
sys/dev/isa/sbdsp.c
2344
strcpy(dip->label.name, "agc");
sys/dev/isa/sbdsp.c
2346
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/isa/sbdsp.c
2348
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/isa/sbdsp.c
2356
strcpy(dip->label.name, AudioCequalization);
sys/dev/isa/sbdsp.c
2403
strcpy(dip->label.name, AudioNswap);
sys/dev/isa/sbdsp.c
2423
strcpy(dip->label.name, AudioNmute);
sys/dev/isa/sbdsp.c
2427
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/isa/sbdsp.c
2429
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/isa/wss.c
238
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/isa/wss.c
248
strcpy(dip->label.name, AudioNcd);
sys/dev/isa/wss.c
258
strcpy(dip->label.name, AudioNdac);
sys/dev/isa/wss.c
268
strcpy(dip->label.name, AudioNrecord);
sys/dev/isa/wss.c
278
strcpy(dip->label.name, AudioNmonitor);
sys/dev/isa/wss.c
287
strcpy(dip->label.name, AudioCinputs);
sys/dev/isa/wss.c
294
strcpy(dip->label.name, AudioCmonitor);
sys/dev/isa/wss.c
301
strcpy(dip->label.name, AudioCrecord);
sys/dev/isa/wss.c
331
strcpy(dip->label.name, AudioNmute);
sys/dev/isa/wss.c
333
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/isa/wss.c
335
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/isa/wss.c
344
strcpy(dip->label.name, AudioNsource);
sys/dev/isa/wss.c
346
strcpy(dip->un.e.member[0].label.name, AudioNmicrophone);
sys/dev/isa/wss.c
348
strcpy(dip->un.e.member[1].label.name, AudioNcd);
sys/dev/isa/wss.c
350
strcpy(dip->un.e.member[2].label.name, AudioNdac);
sys/dev/isa/wss.c
358
DPRINTF(("AUDIO_MIXER_DEVINFO: name=%s\n", dip->label.name));
sys/dev/isa/ym.c
1000
strcpy(dip->un.e.member[2].label.name, AudioNnosave);
sys/dev/isa/ym.c
1008
strcpy(dip->label.name, AudioNtimeout);
sys/dev/isa/ym.c
837
strcpy(dip->label.name,
sys/dev/isa/ym.c
856
strcpy(dip->label.name,
sys/dev/isa/ym.c
890
strcpy(dip->label.name, AudioNmute);
sys/dev/isa/ym.c
892
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/isa/ym.c
894
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/isa/ym.c
903
strcpy(dip->label.name, AudioNmaster);
sys/dev/isa/ym.c
920
strcpy(dip->label.name, AudioNrecord);
sys/dev/isa/ym.c
930
strcpy(dip->label.name, AudioNsource);
sys/dev/isa/ym.c
932
strcpy(dip->un.e.member[0].label.name, AudioNmicrophone);
sys/dev/isa/ym.c
934
strcpy(dip->un.e.member[1].label.name, AudioNline);
sys/dev/isa/ym.c
936
strcpy(dip->un.e.member[2].label.name, AudioNdac);
sys/dev/isa/ym.c
938
strcpy(dip->un.e.member[3].label.name, AudioNcd);
sys/dev/isa/ym.c
946
strcpy(dip->label.name, AudioNmode);
sys/dev/isa/ym.c
949
strcpy(dip->un.e.member[0].label.name, AudioNdesktop);
sys/dev/isa/ym.c
951
strcpy(dip->un.e.member[1].label.name, AudioNlaptop);
sys/dev/isa/ym.c
953
strcpy(dip->un.e.member[2].label.name, AudioNsubnote);
sys/dev/isa/ym.c
955
strcpy(dip->un.e.member[3].label.name, AudioNhifi);
sys/dev/isa/ym.c
962
strcpy(dip->label.name, AudioNtreble);
sys/dev/isa/ym.c
972
strcpy(dip->label.name, AudioNbass);
sys/dev/isa/ym.c
982
strcpy(dip->label.name, AudioNsurround);
sys/dev/isa/ym.c
994
strcpy(dip->label.name, AudioNsave);
sys/dev/isa/ym.c
996
strcpy(dip->un.e.member[0].label.name, AudioNpowerdown);
sys/dev/isa/ym.c
998
strcpy(dip->un.e.member[1].label.name, AudioNpowersave);
sys/dev/microcode/aic7xxx/aicasm_gram.y
1008
label:
sys/dev/microcode/aic7xxx/aicasm_gram.y
241
| label
sys/dev/microcode/aic7xxx/aicasm_gram.y
242
| program label
sys/dev/pad/pad.c
696
strcpy(di->label.name, AudioCoutputs);
sys/dev/pad/pad.c
702
strcpy(di->label.name, AudioCinputs);
sys/dev/pad/pad.c
708
strcpy(di->label.name, AudioNmaster);
sys/dev/pad/pad.c
716
strcpy(di->label.name, AudioNdac);
sys/dev/pci/cmpci.c
721
strcpy(dip->label.name,
sys/dev/pci/cmpci.c
736
strcpy(dip->label.name, mixer_port_names[dip->index]);
sys/dev/pci/cmpci.c
753
strcpy(dip->label.name, AudioNmute);
sys/dev/pci/cmpci.c
758
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/pci/cmpci.c
760
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/pci/cmpci.c
767
strcpy(dip->label.name, AudioNpreamp);
sys/dev/pci/cmpci.c
771
strcpy(dip->label.name, AudioNspeaker);
sys/dev/pci/cmpci.c
777
strcpy(dip->label.name, AudioNsource);
sys/dev/pci/cmpci.c
780
strcpy(dip->un.s.member[0].label.name, AudioNmicrophone);
sys/dev/pci/cmpci.c
782
strcpy(dip->un.s.member[1].label.name, AudioNcd);
sys/dev/pci/cmpci.c
784
strcpy(dip->un.s.member[2].label.name, AudioNline);
sys/dev/pci/cmpci.c
786
strcpy(dip->un.s.member[3].label.name, AudioNaux);
sys/dev/pci/cmpci.c
788
strcpy(dip->un.s.member[4].label.name, AudioNwave);
sys/dev/pci/cmpci.c
790
strcpy(dip->un.s.member[5].label.name, AudioNfmsynth);
sys/dev/pci/cmpci.c
792
strcpy(dip->un.s.member[6].label.name, CmpciNspdif);
sys/dev/pci/cmpci.c
797
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/pci/cmpci.c
805
strcpy(dip->label.name, AudioNmode);
sys/dev/pci/cmpci.c
807
strcpy(dip->un.e.member[0].label.name, AudioNdac);
sys/dev/pci/cmpci.c
809
strcpy(dip->un.e.member[1].label.name, CmpciNspdif);
sys/dev/pci/cmpci.c
816
strcpy(dip->label.name, AudioNinput);
sys/dev/pci/cmpci.c
818
strcpy(dip->un.e.member[i].label.name, CmpciNspdin1);
sys/dev/pci/cmpci.c
821
strcpy(dip->un.e.member[i].label.name, CmpciNspdin2);
sys/dev/pci/cmpci.c
824
strcpy(dip->un.e.member[i].label.name, CmpciNspdout);
sys/dev/pci/cmpci.c
831
strcpy(dip->label.name, CmpciNphase);
sys/dev/pci/cmpci.c
834
strcpy(dip->un.e.member[0].label.name, CmpciNpositive);
sys/dev/pci/cmpci.c
836
strcpy(dip->un.e.member[1].label.name, CmpciNnegative);
sys/dev/pci/cmpci.c
842
strcpy(dip->label.name, AudioNoutput);
sys/dev/pci/cmpci.c
845
strcpy(dip->un.e.member[0].label.name, CmpciNplayback);
sys/dev/pci/cmpci.c
847
strcpy(dip->un.e.member[1].label.name, CmpciNspdin);
sys/dev/pci/cmpci.c
854
strcpy(dip->label.name, CmpciNplayback);
sys/dev/pci/cmpci.c
857
strcpy(dip->un.e.member[0].label.name, AudioNwave);
sys/dev/pci/cmpci.c
859
strcpy(dip->un.e.member[1].label.name, CmpciNlegacy);
sys/dev/pci/cmpci.c
865
strcpy(dip->label.name, CmpciNvoltage);
sys/dev/pci/cmpci.c
868
strcpy(dip->un.e.member[0].label.name, CmpciNhigh_v);
sys/dev/pci/cmpci.c
870
strcpy(dip->un.e.member[1].label.name, CmpciNlow_v);
sys/dev/pci/cmpci.c
875
strcpy(dip->label.name, AudioNmonitor);
sys/dev/pci/cmpci.c
878
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/pci/cmpci.c
880
strcpy(dip->un.e.member[1].label.name, CmpciNspdin);
sys/dev/pci/cmpci.c
882
strcpy(dip->un.e.member[2].label.name, CmpciNspdout);
sys/dev/pci/cmpci.c
888
strcpy(dip->label.name, AudioNmaster);
sys/dev/pci/cmpci.c
895
strcpy(dip->label.name, CmpciNrear);
sys/dev/pci/cmpci.c
901
strcpy(dip->label.name, CmpciNindividual);
sys/dev/pci/cmpci.c
906
strcpy(dip->label.name, CmpciNreverse);
sys/dev/pci/cmpci.c
910
strcpy(dip->label.name, CmpciNsurround);
sys/dev/pci/eap.c
1494
strcpy(dip->label.name, AudioNmaster);
sys/dev/pci/eap.c
1504
strcpy(dip->label.name, AudioNdac);
sys/dev/pci/eap.c
1514
strcpy(dip->label.name, AudioNfmsynth);
sys/dev/pci/eap.c
1524
strcpy(dip->label.name, AudioNcd);
sys/dev/pci/eap.c
1534
strcpy(dip->label.name, AudioNline);
sys/dev/pci/eap.c
1544
strcpy(dip->label.name, AudioNaux);
sys/dev/pci/eap.c
1554
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/pci/eap.c
1562
strcpy(dip->label.name, AudioNsource);
sys/dev/pci/eap.c
1565
strcpy(dip->un.s.member[0].label.name, AudioNmicrophone);
sys/dev/pci/eap.c
1567
strcpy(dip->un.s.member[1].label.name, AudioNcd);
sys/dev/pci/eap.c
1569
strcpy(dip->un.s.member[2].label.name, AudioNline);
sys/dev/pci/eap.c
1571
strcpy(dip->un.s.member[3].label.name, AudioNfmsynth);
sys/dev/pci/eap.c
1573
strcpy(dip->un.s.member[4].label.name, AudioNaux);
sys/dev/pci/eap.c
1575
strcpy(dip->un.s.member[5].label.name, AudioNdac);
sys/dev/pci/eap.c
1581
strcpy(dip->label.name, AudioNsource);
sys/dev/pci/eap.c
1584
strcpy(dip->un.s.member[0].label.name, AudioNmicrophone);
sys/dev/pci/eap.c
1586
strcpy(dip->un.s.member[1].label.name, AudioNcd);
sys/dev/pci/eap.c
1588
strcpy(dip->un.s.member[2].label.name, AudioNline);
sys/dev/pci/eap.c
1590
strcpy(dip->un.s.member[3].label.name, AudioNfmsynth);
sys/dev/pci/eap.c
1592
strcpy(dip->un.s.member[4].label.name, AudioNaux);
sys/dev/pci/eap.c
1594
strcpy(dip->un.s.member[5].label.name, AudioNdac);
sys/dev/pci/eap.c
1602
strcpy(dip->label.name, AudioNpreamp);
sys/dev/pci/eap.c
1604
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/pci/eap.c
1606
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/pci/eap.c
1613
strcpy(dip->label.name, AudioCoutputs);
sys/dev/pci/eap.c
1619
strcpy(dip->label.name, AudioCrecord);
sys/dev/pci/eap.c
1625
strcpy(dip->label.name, AudioCinputs);
sys/dev/pci/eso.c
1189
strcpy(dip->label.name, AudioNdac);
sys/dev/pci/eso.c
1197
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/pci/eso.c
1205
strcpy(dip->label.name, AudioNline);
sys/dev/pci/eso.c
1213
strcpy(dip->label.name, AudioNfmsynth);
sys/dev/pci/eso.c
1221
strcpy(dip->label.name, "mono_in");
sys/dev/pci/eso.c
1229
strcpy(dip->label.name, AudioNcd);
sys/dev/pci/eso.c
1237
strcpy(dip->label.name, "auxb");
sys/dev/pci/eso.c
1246
strcpy(dip->label.name, AudioNpreamp);
sys/dev/pci/eso.c
1249
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/pci/eso.c
1251
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/pci/eso.c
1257
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/pci/eso.c
1264
strcpy(dip->label.name, AudioCinputs);
sys/dev/pci/eso.c
1272
strcpy(dip->label.name, AudioNmaster);
sys/dev/pci/eso.c
1281
strcpy(dip->label.name, AudioNmute);
sys/dev/pci/eso.c
1284
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/pci/eso.c
1286
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/pci/eso.c
1293
strcpy(dip->label.name, "pc_speaker");
sys/dev/pci/eso.c
1301
strcpy(dip->label.name, "mono_out");
sys/dev/pci/eso.c
1304
strcpy(dip->un.e.member[0].label.name, AudioNmute);
sys/dev/pci/eso.c
1306
strcpy(dip->un.e.member[1].label.name, AudioNdac);
sys/dev/pci/eso.c
1308
strcpy(dip->un.e.member[2].label.name, AudioNmixerout);
sys/dev/pci/eso.c
1315
strcpy(dip->label.name, "bypass");
sys/dev/pci/eso.c
1318
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/pci/eso.c
1320
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/pci/eso.c
1326
strcpy(dip->label.name, "mono_in");
sys/dev/pci/eso.c
1334
strcpy(dip->label.name, AudioNspatial);
sys/dev/pci/eso.c
1343
strcpy(dip->label.name, "enable");
sys/dev/pci/eso.c
1346
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/pci/eso.c
1348
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/pci/eso.c
1355
strcpy(dip->label.name, AudioCoutputs);
sys/dev/pci/eso.c
1362
strcpy(dip->label.name, AudioNmute);
sys/dev/pci/eso.c
1365
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/pci/eso.c
1367
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/pci/eso.c
1373
strcpy(dip->label.name, AudioCmonitor);
sys/dev/pci/eso.c
1380
strcpy(dip->label.name, AudioNrecord);
sys/dev/pci/eso.c
1387
strcpy(dip->label.name, AudioNsource);
sys/dev/pci/eso.c
1390
strcpy(dip->un.e.member[0].label.name, AudioNmicrophone);
sys/dev/pci/eso.c
1392
strcpy(dip->un.e.member[1].label.name, AudioNline);
sys/dev/pci/eso.c
1394
strcpy(dip->un.e.member[2].label.name, AudioNcd);
sys/dev/pci/eso.c
1396
strcpy(dip->un.e.member[3].label.name, AudioNmixerout);
sys/dev/pci/eso.c
1402
strcpy(dip->label.name, AudioNdac);
sys/dev/pci/eso.c
1410
strcpy(dip->label.name, AudioNmicrophone);
sys/dev/pci/eso.c
1418
strcpy(dip->label.name, AudioNline);
sys/dev/pci/eso.c
1426
strcpy(dip->label.name, AudioNfmsynth);
sys/dev/pci/eso.c
1434
strcpy(dip->label.name, "mono_in");
sys/dev/pci/eso.c
1442
strcpy(dip->label.name, AudioNcd);
sys/dev/pci/eso.c
1450
strcpy(dip->label.name, "auxb");
sys/dev/pci/eso.c
1458
strcpy(dip->label.name, AudioCrecord);
sys/dev/pci/qat/qat.c
2100
qat_dump_raw(int flag, const char *label, void *d, size_t len)
sys/dev/pci/qat/qat.c
2109
printf("dumping %s at %p len %zu\n", label, d, len);
sys/dev/pci/sv.c
908
strcpy(dip->label.name, mixer_classes[dip->index]);
sys/dev/pci/sv.c
920
strcpy(dip->label.name, ports[idx].audio);
sys/dev/pci/sv.c
938
strcpy(dip->label.name, AudioNmute);
sys/dev/pci/sv.c
940
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/pci/sv.c
942
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/pci/sv.c
954
strcpy(dip->label.name, AudioNsource);
sys/dev/pci/sv.c
959
strcpy(dip->un.e.member[i].label.name,
sys/dev/pci/sv.c
969
strcpy(dip->label.name, "gain");
sys/dev/pci/sv.c
979
strcpy(dip->label.name, "micboost");
sys/dev/pci/sv.c
985
strcpy(dip->label.name, AudioNspatial);
sys/dev/pci/sv.c
990
strcpy(dip->un.e.member[0].label.name, AudioNoff);
sys/dev/pci/sv.c
992
strcpy(dip->un.e.member[1].label.name, AudioNon);
sys/dev/raidframe/rf_netbsdkintf.c
2436
RF_ComponentLabel_t *label;
sys/dev/raidframe/rf_netbsdkintf.c
2438
label = &raidPtr->raid_cinfo[col].ci_label;
sys/dev/raidframe/rf_netbsdkintf.c
2439
label->mod_counter = raidPtr->mod_counter;
sys/dev/raidframe/rf_netbsdkintf.c
2441
label->parity_map_modcount = label->mod_counter;
sys/dev/raidframe/rf_netbsdkintf.c
2445
raidPtr->raid_cinfo[col].ci_vp, label);
sys/dev/raidframe/rf_netbsdkintf.c
2955
struct disklabel label;
sys/dev/raidframe/rf_netbsdkintf.c
3083
error = VOP_IOCTL(vp, DIOCGDINFO, &label, FREAD, NOCRED);
sys/dev/raidframe/rf_netbsdkintf.c
3103
for (i = 0; i < label.d_npartitions; i++) {
sys/dev/raidframe/rf_netbsdkintf.c
3107
if (label.d_partitions[i].p_fstype != FS_RAID)
sys/dev/raidframe/rf_netbsdkintf.c
3137
label.d_partitions[i].p_size, numsecs, secsize);
sys/dev/raidframe/rf_netbsdkintf.c
3167
label.d_partitions[RAW_PART].p_size, numsecs, secsize);
sys/dev/sbus/cs4231_sbus.c
192
cs4231_sbus_regdump(const char *label, struct cs4231_sbus_softc *sc)
sys/dev/sbus/cs4231_sbus.c
196
printf("cs4231regdump(%s): regs:", label);
sys/dev/sbus/dbri.c
1763
strcpy(di->label.name, AudioCmonitor);
sys/dev/sbus/dbri.c
1769
strcpy(di->label.name, AudioCoutputs);
sys/dev/sbus/dbri.c
1775
strcpy(di->label.name, AudioCinputs);
sys/dev/sbus/dbri.c
1782
strcpy(di->label.name, AudioNmaster);
sys/dev/sbus/dbri.c
1791
strcpy(di->label.name, AudioNrecord);
sys/dev/sbus/dbri.c
1799
strcpy(di->label.name, AudioNmonitor);
sys/dev/sbus/dbri.c
1807
strcpy(di->label.name, AudioNmono);
sys/dev/sbus/dbri.c
1810
strcpy(di->un.e.member[0].label.name, AudioNoff);
sys/dev/sbus/dbri.c
1812
strcpy(di->un.e.member[1].label.name, AudioNon);
sys/dev/sbus/dbri.c
1818
strcpy(di->label.name, AudioNheadphone);
sys/dev/sbus/dbri.c
1821
strcpy(di->un.e.member[0].label.name, AudioNoff);
sys/dev/sbus/dbri.c
1823
strcpy(di->un.e.member[1].label.name, AudioNon);
sys/dev/sbus/dbri.c
1829
strcpy(di->label.name, AudioNline);
sys/dev/sbus/dbri.c
1832
strcpy(di->un.e.member[0].label.name, AudioNoff);
sys/dev/sbus/dbri.c
1834
strcpy(di->un.e.member[1].label.name, AudioNon);
sys/dev/sbus/dbri.c
1839
strcpy(di->label.name, AudioNsource);
sys/dev/sbus/dbri.c
1843
strcpy(di->un.s.member[0].label.name, AudioNline);
sys/dev/sbus/dbri.c
1845
strcpy(di->un.s.member[1].label.name, AudioNmicrophone);
sys/dev/usb/uaudio.c
2989
strlcpy(mi->label.name, AudioCoutputs, sizeof(mi->label.name));
sys/dev/usb/uaudio.c
2995
strlcpy(mi->label.name, AudioCinputs, sizeof(mi->label.name));
sys/dev/usb/uaudio.c
3001
strlcpy(mi->label.name, AudioCequalization,
sys/dev/usb/uaudio.c
3002
sizeof(mi->label.name));
sys/dev/usb/uaudio.c
3008
strlcpy(mi->label.name, AudioCrecord, sizeof(mi->label.name));
sys/dev/usb/uaudio.c
3019
strlcpy(mi->label.name, mc->ctlname, sizeof(mi->label.name));
sys/dev/usb/uaudio.c
3026
strlcpy(mi->un.e.member[0].label.name, AudioNoff,
sys/dev/usb/uaudio.c
3027
sizeof(mi->un.e.member[0].label.name));
sys/dev/usb/uaudio.c
3029
strlcpy(mi->un.e.member[1].label.name, AudioNon,
sys/dev/usb/uaudio.c
3030
sizeof(mi->un.e.member[1].label.name));
sys/dev/usb/uaudio.c
3039
snprintf(mi->un.e.member[i].label.name,
sys/dev/usb/uaudio.c
3040
sizeof(mi->un.e.member[i].label.name),
sys/dev/usb/umidi.c
134
char *label;
sys/dev/usb/umidi.c
1456
if (NULL != mididev->label) {
sys/dev/usb/umidi.c
1457
kmem_free(mididev->label, mididev->label_len);
sys/dev/usb/umidi.c
1458
mididev->label = NULL;
sys/dev/usb/umidi.c
1600
md->label = final_label;
sys/dev/usb/umidi.c
636
mi->name = mididev->label;
sys/dist/pf/net/pf_ioctl.c
1000
PF_MD5_UPD_STR(rule, label);
sys/dist/pf/net/pfvar.h
531
char label[PF_RULE_LABEL_SIZE];
sys/fs/cd9660/cd9660_vfsops.c
401
struct disklabel label;
sys/fs/cd9660/cd9660_vfsops.c
419
error = VOP_IOCTL(devvp, DIOCGDINFO, &label, FREAD, FSCRED);
sys/fs/cd9660/cd9660_vfsops.c
422
if (label.d_partitions[DISKPART(dev)].p_fstype == FS_ISO9660)
sys/fs/cd9660/cd9660_vfsops.c
423
sess = label.d_partitions[DISKPART(dev)].p_cdsession;
sys/kern/init_main.c
867
struct disklabel label;
sys/kern/init_main.c
901
error = VOP_IOCTL(vp, DIOCGDINFO, &label, FREAD, NOCRED);
sys/kern/init_main.c
911
p = &label.d_partitions[booted_partition];
sys/kern/kern_ktrace.c
1492
return ktruser(SCARG(uap, label), SCARG(uap, addr),
sys/kern/subr_pool.c
2005
pool_chk_page(struct pool *pp, const char *label, struct pool_item_header *ph)
sys/kern/subr_pool.c
2015
if (label != NULL)
sys/kern/subr_pool.c
2016
printf("%s: ", label);
sys/kern/subr_pool.c
2034
if (label != NULL)
sys/kern/subr_pool.c
2035
printf("%s: ", label);
sys/kern/subr_pool.c
2050
if (label != NULL)
sys/kern/subr_pool.c
2051
printf("%s: ", label);
sys/kern/subr_pool.c
2063
pool_chk(struct pool *pp, const char *label)
sys/kern/subr_pool.c
2070
r = pool_chk_page(pp, label, ph);
sys/kern/subr_pool.c
2076
r = pool_chk_page(pp, label, ph);
sys/kern/subr_pool.c
2082
r = pool_chk_page(pp, label, ph);
sys/kern/systrace_args.c
2303
uarg[0] = (intptr_t) SCARG(p, label); /* const char * */
sys/kern/vfs_subr.c
1235
vprint(const char *label, struct vnode *vp)
sys/kern/vfs_subr.c
1238
if (label != NULL)
sys/kern/vfs_subr.c
1239
printf("%s: ", label);
sys/miscfs/procfs/procfs_limit.c
110
label[i]);
sys/miscfs/procfs/procfs_limit.c
88
static const char *label[] = RLIM_STRINGS;
sys/net/bpfjit.c
1002
struct sljit_label *label;
sys/net/bpfjit.c
1033
label = sljit_emit_label(compiler);
sys/net/bpfjit.c
1034
if (label == NULL)
sys/net/bpfjit.c
1036
sljit_set_label(to_mchain_jump, label);
sys/net/bpfjit.c
1055
label = sljit_emit_label(compiler);
sys/net/bpfjit.c
1056
if (label == NULL)
sys/net/bpfjit.c
1058
sljit_set_label(over_mchain_jump, label);
sys/net/bpfjit.c
1706
struct sljit_label *label;
sys/net/bpfjit.c
1751
label = NULL;
sys/net/bpfjit.c
1754
if (label == NULL)
sys/net/bpfjit.c
1755
label = sljit_emit_label(compiler);
sys/net/bpfjit.c
1756
if (label == NULL)
sys/net/bpfjit.c
1758
sljit_set_label(bjump->sjump, label);
sys/net/bpfjit.c
2129
label = sljit_emit_label(compiler);
sys/net/bpfjit.c
2130
if (label == NULL)
sys/net/bpfjit.c
2133
sljit_set_label(ret0[i], label);
sys/net/bpfjit.c
811
struct sljit_label *label;
sys/net/bpfjit.c
892
label = sljit_emit_label(compiler);
sys/net/bpfjit.c
893
if (label == NULL)
sys/net/bpfjit.c
895
sljit_set_label(to_mchain_jump, label);
sys/net/bpfjit.c
927
label = sljit_emit_label(compiler);
sys/net/bpfjit.c
928
if (label == NULL)
sys/net/bpfjit.c
930
sljit_set_label(over_mchain_jump, label);
sys/net/if_gre.c
921
if (msh.shim.label != MPLS_LABEL_IMPLNULL)
sys/net/if_loop.c
306
if (msh.shim.label != MPLS_LABEL_IMPLNULL) {
sys/net/if_mpls.c
246
if (mh.shim.label != MPLS_LABEL_IMPLNULL &&
sys/net/if_mpls.c
373
while ((dst.smpls_addr.shim.label == MPLS_LABEL_IPV4NULL ||
sys/net/if_mpls.c
374
dst.smpls_addr.shim.label == MPLS_LABEL_IPV6NULL) &&
sys/net/if_mpls.c
384
if (__predict_false(dst.smpls_addr.shim.label == MPLS_LABEL_RTALERT) &&
sys/net/if_mpls.c
393
if (dst.smpls_addr.shim.label <= MPLS_LABEL_RESMAX) {
sys/net/if_mpls.c
395
switch (dst.smpls_addr.shim.label) {
sys/net/if_mpls.c
451
htag->shim.label = tshim.shim.label;
sys/net/if_mpls.c
462
if (tshim.shim.label != MPLS_LABEL_IMPLNULL &&
sys/net/if_mpls.c
506
if (msh.shim.label == MPLS_LABEL_IMPLNULL ||
sys/net/if_wg.c
1058
const char *label = "mac1----";
sys/net/if_wg.c
1062
blake2s_update(&state, label, strlen(label));
sys/net/if_wg.c
1078
const char *label = "cookie--";
sys/net/if_wg.c
1081
blake2s_update(&state, label, strlen(label));
sys/netinet/ip_output.c
176
if (msh.shim.label != MPLS_LABEL_IMPLNULL) {
sys/netinet6/in6_src.c
352
if (dst_policy->label != ADDR_LABEL_NOTAPP) {
sys/netinet6/in6_src.c
354
if (dst_policy->label == best_policy->label &&
sys/netinet6/in6_src.c
355
dst_policy->label != new_policy->label)
sys/netinet6/in6_src.c
357
if (dst_policy->label != best_policy->label &&
sys/netinet6/in6_src.c
358
dst_policy->label == new_policy->label)
sys/netinet6/in6_src.c
892
defaultaddrpolicy.label = ADDR_LABEL_NOTAPP;
sys/netinet6/in6_src.c
974
if (ent0.label == ADDR_LABEL_NOTAPP)
sys/netinet6/in6_var.h
157
int label; /* matching label */
sys/netmpls/mpls.h
56
uint32_t label:20;
sys/netmpls/mpls.h
58
uint32_t label:20;
sys/rump/librump/rumpkern/rump_syscalls.c
3461
rump___sysimpl_utrace(const char * label, void * addr, size_t len)
sys/rump/librump/rumpkern/rump_syscalls.c
3469
SPARG(&callarg, label) = label;
sys/stand/efiboot/efifdt.c
431
char *label = NULL;
sys/stand/efiboot/efifdt.c
432
int rv = ucs2_to_utf8(bpart->gpt.ent.ent_name, &label);
sys/stand/efiboot/efifdt.c
434
fdt_setprop_string(fdt_data, chosen, "netbsd,gpt-label", label);
sys/stand/efiboot/efifdt.c
435
FreePool(label);
sys/sys/audioio.h
326
audio_mixer_name_t label;
sys/sys/audioio.h
339
audio_mixer_name_t label;
sys/sys/audioio.h
346
audio_mixer_name_t label;
sys/sys/syscallargs.h
2009
syscallarg(const char *) label;
sys/ufs/lfs/lfs_pages.c
149
wait_for_page(struct vnode *vp, struct vm_page *pg, const char *label)
sys/ufs/lfs/lfs_pages.c
158
if (label != NULL && pg != lastpg) {
sys/ufs/lfs/lfs_pages.c
161
curproc->p_pid, curlwp->l_lid, label,
sys/ufs/lfs/lfs_pages.c
165
curproc->p_pid, curlwp->l_lid, label, pg);
sys/ufs/lfs/lfs_pages.c
189
int seglocked, const char *label)
sys/ufs/lfs/lfs_pages.c
218
wait_for_page(vp, pg, label);
sys/ufs/lfs/lfs_pages.c
220
if (label != NULL && count > 1) {
sys/ufs/lfs/lfs_pages.c
222
curproc->p_pid, label, (count > 0 ? "looping, " : ""),
tests/dev/audio/audiotest.c
1359
di.type, di.mixer_class, di.label.name);
tests/dev/audio/audiotest.c
1361
strcmp(di.label.name, "outputs") == 0) {
tests/dev/audio/audiotest.c
1368
strcmp(di.label.name, "master") == 0) {
tests/kernel/arch/sh3/asm.h
44
#define MOVL_VAR(label, reg) \
tests/kernel/arch/sh3/asm.h
45
mov.l label, r0; \
tests/kernel/arch/sh3/asm.h
52
#define MOVL_VAR(label, reg) \
tests/kernel/arch/sh3/asm.h
53
mov.l label, reg; \
tests/lib/libc/locale/t_wcsrtombs.c
46
wchar_t label[] = L"L" L"\u0403" L"bel";
tests/lib/libc/locale/t_wcsrtombs.c
47
const wchar_t *wp = label;
tests/lib/libc/locale/t_wcsrtombs.c
58
ATF_REQUIRE_EQ(wp - label, 1);
tests/lib/libcurses/slave/curses_commands.c
4945
char *label;
tests/lib/libcurses/slave/curses_commands.c
4950
label = slk_label(labnum);
tests/lib/libcurses/slave/curses_commands.c
4952
if (label == NULL)
tests/lib/libcurses/slave/curses_commands.c
4955
report_status(label);
tests/lib/libcurses/slave/curses_commands.c
4990
ARG_STRING(label);
tests/lib/libcurses/slave/curses_commands.c
4994
report_return(slk_set(labnum, label, justify));
tests/lib/libcurses/slave/curses_commands.c
5011
ARG_WCHAR_STRING(label);
tests/lib/libcurses/slave/curses_commands.c
5015
report_return(slk_wset(labnum, label, justify));
tests/usr.bin/indent/lsym_do.c
122
label: do {} while (false);
tests/usr.bin/indent/lsym_do.c
136
label: do {
tests/usr.bin/indent/opt_bbb.c
72
label: /* not a block comment */
tests/usr.bin/indent/opt_bbb.c
74
label: /*
tests/usr.bin/indent/opt_bbb.c
89
label: /* not a block comment */
tests/usr.bin/indent/opt_bbb.c
91
label: /* This is not a block comment, as it goes to
tests/usr.bin/indent/ps_ind_level.c
50
label:;
tests/usr.bin/indent/ps_ind_level.c
58
label: ;
tests/usr.bin/xlint/lint1/gcc_attribute_label.c
38
goto label;
tests/usr.bin/xlint/lint1/gcc_attribute_label.c
39
label:
tests/usr.bin/xlint/lint1/msg_194.c
11
label:
tests/usr.bin/xlint/lint1/msg_194.c
14
label:
tests/usr.bin/xlint/lint1/stmt_goto.c
16
goto label;
tests/usr.bin/xlint/lint1/stmt_goto.c
17
label:
usr.bin/aiomixer/draw.c
100
wprintw(control->widgetpad, "%s\n", control->info.label.name);
usr.bin/aiomixer/draw.c
180
color = get_enum_color(e->member[i].label.name);
usr.bin/aiomixer/draw.c
187
wprintw(control->widgetpad, "%s", e->member[i].label.name);
usr.bin/aiomixer/draw.c
235
control->info.un.s.member[i].label.name);
usr.bin/aiomixer/draw.c
98
control->info.label.name, control->info.un.v.units.name);
usr.bin/aiomixer/parse.c
109
memcpy(class->name, info.label.name, MAX_AUDIO_DEV_LEN);
usr.bin/aiomixer/parse.c
68
if (strstr(a->info.label.name, AudioNmaster) != NULL) {
usr.bin/aiomixer/parse.c
69
if (strstr(b->info.label.name, AudioNmaster) == NULL) {
usr.bin/aiomixer/parse.c
72
} else if (strstr(b->info.label.name, AudioNmaster) != NULL) {
usr.bin/aiomixer/parse.c
75
return strcmp(a->info.label.name, b->info.label.name);
usr.bin/diff/diff.c
204
if (label[0] == NULL)
usr.bin/diff/diff.c
205
label[0] = optarg;
usr.bin/diff/diff.c
206
else if (label[1] == NULL)
usr.bin/diff/diff.c
207
label[1] = optarg;
usr.bin/diff/diff.c
43
char *start, *ifdefname, *diffargs, *label[2];
usr.bin/diff/diff.c
480
if (label[0] != NULL)
usr.bin/diff/diff.c
481
path1 = label[0];
usr.bin/diff/diff.c
482
if (label[1] != NULL)
usr.bin/diff/diff.c
483
path2 = label[1];
usr.bin/diff/diff.h
105
extern char *start, *ifdefname, *diffargs, *label[2];
usr.bin/diff/diffreg.c
1618
if (label[0] != NULL)
usr.bin/diff/diffreg.c
1620
label[0]);
usr.bin/diff/diffreg.c
1631
if (label[1] != NULL)
usr.bin/diff/diffreg.c
1633
label[1]);
usr.bin/grep/grep.c
120
char *label; /* --label */
usr.bin/grep/grep.c
613
label = optarg;
usr.bin/grep/grep.h
123
extern char *label;
usr.bin/grep/util.c
200
fn = label != NULL ? label : getstr(1);
usr.bin/make/targ.c
348
PrintNodeNamesLine(const char *label, GNodeList *gnodes)
usr.bin/make/targ.c
352
debug_printf("# %s:", label);
usr.bin/mixerctl/mixerctl.c
104
p->infp->un.e.member[i].label.name);
usr.bin/mixerctl/mixerctl.c
112
p->infp->un.s.member[i].label.name);
usr.bin/mixerctl/mixerctl.c
117
p->infp->un.s.member[i].label.name);
usr.bin/mixerctl/mixerctl.c
161
if (strcmp(p->infp->un.e.member[i].label.name, q) == 0)
usr.bin/mixerctl/mixerctl.c
177
if (strcmp(p->infp->un.s.member[i].label.name,
usr.bin/mixerctl/mixerctl.c
409
rfields[i].name = infos[i].label.name;
usr.bin/mixerctl/mixerctl.c
436
infos[pos].label.name);
usr.bin/mixerctl/mixerctl.c
446
fields[i].name = catstr(infos[cls].label.name,
usr.bin/mixerctl/mixerctl.c
99
p->infp->un.e.member[i].label.name);
usr.bin/rdist/gram.y
370
insert(char *label, struct namelist *files, struct namelist *hosts,
usr.bin/rdist/gram.y
400
nc->c_label = label;
usr.bin/rdist/gram.y
419
append(char *label, struct namelist *files, char *stamp,
usr.bin/rdist/gram.y
429
c->c_label = label;
usr.bin/usbhidctl/usbhid.c
557
reportitem(char const *label, struct hid_item const *item, unsigned int mflags)
usr.bin/usbhidctl/usbhid.c
561
printf("%s size=%d count=%d%s%s page=%s", label,
usr.bin/xlint/lint1/cgram.y
2104
label:
usr.bin/xlint/lint1/cgram.y
2126
label gcc_attribute_specifier_list_opt no_attr_statement
usr.sbin/bad144/bad144.c
161
dp = &label;
usr.sbin/bad144/bad144.c
90
static struct disklabel label;
usr.sbin/btdevctl/print.c
217
hid_dump_item(char const *label, struct hid_item *h)
usr.sbin/btdevctl/print.c
221
label, (uint8_t) h->report_ID, h->report_size, h->report_count,
usr.sbin/cpuctl/cpuctl.c
110
for (ct = cpu_cmdtab; ct->label != NULL; ct++) {
usr.sbin/cpuctl/cpuctl.c
111
if (strcmp(argv[0], ct->label) == 0) {
usr.sbin/cpuctl/cpuctl.c
122
if (ct->label == NULL)
usr.sbin/cpuctl/cpuctl.c
70
const char *label;
usr.sbin/fstyp/apfs.c
84
fstyp_apfs(FILE *fp, char *label, size_t size)
usr.sbin/fstyp/cd9660.c
52
fstyp_cd9660(FILE *fp, char *label, size_t size)
usr.sbin/fstyp/cd9660.c
64
bzero(label, size);
usr.sbin/fstyp/cd9660.c
65
strlcpy(label, volume, MIN(size, VOLUME_LEN));
usr.sbin/fstyp/cd9660.c
67
rtrim(label, size);
usr.sbin/fstyp/exfat.c
192
const char *label;
usr.sbin/fstyp/exfat.c
223
label = (const void *)ucs2label;
usr.sbin/fstyp/exfat.c
226
rc = iconv(cd, __UNCONST(&label), &srcleft, &label_out,
usr.sbin/fstyp/exfat.c
322
fstyp_exfat(FILE *fp, char *label, size_t size)
usr.sbin/fstyp/exfat.c
363
exfat_find_label(fp, ev, bytespersec, label, size);
usr.sbin/fstyp/ext2fs.c
61
fstyp_ext2fs(FILE *fp, char *label, size_t size)
usr.sbin/fstyp/ext2fs.c
87
strlcpy(label, s_volume_name, size);
usr.sbin/fstyp/fstyp.c
141
rtrim(char *label, size_t size)
usr.sbin/fstyp/fstyp.c
145
if (label[j] == '\0')
usr.sbin/fstyp/fstyp.c
147
else if (label[j] == ' ')
usr.sbin/fstyp/fstyp.c
148
label[j] = '\0';
usr.sbin/fstyp/fstyp.c
191
char label[LABEL_LEN + 1], strvised[LABEL_LEN * 4 + 1];
usr.sbin/fstyp/fstyp.c
249
memset(label, '\0', sizeof(label));
usr.sbin/fstyp/fstyp.c
258
error = fstyp_f(fp, label, sizeof(label));
usr.sbin/fstyp/fstyp.c
272
error = fsvtyp_f(path, label, sizeof(label));
usr.sbin/fstyp/fstyp.c
282
if (show_label && label[0] != '\0') {
usr.sbin/fstyp/fstyp.c
287
nbytes = strsnvis(strvised, sizeof(strvised), label,
usr.sbin/fstyp/hammer.c
102
fstyp_hammer(FILE *fp, char *label, size_t size)
usr.sbin/fstyp/hammer.c
127
snprintf(label, size, "%s_%s", ondisk->vol_label, p);
usr.sbin/fstyp/hammer.c
129
strlcpy(label, ondisk->vol_label, size);
usr.sbin/fstyp/hammer.c
131
strlcpy(label, ondisk->vol_label, size);
usr.sbin/fstyp/hammer.c
164
__fsvtyp_hammer(const char *blkdevs, char *label, size_t size, int partial)
usr.sbin/fstyp/hammer.c
225
snprintf(label, size, "%s_%s", ondisk->vol_label, p);
usr.sbin/fstyp/hammer.c
227
strlcpy(label, ondisk->vol_label, size);
usr.sbin/fstyp/hammer.c
238
fsvtyp_hammer(const char *blkdevs, char *label, size_t size)
usr.sbin/fstyp/hammer.c
240
return (__fsvtyp_hammer(blkdevs, label, size, 0));
usr.sbin/fstyp/hammer.c
244
fsvtyp_hammer_partial(const char *blkdevs, char *label, size_t size)
usr.sbin/fstyp/hammer.c
246
return (__fsvtyp_hammer(blkdevs, label, size, 1));
usr.sbin/fstyp/hammer.c
52
static char label[64];
usr.sbin/fstyp/hammer.c
70
strlcpy(label, ondisk->vol_label, sizeof(label));
usr.sbin/fstyp/hammer.c
78
if (strcmp(ondisk->vol_label, label))
usr.sbin/fstyp/hammer2.c
291
read_label(FILE *fp, char *label, size_t size, const char *devpath)
usr.sbin/fstyp/hammer2.c
369
snprintf(label, size, "%s_%s", pfs, devname);
usr.sbin/fstyp/hammer2.c
371
strlcpy(label, pfs, size);
usr.sbin/fstyp/hammer2.c
373
memset(label, 0, size);
usr.sbin/fstyp/hammer2.c
374
memcpy(label, media->ipdata.filename,
usr.sbin/fstyp/hammer2.c
377
strlcat(label, "_", size);
usr.sbin/fstyp/hammer2.c
378
strlcat(label, devname, size);
usr.sbin/fstyp/hammer2.c
393
fstyp_hammer2(FILE *fp, char *label, size_t size)
usr.sbin/fstyp/hammer2.c
407
error = read_label(fp, label, size, NULL);
usr.sbin/fstyp/hammer2.c
414
__fsvtyp_hammer2(const char *blkdevs, char *label, size_t size, int partial)
usr.sbin/fstyp/hammer2.c
501
error = read_label(fp, label, size, volpath);
usr.sbin/fstyp/hammer2.c
516
fsvtyp_hammer2(const char *blkdevs, char *label, size_t size)
usr.sbin/fstyp/hammer2.c
518
return __fsvtyp_hammer2(blkdevs, label, size, 0);
usr.sbin/fstyp/hammer2.c
522
fsvtyp_hammer2_partial(const char *blkdevs, char *label, size_t size)
usr.sbin/fstyp/hammer2.c
524
return __fsvtyp_hammer2(blkdevs, label, size, 1);
usr.sbin/fstyp/hammer2_disk.h
522
uint8_t label[16]; /* 30-3F import/export label */
usr.sbin/fstyp/hammer_disk.h
1014
char label[64]; /* filesystem space label */
usr.sbin/fstyp/hammer_disk.h
1057
char label[64]; /* user-supplied description */
usr.sbin/fstyp/hfsplus.c
102
fstyp_hfsp(FILE *fp, char *label, size_t size)
usr.sbin/fstyp/msdosfs.c
112
strlcpy(label, (char*)pfat32_bsbpb->BS_VolLab,
usr.sbin/fstyp/msdosfs.c
157
strlcpy(label, (char*)pfat_entry->DIR_Name,
usr.sbin/fstyp/msdosfs.c
171
rtrim(label, size);
usr.sbin/fstyp/msdosfs.c
52
fstyp_msdosfs(FILE *fp, char *label, size_t size)
usr.sbin/fstyp/msdosfs.c
93
strlcpy(label, (char*)pfat_bsbpb->BS_VolLab,
usr.sbin/fstyp/ntfs.c
105
convert_label(const void *label /* LE */, size_t labellen, char *label_out,
usr.sbin/fstyp/ntfs.c
120
rc = iconv(cd, __UNCONST(&label), &labellen, &label_out,
usr.sbin/fstyp/ntfs.c
136
fstyp_ntfs(FILE *fp, char *label, size_t size)
usr.sbin/fstyp/ntfs.c
176
atr->a_datalen, label, size);
usr.sbin/fstyp/ufs.c
114
strlcpy(label, (char*)fs->fs_volname, labelsize);
usr.sbin/fstyp/ufs.c
54
fstyp_ufs(FILE *fp, char *label, size_t labelsize)
usr.sbin/fstyp/zfs.c
52
fstyp_zfs(FILE *fp, char *label, size_t labelsize)
usr.sbin/fstyp/zfs.c
75
strlcpy(label, zpool_name, labelsize);
usr.sbin/gspa/gspa/gsp_gram.y
75
line : label ID operands { statement($2, $3); }
usr.sbin/gspa/gspa/gsp_gram.y
77
| label
usr.sbin/gspa/gspa/gsp_gram.y
83
label : ID ':' { set_label($1); }
usr.sbin/gspa/gspa/gsp_pseu.c
68
if( label == NULL ){
usr.sbin/gspa/gspa/gsp_pseu.c
78
do_asg(label, ops->op_u.value, 0);
usr.sbin/installboot/arch/hp300.c
112
label = malloc(params->sectorsize);
usr.sbin/installboot/arch/hp300.c
113
if (label == NULL) {
usr.sbin/installboot/arch/hp300.c
189
if (pread(params->fsfd, label, params->sectorsize,
usr.sbin/installboot/arch/hp300.c
196
secsize = be32toh(label->d_secsize);
usr.sbin/installboot/arch/hp300.c
197
if (label->d_magic != htobe32(DISKMAGIC) ||
usr.sbin/installboot/arch/hp300.c
198
label->d_magic2 != htobe32(DISKMAGIC) ||
usr.sbin/installboot/arch/hp300.c
200
be16toh(label->d_npartitions) > MAXMAXPARTITIONS) {
usr.sbin/installboot/arch/hp300.c
205
i = be16toh(label->d_npartitions);
usr.sbin/installboot/arch/hp300.c
206
for (boot = label->d_partitions; ; boot++) {
usr.sbin/installboot/arch/hp300.c
302
if (label != NULL)
usr.sbin/installboot/arch/hp300.c
303
free(label);
usr.sbin/installboot/arch/hp300.c
98
struct disklabel *label;
usr.sbin/installboot/arch/hppa.c
136
} label;
usr.sbin/installboot/arch/hppa.c
150
rv = pread(params->fsfd, &label, HPPA_BOOT_BLOCK_SIZE, 0);
usr.sbin/installboot/arch/hppa.c
169
secsize = be32toh(label.l.d_secsize);
usr.sbin/installboot/arch/hppa.c
170
npart = be16toh(label.l.d_npartitions);
usr.sbin/installboot/arch/hppa.c
171
if (label.l.d_magic != htobe32(DISKMAGIC) ||
usr.sbin/installboot/arch/hppa.c
172
label.l.d_magic2 != htobe32(DISKMAGIC) ||
usr.sbin/installboot/arch/hppa.c
178
} else if (npart < 1 || label.l.d_partitions[0].p_size == 0) {
usr.sbin/installboot/arch/hppa.c
182
} else if (be32toh(label.l.d_partitions[0].p_offset) +
usr.sbin/installboot/arch/hppa.c
183
be32toh(label.l.d_partitions[0].p_size) >
usr.sbin/installboot/arch/hppa.c
199
memcpy(&bb[HPPA_LABELOFFSET], &label.l, HPPA_LABELSIZE);
usr.sbin/installboot/arch/x68k.c
111
char label[X68K_LABELSIZE];
usr.sbin/installboot/arch/x68k.c
131
rv = pread(params->fsfd, label, sizeof label,
usr.sbin/installboot/arch/x68k.c
136
} else if (rv != sizeof label) {
usr.sbin/installboot/arch/x68k.c
158
memcpy(&bb[X68K_LABELOFFSET], &label, sizeof label);
usr.sbin/intrctl/intrctl.c
61
const char *label;
usr.sbin/intrctl/intrctl.c
84
for (ct = intrctl_cmdtab; ct->label != NULL; ct++) {
usr.sbin/intrctl/intrctl.c
85
if (strcmp(cmdname, ct->label) == 0) {
usr.sbin/intrctl/intrctl.c
89
if (ct->label == NULL)
usr.sbin/iopctl/iopctl.c
139
if (strcmp(argv[optind], cmdtab[i].label) == 0) {
usr.sbin/iopctl/iopctl.c
90
const char *label;
usr.sbin/ip6addrctl/ip6addrctl.c
182
printf(" %5d %5d %8llu\n", pol->preced, pol->label,
usr.sbin/ip6addrctl/ip6addrctl.c
239
pol0.label = atoi(cp);
usr.sbin/ip6addrctl/ip6addrctl.c
390
add_policy(char *prefix, char *prec, char *label)
usr.sbin/ip6addrctl/ip6addrctl.c
400
p.label = atoi(label);
usr.sbin/ldpd/label.c
119
l->label = label;
usr.sbin/ldpd/label.c
136
label_del(struct label * l)
usr.sbin/ldpd/label.c
151
label_reattach_route(struct label *l, int readd)
usr.sbin/ldpd/label.c
178
l->label = 0;
usr.sbin/ldpd/label.c
183
struct label*
usr.sbin/ldpd/label.c
186
struct label l;
usr.sbin/ldpd/label.c
202
struct label *l;
usr.sbin/ldpd/label.c
216
struct label *l, *lnext;
usr.sbin/ldpd/label.c
238
struct label *l;
usr.sbin/ldpd/label.c
251
struct label*
usr.sbin/ldpd/label.c
256
struct label *l;
usr.sbin/ldpd/label.c
274
struct label *l;
usr.sbin/ldpd/label.c
292
announce_label_change(struct label *l)
usr.sbin/ldpd/label.c
304
struct label *l;
usr.sbin/ldpd/label.c
313
l->label = MPLS_LABEL_IMPLNULL;
usr.sbin/ldpd/label.c
318
struct label *
usr.sbin/ldpd/label.c
319
label_get_right(struct label *l)
usr.sbin/ldpd/label.c
53
.rbto_node_offset = offsetof(struct label, lbtree),
usr.sbin/ldpd/label.c
67
const struct label *l1 = node1, *l2 = node2;
usr.sbin/ldpd/label.c
89
struct label *
usr.sbin/ldpd/label.c
92
const struct ldp_peer * p, uint32_t label, bool host)
usr.sbin/ldpd/label.c
94
struct label *l;
usr.sbin/ldpd/label.h
53
int binding, label;
usr.sbin/ldpd/label.h
60
struct label * label_add(const union sockunion *, const union sockunion *,
usr.sbin/ldpd/label.h
63
void label_del(struct label *);
usr.sbin/ldpd/label.h
67
struct label * label_get(const union sockunion *sodest,
usr.sbin/ldpd/label.h
69
struct label * label_get_by_prefix(const struct sockaddr *, int);
usr.sbin/ldpd/label.h
71
void announce_label_change(struct label *);
usr.sbin/ldpd/label.h
72
void label_reattach_route(struct label*, int);
usr.sbin/ldpd/label.h
74
struct label * label_get_right(struct label *);
usr.sbin/ldpd/ldp_command.c
497
inet_ntoa(p->ldp_id), lm->label, lma, lm->prefix);
usr.sbin/ldpd/ldp_command.c
507
struct label *l = NULL;
usr.sbin/ldpd/ldp_command.c
519
satos(l->p->address), l->label);
usr.sbin/ldpd/ldp_errors.c
167
snprintf(ret, sizeof(ret), "%d", ms2.shim.label);
usr.sbin/ldpd/ldp_peer.c
465
int prefix, int label)
usr.sbin/ldpd/ldp_peer.c
473
lma->label = label;
usr.sbin/ldpd/ldp_peer.c
486
lma->label = label;
usr.sbin/ldpd/ldp_peer.h
51
uint label;
usr.sbin/ldpd/mpls_interface.c
110
oldbinding, lab->label, p_str);
usr.sbin/ldpd/mpls_interface.c
115
if ((so_tag = make_mpls_union(lab->label)) == NULL) {
usr.sbin/ldpd/mpls_interface.c
143
if ((so_tag = make_mpls_union(lab->label)) == NULL) {
usr.sbin/ldpd/mpls_interface.c
56
mpls_add_label(struct label *lab)
usr.sbin/ldpd/mpls_interface.c
71
satos(&lab->so_dest.sa), prefixlen, lab->label, lab->binding,p_str);
usr.sbin/ldpd/mpls_interface.h
38
int mpls_add_label(struct label *);
usr.sbin/ldpd/mpls_routes.c
197
make_mpls_union(uint32_t label)
usr.sbin/ldpd/mpls_routes.c
210
so_mpls->smpls.smpls_addr.shim.label = label;
usr.sbin/ldpd/mpls_routes.c
586
struct label *lab;
usr.sbin/ldpd/mpls_routes.c
689
pm->peer, pm->lm->label,
usr.sbin/ldpd/mpls_routes.h
64
union sockunion * make_mplsinet_union(uint16_t peer, uint32_t label,
usr.sbin/ldpd/tlv.h
190
uint32_t label;
usr.sbin/ldpd/tlv_stack.c
127
ntohl(l->label));
usr.sbin/ldpd/tlv_stack.c
133
lbl_check->label = ntohl(l->label);
usr.sbin/ldpd/tlv_stack.c
160
struct label *lab;
usr.sbin/ldpd/tlv_stack.c
242
uint8_t prefixlen, uint32_t label, const struct label_request_tlv *lrt)
usr.sbin/ldpd/tlv_stack.c
306
l->length = htons(sizeof(l->label));
usr.sbin/ldpd/tlv_stack.c
307
l->label = htonl(label);
usr.sbin/ldpd/tlv_stack.c
321
uint32_t label)
usr.sbin/ldpd/tlv_stack.c
326
send_label_tlv(p, addr, prefixlen, label, NULL);
usr.sbin/ldpd/tlv_stack.c
335
struct label *l = NULL;
usr.sbin/ldpd/tlv_stack.c
414
struct label *lab;
usr.sbin/ldpd/tlv_stack.c
66
struct label *lbl_check;
usr.sbin/ldpd/tlv_stack.c
85
debugp("Label %u for:\n", ntohl(l->label));
usr.sbin/makefs/ffs.c
189
{ 'l', "label", ffs_opts->label, OPT_STRARRAY,
usr.sbin/makefs/ffs.c
190
1, sizeof(ffs_opts->label), "UFS label" },
usr.sbin/makefs/ffs.h
45
char label[MAXVOLLEN]; /* volume name/label */
usr.sbin/makefs/ffs/mkfs.c
170
strlcpy((char *)sblock.fs_volname, ffs_opts->label,
usr.sbin/makefs/v7fs.c
173
static char label[32];
usr.sbin/makefs/v7fs.c
182
if (p->label)
usr.sbin/makefs/v7fs.c
183
strcpy(label, p->label);
usr.sbin/makefs/v7fs.c
191
progress_bar(cdev, label, Progress.total, PROGRESS_BAR_GRANULE);
usr.sbin/makefs/v7fs/v7fs_populate.c
288
progress(&(struct progress_arg){ .label = "populate", .tick =
usr.sbin/mlxctl/main.c
122
if (strcmp(cmdname, cmd->label) == 0)
usr.sbin/mlxctl/main.c
61
const char *label;
usr.sbin/mscdlabel/iso9660.c
18
char label[32 + 1], date[] = "yyyy/mm/dd hh:mm", *d;
usr.sbin/mscdlabel/iso9660.c
20
strlcpy(label, vd->volume_id, sizeof(label));
usr.sbin/mscdlabel/iso9660.c
22
d = label + strlen(label);
usr.sbin/mscdlabel/iso9660.c
23
while (d > label && *(d - 1) == ' ')
usr.sbin/mscdlabel/iso9660.c
34
label, date);
usr.sbin/mscdlabel/main.c
130
struct disklabel label;
usr.sbin/mscdlabel/main.c
159
res = ioctl(fd, DIOCGDINFO, &label);
usr.sbin/mscdlabel/main.c
184
p = &label.d_partitions[j];
usr.sbin/mscdlabel/main.c
186
p->p_size = label.d_partitions[rawpart].p_size;
usr.sbin/mscdlabel/main.c
198
if (label.d_npartitions < j)
usr.sbin/mscdlabel/main.c
199
label.d_npartitions = j;
usr.sbin/mscdlabel/main.c
200
strncpy(label.d_packname, "mscdlabel's", 16);
usr.sbin/mscdlabel/main.c
201
label.d_checksum = 0;
usr.sbin/mscdlabel/main.c
202
label.d_checksum = dkcksum(&label);
usr.sbin/mscdlabel/main.c
203
res = ioctl(fd, DIOCSDINFO, &label);
usr.sbin/mtree/compare.c
104
label++; \
usr.sbin/mtree/compare.c
139
int fd, label;
usr.sbin/mtree/compare.c
147
label = 0;
usr.sbin/mtree/compare.c
184
return (label);
usr.sbin/mtree/compare.c
192
return (label);
usr.sbin/mtree/compare.c
197
return (label);
usr.sbin/mtree/compare.c
568
return (label);
usr.sbin/mtree/compare.c
89
#define LABEL if (!label++) MARK
usr.sbin/mtree/compare.c
97
if (!label) { \
usr.sbin/nvmmctl/nvmmctl.c
58
const char *label;
usr.sbin/nvmmctl/nvmmctl.c
80
for (ct = nvmm_cmdtab; ct->label != NULL; ct++) {
usr.sbin/nvmmctl/nvmmctl.c
81
if (strcmp(argv[0], ct->label) == 0) {
usr.sbin/nvmmctl/nvmmctl.c
92
if (ct->label == NULL)
usr.sbin/sunlabel/sunlabel.c
1025
struct part *p = label.partitions;
usr.sbin/sunlabel/sunlabel.c
1031
if (label.spc) {
usr.sbin/sunlabel/sunlabel.c
1032
printf("%u/%u/%u - ", p[i].nblk / label.spc,
usr.sbin/sunlabel/sunlabel.c
1033
(p[i].nblk % label.spc) / label.nsect,
usr.sbin/sunlabel/sunlabel.c
1034
p[i].nblk % label.nsect);
usr.sbin/sunlabel/sunlabel.c
1186
struct part *p = label.partitions;
usr.sbin/sunlabel/sunlabel.c
1195
u.l.d_nsectors = label.nsect;
usr.sbin/sunlabel/sunlabel.c
1196
u.l.d_ntracks = label.nhead;
usr.sbin/sunlabel/sunlabel.c
1197
u.l.d_ncylinders = label.ncyl;
usr.sbin/sunlabel/sunlabel.c
1198
u.l.d_secpercyl = label.nsect * label.nhead;
usr.sbin/sunlabel/sunlabel.c
1199
u.l.d_rpm = label.rpm;
usr.sbin/sunlabel/sunlabel.c
1200
u.l.d_interleave = label.intrlv;
usr.sbin/sunlabel/sunlabel.c
1207
* label.nsect * label.nhead;
usr.sbin/sunlabel/sunlabel.c
1274
if ((cmdline[1] == '!') || !label.dirty)
usr.sbin/sunlabel/sunlabel.c
171
static struct label label; /* The label itself. */
usr.sbin/sunlabel/sunlabel.c
193
{"ascii", &label.asciilabel[0], print_ascii, chval_ascii, 0, 0 },
usr.sbin/sunlabel/sunlabel.c
194
{"rpm", &label.rpm, print_int, chval_int, 0, 0 },
usr.sbin/sunlabel/sunlabel.c
195
{"pcyl", &label.pcyl, print_int, chval_int, 0, 0 },
usr.sbin/sunlabel/sunlabel.c
196
{"apc", &label.apc, print_int, chval_int, 0, 0 },
usr.sbin/sunlabel/sunlabel.c
197
{"obs1", &label.obs1, print_int, chval_int, 0, 0 },
usr.sbin/sunlabel/sunlabel.c
198
{"obs2", &label.obs2, print_int, chval_int, 0, 0 },
usr.sbin/sunlabel/sunlabel.c
199
{"intrlv", &label.intrlv, print_int, chval_int, 0, 0 },
usr.sbin/sunlabel/sunlabel.c
200
{"ncyl", &label.ncyl, print_int, chval_int, 0, 0 },
usr.sbin/sunlabel/sunlabel.c
201
{"acyl", &label.acyl, print_int, chval_int, 0, 0 },
usr.sbin/sunlabel/sunlabel.c
202
{"nhead", &label.nhead, print_int, chval_int, update_spc, 0 },
usr.sbin/sunlabel/sunlabel.c
203
{"nsect", &label.nsect, print_int, chval_int, update_spc, 0 },
usr.sbin/sunlabel/sunlabel.c
204
{"obs3", &label.obs3, print_int, chval_int, 0, 0 },
usr.sbin/sunlabel/sunlabel.c
205
{"obs4", &label.obs4, print_int, chval_int, 0, 0 },
usr.sbin/sunlabel/sunlabel.c
362
if (label.spc == 0) {
usr.sbin/sunlabel/sunlabel.c
365
p->endcyl = p->startcyl + how_many(p->nblk, label.spc);
usr.sbin/sunlabel/sunlabel.c
394
bzero(&label.asciilabel[0], 128);
usr.sbin/sunlabel/sunlabel.c
395
label.rpm = 0;
usr.sbin/sunlabel/sunlabel.c
396
label.pcyl = 0;
usr.sbin/sunlabel/sunlabel.c
397
label.apc = 0;
usr.sbin/sunlabel/sunlabel.c
398
label.obs1 = 0;
usr.sbin/sunlabel/sunlabel.c
399
label.obs2 = 0;
usr.sbin/sunlabel/sunlabel.c
400
label.intrlv = 0;
usr.sbin/sunlabel/sunlabel.c
401
label.ncyl = 0;
usr.sbin/sunlabel/sunlabel.c
402
label.acyl = 0;
usr.sbin/sunlabel/sunlabel.c
403
label.nhead = 0;
usr.sbin/sunlabel/sunlabel.c
404
label.nsect = 0;
usr.sbin/sunlabel/sunlabel.c
405
label.obs3 = 0;
usr.sbin/sunlabel/sunlabel.c
406
label.obs4 = 0;
usr.sbin/sunlabel/sunlabel.c
408
label.partitions[i].startcyl = 0;
usr.sbin/sunlabel/sunlabel.c
409
label.partitions[i].nblk = 0;
usr.sbin/sunlabel/sunlabel.c
410
set_endcyl(&label.partitions[i]);
usr.sbin/sunlabel/sunlabel.c
412
label.spc = 0;
usr.sbin/sunlabel/sunlabel.c
413
label.dirty = 1;
usr.sbin/sunlabel/sunlabel.c
422
label.dirty = 1;
usr.sbin/sunlabel/sunlabel.c
431
label.dirty = 0;
usr.sbin/sunlabel/sunlabel.c
434
label.dirty = 1;
usr.sbin/sunlabel/sunlabel.c
440
(void)memcpy(&label.asciilabel[0], &labelbuf[0], 128);
usr.sbin/sunlabel/sunlabel.c
441
label.rpm = l_s[210];
usr.sbin/sunlabel/sunlabel.c
442
label.pcyl = l_s[211];
usr.sbin/sunlabel/sunlabel.c
443
label.apc = l_s[212];
usr.sbin/sunlabel/sunlabel.c
444
label.obs1 = l_s[213];
usr.sbin/sunlabel/sunlabel.c
445
label.obs2 = l_s[214];
usr.sbin/sunlabel/sunlabel.c
446
label.intrlv = l_s[215];
usr.sbin/sunlabel/sunlabel.c
447
label.ncyl = l_s[216];
usr.sbin/sunlabel/sunlabel.c
448
label.acyl = l_s[217];
usr.sbin/sunlabel/sunlabel.c
449
label.nhead = l_s[218];
usr.sbin/sunlabel/sunlabel.c
450
label.nsect = l_s[219];
usr.sbin/sunlabel/sunlabel.c
451
label.obs3 = l_s[220];
usr.sbin/sunlabel/sunlabel.c
452
label.obs4 = l_s[221];
usr.sbin/sunlabel/sunlabel.c
453
label.spc = label.nhead * label.nsect;
usr.sbin/sunlabel/sunlabel.c
455
label.partitions[i].startcyl = (uint32_t)l_l[i + i + 111];
usr.sbin/sunlabel/sunlabel.c
456
label.partitions[i].nblk = (uint32_t)l_l[i + i + 112];
usr.sbin/sunlabel/sunlabel.c
457
set_endcyl(&label.partitions[i]);
usr.sbin/sunlabel/sunlabel.c
466
label.dirty = 1;
usr.sbin/sunlabel/sunlabel.c
479
label.partitions[i + 8].startcyl = (uint32_t)l_l[j++];
usr.sbin/sunlabel/sunlabel.c
480
label.partitions[i + 8].nblk = (uint32_t)l_l[j++];
usr.sbin/sunlabel/sunlabel.c
481
set_endcyl(&label.partitions[i + 8]);
usr.sbin/sunlabel/sunlabel.c
485
label.partitions[i + 8].startcyl = 0;
usr.sbin/sunlabel/sunlabel.c
486
label.partitions[i + 8].nblk = 0;
usr.sbin/sunlabel/sunlabel.c
487
set_endcyl(&label.partitions[i + 8]);
usr.sbin/sunlabel/sunlabel.c
518
memcpy(&labelbuf[0], &label.asciilabel[0], 128);
usr.sbin/sunlabel/sunlabel.c
521
l_s[210] = label.rpm;
usr.sbin/sunlabel/sunlabel.c
522
l_s[211] = label.pcyl;
usr.sbin/sunlabel/sunlabel.c
523
l_s[212] = label.apc;
usr.sbin/sunlabel/sunlabel.c
524
l_s[213] = label.obs1;
usr.sbin/sunlabel/sunlabel.c
525
l_s[214] = label.obs2;
usr.sbin/sunlabel/sunlabel.c
526
l_s[215] = label.intrlv;
usr.sbin/sunlabel/sunlabel.c
527
l_s[216] = label.ncyl;
usr.sbin/sunlabel/sunlabel.c
528
l_s[217] = label.acyl;
usr.sbin/sunlabel/sunlabel.c
529
l_s[218] = label.nhead;
usr.sbin/sunlabel/sunlabel.c
530
l_s[219] = label.nsect;
usr.sbin/sunlabel/sunlabel.c
531
l_s[220] = label.obs3;
usr.sbin/sunlabel/sunlabel.c
532
l_s[221] = label.obs4;
usr.sbin/sunlabel/sunlabel.c
534
l_s[(i * 4) + 222] = label.partitions[i].startcyl >> 16;
usr.sbin/sunlabel/sunlabel.c
535
l_s[(i * 4) + 223] = label.partitions[i].startcyl & 0xffff;
usr.sbin/sunlabel/sunlabel.c
536
l_s[(i * 4) + 224] = label.partitions[i].nblk >> 16;
usr.sbin/sunlabel/sunlabel.c
537
l_s[(i * 4) + 225] = label.partitions[i].nblk & 0xffff;
usr.sbin/sunlabel/sunlabel.c
540
if (label.partitions[i + 8].startcyl ||
usr.sbin/sunlabel/sunlabel.c
541
label.partitions[i + 8].nblk)
usr.sbin/sunlabel/sunlabel.c
550
l_s[j++] = label.partitions[i + 8].startcyl >> 16;
usr.sbin/sunlabel/sunlabel.c
551
l_s[j++] = label.partitions[i + 8].startcyl & 0xffff;
usr.sbin/sunlabel/sunlabel.c
552
l_s[j++] = label.partitions[i + 8].nblk >> 16;
usr.sbin/sunlabel/sunlabel.c
553
l_s[j++] = label.partitions[i + 8].nblk & 0xffff;
usr.sbin/sunlabel/sunlabel.c
625
label.dirty = 0;
usr.sbin/sunlabel/sunlabel.c
734
cyl0 = label.partitions[epno].endcyl;
usr.sbin/sunlabel/sunlabel.c
743
cyl0 = label.partitions[spno].startcyl;
usr.sbin/sunlabel/sunlabel.c
757
if (label.partitions[epno].endcyl <= cyl0) {
usr.sbin/sunlabel/sunlabel.c
762
size = label.partitions[epno].nblk;
usr.sbin/sunlabel/sunlabel.c
764
if (cyl0 > label.partitions[epno].startcyl) {
usr.sbin/sunlabel/sunlabel.c
765
size -= (cyl0 - label.partitions[epno].startcyl)
usr.sbin/sunlabel/sunlabel.c
766
* label.spc;
usr.sbin/sunlabel/sunlabel.c
767
} else if (cyl0 < label.partitions[epno].startcyl) {
usr.sbin/sunlabel/sunlabel.c
768
size += (label.partitions[epno].startcyl - cyl0)
usr.sbin/sunlabel/sunlabel.c
769
* label.spc;
usr.sbin/sunlabel/sunlabel.c
779
if (label.partitions[spno].startcyl <= cyl0) {
usr.sbin/sunlabel/sunlabel.c
784
size = (label.partitions[spno].startcyl - cyl0)
usr.sbin/sunlabel/sunlabel.c
785
* label.spc;
usr.sbin/sunlabel/sunlabel.c
794
size = label.partitions[spno].nblk;
usr.sbin/sunlabel/sunlabel.c
819
size = sizes + (label.nsect * (sizet
usr.sbin/sunlabel/sunlabel.c
820
+ (label.nhead * sizec)));
usr.sbin/sunlabel/sunlabel.c
823
if (label.spc && (size % label.spc)) {
usr.sbin/sunlabel/sunlabel.c
825
size / label.spc,
usr.sbin/sunlabel/sunlabel.c
826
(size % label.spc) / label.nsect, size % label.nsect);
usr.sbin/sunlabel/sunlabel.c
828
label.partitions[pno].startcyl = cyl0;
usr.sbin/sunlabel/sunlabel.c
829
label.partitions[pno].nblk = size;
usr.sbin/sunlabel/sunlabel.c
830
set_endcyl(&label.partitions[pno]);
usr.sbin/sunlabel/sunlabel.c
831
if ((label.partitions[pno].startcyl * label.spc)
usr.sbin/sunlabel/sunlabel.c
832
+ label.partitions[pno].nblk > label.spc * label.ncyl) {
usr.sbin/sunlabel/sunlabel.c
835
label.dirty = 1;
usr.sbin/sunlabel/sunlabel.c
855
label.dirty = 1;
usr.sbin/sunlabel/sunlabel.c
870
label.dirty = 1;
usr.sbin/sunlabel/sunlabel.c
914
label.spc = label.nhead * label.nsect;
usr.sbin/sunlabel/sunlabel.c
916
set_endcyl(&label.partitions[i]);
usr.sbin/sysinst/gpt.c
1755
const msg label = arg->pscheme->custom_attributes[attr_no].label;
usr.sbin/sysinst/gpt.c
1758
if (label == MSG_ptn_uuid)
usr.sbin/sysinst/gpt.c
1762
if (label == MSG_ptn_label)
usr.sbin/sysinst/gpt.c
1766
if (label == MSG_ptn_gpt_type)
usr.sbin/sysinst/gpt.c
1824
const msg label = parts->dp.pscheme->custom_attributes[attr_no].label;
usr.sbin/sysinst/gpt.c
1832
if (label == MSG_ptn_label)
usr.sbin/sysinst/gpt.c
1834
else if (label == MSG_ptn_uuid)
usr.sbin/sysinst/gpt.c
1836
else if (label == MSG_ptn_gpt_type) {
usr.sbin/sysinst/gpt.c
1841
} else if (label == MSG_ptn_boot)
usr.sbin/sysinst/gpt.c
1869
const msg label = parts->dp.pscheme->custom_attributes[attr_no].label;
usr.sbin/sysinst/gpt.c
1870
if (label != MSG_ptn_boot)
usr.sbin/sysinst/gpt.c
1905
const msg label = parts->dp.pscheme->custom_attributes[attr_no].label;
usr.sbin/sysinst/gpt.c
1907
if (label != MSG_ptn_label)
usr.sbin/sysinst/gpt.c
1925
{ .label = MSG_ptn_label, .type = pet_str },
usr.sbin/sysinst/gpt.c
1926
{ .label = MSG_ptn_uuid, .type = pet_str },
usr.sbin/sysinst/gpt.c
1927
{ .label = MSG_ptn_gpt_type, .type = pet_str },
usr.sbin/sysinst/gpt.c
1928
{ .label = MSG_ptn_boot, .type = pet_bool },
usr.sbin/sysinst/label.c
1176
.label);
usr.sbin/sysinst/label.c
1301
custom_attributes[attr_no].label);
usr.sbin/sysinst/label.c
1324
label, -1, 18, 0, 0, line, line, sizeof(line));
usr.sbin/sysinst/mbr.c
200
dump_mbr(mbr_info_t *m, const char *label)
usr.sbin/sysinst/mbr.c
205
fprintf(stderr, "\n%s: bsec %d\n", label, bsec);
usr.sbin/sysinst/mbr.c
2840
->custom_attributes[data->attr_no].label;
usr.sbin/sysinst/mbr.c
2874
->custom_attributes[data->attr_no].label;
usr.sbin/sysinst/mbr.c
2902
->custom_attributes[data->attr_no].label;
usr.sbin/sysinst/mbr.c
3099
->custom_attributes[data->attr_no].label;
usr.sbin/sysinst/mbr.c
3149
{ .label = MSG_ptn_active, .type = pet_bool },
usr.sbin/sysinst/mbr.c
3151
{ .label = MSG_boot_dflt, .type = pet_bool },
usr.sbin/sysinst/mbr.c
3152
{ .label = MSG_bootmenu, .type = pet_str,
usr.sbin/sysinst/part_edit.c
336
marg->parts->pscheme->custom_attributes[attr_no].label,
usr.sbin/sysinst/part_edit.c
653
marg->parts->pscheme->custom_attributes[n].label));
usr.sbin/sysinst/part_edit.c
667
marg->parts->pscheme->custom_attributes[attr_no].label),
usr.sbin/sysinst/partitions.h
176
msg label; /* Name, like "active partition" */
usr.sbin/sysinst/util.c
470
struct disklabel label;
usr.sbin/sysinst/util.c
499
error = ioctl(dev, DIOCGDINFO, &label);
usr.sbin/sysinst/util.c
504
for (part = 0; part < label.d_npartitions; part++) {
usr.sbin/sysinst/util.c
506
if (label.d_partitions[part].p_fstype == FS_UNUSED
usr.sbin/sysinst/util.c
507
|| label.d_partitions[part].p_size == 0)
usr.sbin/sysinst/util.c
510
if (label.d_partitions[part].p_fstype == FS_ISO9660) {
usr.sbin/sysinst/util.c
511
sess = label.d_partitions[part].p_cdsession;
usr.sbin/tprof/tprof.c
105
const char *label;
usr.sbin/tprof/tprof.c
593
for (ct = tprof_cmdtab; ct->label != NULL; ct++) {
usr.sbin/tprof/tprof.c
594
if (strcmp(argv[0], ct->label) == 0) {
usr.sbin/tprof/tprof.c
604
if (ct->label == NULL) {
usr.sbin/tprof/tprof_top.c
557
#define TS_PRINT(idx, label, _m) \
usr.sbin/tprof/tprof_top.c
560
lim_printf(lim, "%s", label); \
usr.sbin/traceroute/traceroute.c
1185
mpls.mpls.label, mpls.mpls.exp);
usr.sbin/traceroute/traceroute.c
305
uint32_t label:20;
usr.sbin/traceroute/traceroute.c
313
uint32_t label:20;