bin/sh/mknodes.c
137
char tag[BUFLEN];
bin/sh/mknodes.c
143
if (! nextfield(tag))
bin/sh/mknodes.c
149
if (strcmp(sp->tag, tag) == 0)
bin/sh/mknodes.c
153
sp->tag = savestr(tag);
bin/sh/mknodes.c
238
fprintf(hfile, "struct %s {\n", sp->tag);
bin/sh/mknodes.c
247
fprintf(hfile, " struct %s %s;\n", sp->tag, sp->tag);
bin/sh/mknodes.c
292
fprintf(cfile, " ALIGN(sizeof (struct %s)),\n", nodestr[i]->tag);
bin/sh/mknodes.c
329
sp->tag, fp->name);
bin/sh/mknodes.c
333
sp->tag, fp->name, sp->tag, fp->name);
bin/sh/mknodes.c
340
sp->tag, fp->name);
bin/sh/mknodes.c
344
sp->tag, fp->name, sp->tag, fp->name);
bin/sh/mknodes.c
351
sp->tag, fp->name);
bin/sh/mknodes.c
355
sp->tag, fp->name, sp->tag, fp->name);
bin/sh/mknodes.c
363
sp->tag, fp->name, sp->tag, fp->name);
bin/sh/mknodes.c
81
char *tag; /* structure tag */
crypto/libressl/apps/openssl/ca.c
123
static void lookup_fail(const char *name, const char *tag);
crypto/libressl/apps/openssl/ca.c
1593
lookup_fail(const char *name, const char *tag)
crypto/libressl/apps/openssl/ca.c
1595
BIO_printf(bio_err, "variable lookup failed for %s::%s\n", name, tag);
crypto/libressl/crypto/asn1/a_int.c
780
int inf, tag, xclass;
crypto/libressl/crypto/asn1/a_int.c
795
inf = ASN1_get_object(&p, &len, &tag, &xclass, length);
crypto/libressl/crypto/asn1/a_int.c
801
if (tag != V_ASN1_INTEGER) {
crypto/libressl/crypto/asn1/asn1_gen.c
602
return tntmp->tag;
crypto/libressl/crypto/asn1/asn1_gen.c
95
int tag;
crypto/libressl/crypto/asn1/asn1_item.c
438
int i, inf, tag, xclass;
crypto/libressl/crypto/asn1/asn1_item.c
477
inf = ASN1_get_object(&q, &slen, &tag, &xclass, len - off);
crypto/libressl/crypto/asn1/asn1_item.c
498
} else if (eos && slen == 0 && tag == V_ASN1_EOC) {
crypto/libressl/crypto/asn1/asn1_locl.h
207
int asn1_must_be_constructed(int tag);
crypto/libressl/crypto/asn1/asn1_locl.h
208
int asn1_must_be_primitive(int tag);
crypto/libressl/crypto/asn1/asn1_locl.h
209
int asn1_tag2charwidth(int tag);
crypto/libressl/crypto/asn1/asn1_old_lib.c
125
ASN1_put_object(unsigned char **pp, int constructed, int length, int tag,
crypto/libressl/crypto/asn1/asn1_old_lib.c
133
if (tag < 31)
crypto/libressl/crypto/asn1/asn1_old_lib.c
134
*(p++) = i | (tag & V_ASN1_PRIMITIVE_TAG);
crypto/libressl/crypto/asn1/asn1_old_lib.c
137
for(i = 0, ttag = tag; ttag > 0; i++)
crypto/libressl/crypto/asn1/asn1_old_lib.c
141
p[i] = tag & 0x7f;
crypto/libressl/crypto/asn1/asn1_old_lib.c
144
tag >>= 7;
crypto/libressl/crypto/asn1/asn1_old_lib.c
190
ASN1_object_size(int constructed, int length, int tag)
crypto/libressl/crypto/asn1/asn1_old_lib.c
196
if (tag >= 31) {
crypto/libressl/crypto/asn1/asn1_old_lib.c
197
while (tag > 0) {
crypto/libressl/crypto/asn1/asn1_old_lib.c
198
tag >>= 7;
crypto/libressl/crypto/asn1/asn1_par.c
123
int tag, xclass, ret = 0;
crypto/libressl/crypto/asn1/asn1_par.c
142
j = ASN1_get_object(&p, &len, &tag, &xclass, length);
crypto/libressl/crypto/asn1/asn1_par.c
166
if (!asn1_print_info(bp, tag, xclass, j, (indent) ? depth : 0))
crypto/libressl/crypto/asn1/asn1_par.c
209
if ((tag == V_ASN1_PRINTABLESTRING) ||
crypto/libressl/crypto/asn1/asn1_par.c
210
(tag == V_ASN1_T61STRING) ||
crypto/libressl/crypto/asn1/asn1_par.c
211
(tag == V_ASN1_IA5STRING) ||
crypto/libressl/crypto/asn1/asn1_par.c
212
(tag == V_ASN1_VISIBLESTRING) ||
crypto/libressl/crypto/asn1/asn1_par.c
213
(tag == V_ASN1_NUMERICSTRING) ||
crypto/libressl/crypto/asn1/asn1_par.c
214
(tag == V_ASN1_UTF8STRING) ||
crypto/libressl/crypto/asn1/asn1_par.c
215
(tag == V_ASN1_UTCTIME) ||
crypto/libressl/crypto/asn1/asn1_par.c
216
(tag == V_ASN1_GENERALIZEDTIME)) {
crypto/libressl/crypto/asn1/asn1_par.c
223
} else if (tag == V_ASN1_OBJECT) {
crypto/libressl/crypto/asn1/asn1_par.c
235
} else if (tag == V_ASN1_BOOLEAN) {
crypto/libressl/crypto/asn1/asn1_par.c
243
} else if (tag == V_ASN1_BMPSTRING) {
crypto/libressl/crypto/asn1/asn1_par.c
245
} else if (tag == V_ASN1_OCTET_STRING) {
crypto/libressl/crypto/asn1/asn1_par.c
298
} else if (tag == V_ASN1_INTEGER) {
crypto/libressl/crypto/asn1/asn1_par.c
324
} else if (tag == V_ASN1_ENUMERATED) {
crypto/libressl/crypto/asn1/asn1_par.c
367
if ((tag == V_ASN1_EOC) && (xclass == 0)) {
crypto/libressl/crypto/asn1/asn1_par.c
65
static int asn1_print_info(BIO *bp, int tag, int xclass, int constructed,
crypto/libressl/crypto/asn1/asn1_par.c
71
asn1_print_info(BIO *bp, int tag, int xclass, int constructed,
crypto/libressl/crypto/asn1/asn1_par.c
88
snprintf(str, sizeof str, "priv [ %d ] ", tag);
crypto/libressl/crypto/asn1/asn1_par.c
90
snprintf(str, sizeof str, "cont [ %d ]", tag);
crypto/libressl/crypto/asn1/asn1_par.c
92
snprintf(str, sizeof str, "appl [ %d ]", tag);
crypto/libressl/crypto/asn1/asn1_par.c
93
else if (tag > 30)
crypto/libressl/crypto/asn1/asn1_par.c
94
snprintf(str, sizeof str, "<ASN1 %d>", tag);
crypto/libressl/crypto/asn1/asn1_par.c
96
p = ASN1_tag2str(tag);
crypto/libressl/crypto/asn1/asn1_types.c
235
asn1_type_by_tag(int tag)
crypto/libressl/crypto/asn1/asn1_types.c
237
if (tag < 0 || tag > 30)
crypto/libressl/crypto/asn1/asn1_types.c
240
return &asn1_types[tag];
crypto/libressl/crypto/asn1/asn1_types.c
244
asn1_must_be_constructed(int tag)
crypto/libressl/crypto/asn1/asn1_types.c
248
if (tag == V_ASN1_NEG_INTEGER || tag == V_ASN1_NEG_ENUMERATED)
crypto/libressl/crypto/asn1/asn1_types.c
249
tag &= ~V_ASN1_NEG;
crypto/libressl/crypto/asn1/asn1_types.c
250
if ((at = asn1_type_by_tag(tag)) != NULL)
crypto/libressl/crypto/asn1/asn1_types.c
257
asn1_must_be_primitive(int tag)
crypto/libressl/crypto/asn1/asn1_types.c
261
if (tag == V_ASN1_NEG_INTEGER || tag == V_ASN1_NEG_ENUMERATED)
crypto/libressl/crypto/asn1/asn1_types.c
262
tag &= ~V_ASN1_NEG;
crypto/libressl/crypto/asn1/asn1_types.c
263
if ((at = asn1_type_by_tag(tag)) != NULL)
crypto/libressl/crypto/asn1/asn1_types.c
270
asn1_tag2charwidth(int tag)
crypto/libressl/crypto/asn1/asn1_types.c
274
if ((at = asn1_type_by_tag(tag)) != NULL)
crypto/libressl/crypto/asn1/asn1_types.c
281
ASN1_tag2bit(int tag)
crypto/libressl/crypto/asn1/asn1_types.c
285
if ((at = asn1_type_by_tag(tag)) != NULL)
crypto/libressl/crypto/asn1/asn1_types.c
292
ASN1_tag2str(int tag)
crypto/libressl/crypto/asn1/asn1_types.c
296
if (tag == V_ASN1_NEG_INTEGER || tag == V_ASN1_NEG_ENUMERATED)
crypto/libressl/crypto/asn1/asn1_types.c
297
tag &= ~V_ASN1_NEG;
crypto/libressl/crypto/asn1/asn1_types.c
299
if ((at = asn1_type_by_tag(tag)) != NULL)
crypto/libressl/crypto/asn1/tasn_dec.c
1038
tag_number = at->tag;
crypto/libressl/crypto/asn1/tasn_dec.c
1138
tag_number = at->tag;
crypto/libressl/crypto/asn1/tasn_dec.c
1179
&constructed, at->tag, at->flags & ASN1_TFLG_TAG_CLASS, optional);
crypto/libressl/crypto/asn1/tasn_enc.c
134
int tag, int aclass)
crypto/libressl/crypto/asn1/tasn_enc.c
153
tag, aclass);
crypto/libressl/crypto/asn1/tasn_enc.c
154
return asn1_i2d_ex_primitive(pval, out, it, tag, aclass);
crypto/libressl/crypto/asn1/tasn_enc.c
163
if (tag != -1) {
crypto/libressl/crypto/asn1/tasn_enc.c
175
if (tag != -1) {
crypto/libressl/crypto/asn1/tasn_enc.c
198
return ef->asn1_ex_i2d(pval, out, it, tag, aclass);
crypto/libressl/crypto/asn1/tasn_enc.c
217
if (tag == -1) {
crypto/libressl/crypto/asn1/tasn_enc.c
218
tag = V_ASN1_SEQUENCE;
crypto/libressl/crypto/asn1/tasn_enc.c
238
seqlen = ASN1_object_size(ndef, seqcontlen, tag);
crypto/libressl/crypto/asn1/tasn_enc.c
242
ASN1_put_object(out, ndef, seqcontlen, tag, aclass);
crypto/libressl/crypto/asn1/tasn_enc.c
275
const ASN1_TEMPLATE *tt, int tag, int iclass)
crypto/libressl/crypto/asn1/tasn_enc.c
287
if (tag != -1)
crypto/libressl/crypto/asn1/tasn_enc.c
291
ttag = tt->tag;
crypto/libressl/crypto/asn1/tasn_enc.c
293
} else if (tag != -1) {
crypto/libressl/crypto/asn1/tasn_enc.c
295
ttag = tag;
crypto/libressl/crypto/asn1/tasn_enc.c
495
const ASN1_ITEM *it, int tag, int aclass)
crypto/libressl/crypto/asn1/tasn_enc.c
537
if (tag == -1)
crypto/libressl/crypto/asn1/tasn_enc.c
538
tag = utype;
crypto/libressl/crypto/asn1/tasn_enc.c
543
ASN1_put_object(out, ndef, len, tag, aclass);
crypto/libressl/crypto/asn1/tasn_enc.c
553
return ASN1_object_size(ndef, len, tag);
crypto/libressl/crypto/asn1/tasn_enc.c
70
const ASN1_ITEM *it, int tag, int aclass);
crypto/libressl/crypto/asn1/tasn_enc.c
74
const ASN1_TEMPLATE *tt, int tag, int aclass);
crypto/libressl/crypto/asn1/tasn_typ.c
602
.tag = 0,
crypto/libressl/crypto/asn1/tasn_typ.c
620
.tag = 0,
crypto/libressl/crypto/asn1/x_algor.c
89
.tag = 0,
crypto/libressl/crypto/asn1/x_attrib.c
83
.tag = 0,
crypto/libressl/crypto/asn1/x_attrib.c
90
.tag = 0,
crypto/libressl/crypto/asn1/x_exten.c
96
.tag = 0,
crypto/libressl/crypto/asn1/x_name.c
151
.tag = 0,
crypto/libressl/crypto/asn1/x_name.c
169
.tag = 0,
crypto/libressl/crypto/asn1/x_name.c
288
const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx)
crypto/libressl/crypto/asn1/x_name.c
306
&X509_NAME_INTERNAL_it, tag, aclass, opt, ctx);
crypto/libressl/crypto/asn1/x_name.c
349
int tag, int aclass)
crypto/libressl/crypto/asn1/x_name.c
74
long len, const ASN1_ITEM *it, int tag, int aclass, char opt,
crypto/libressl/crypto/asn1/x_name.c
78
const ASN1_ITEM *it, int tag, int aclass);
crypto/libressl/crypto/asn1/x_pubkey.c
368
const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx)
crypto/libressl/crypto/asn1/x_pubkey.c
375
int tag, int aclass)
crypto/libressl/crypto/asn1/x_pubkey.c
462
const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx)
crypto/libressl/crypto/asn1/x_pubkey.c
469
int tag, int aclass)
crypto/libressl/crypto/asn1/x_pubkey.c
552
const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx)
crypto/libressl/crypto/asn1/x_pubkey.c
559
int tag, int aclass)
crypto/libressl/crypto/asn1/x_pubkey.c
643
const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx)
crypto/libressl/crypto/asn1/x_pubkey.c
650
int tag, int aclass)
crypto/libressl/crypto/asn1/x_spki.c
119
.tag = 0,
crypto/libressl/crypto/asn1/x_spki.c
126
.tag = 0,
crypto/libressl/crypto/asn1/x_spki.c
133
.tag = 0,
crypto/libressl/crypto/asn1/x_x509.c
113
.tag = 1,
crypto/libressl/crypto/asn1/x_x509.c
120
.tag = 2,
crypto/libressl/crypto/asn1/x_x509.c
128
.tag = 3,
crypto/libressl/crypto/asn1/x_x509a.c
106
.tag = 1,
crypto/libressl/crypto/asn1/x_x509a.c
86
.tag = 0,
crypto/libressl/crypto/bytestring/bs_ber.c
128
unsigned int tag;
crypto/libressl/crypto/bytestring/bs_ber.c
132
if (!cbs_nonstrict_get_any_asn1_element(in, &contents, &tag,
crypto/libressl/crypto/bytestring/bs_ber.c
154
const char context_specific = (tag & 0xc0)
crypto/libressl/crypto/bytestring/bs_ber.c
157
is_primitive_type(tag);
crypto/libressl/crypto/bytestring/bs_ber.c
169
(tag & CBS_ASN1_CONSTRUCTED)) {
crypto/libressl/crypto/bytestring/bs_ber.c
188
unsigned int out_tag = tag;
crypto/libressl/crypto/bytestring/bs_ber.c
214
if (!CBB_add_asn1(out, &out_contents_storage, tag))
crypto/libressl/crypto/bytestring/bs_ber.c
223
if (tag & CBS_ASN1_CONSTRUCTED) {
crypto/libressl/crypto/bytestring/bs_ber.c
58
unsigned int tag;
crypto/libressl/crypto/bytestring/bs_ber.c
61
if (!cbs_nonstrict_get_any_asn1_element(&in, &contents, &tag,
crypto/libressl/crypto/bytestring/bs_ber.c
71
if (tag & CBS_ASN1_CONSTRUCTED) {
crypto/libressl/crypto/bytestring/bs_ber.c
90
is_primitive_type(unsigned int tag)
crypto/libressl/crypto/bytestring/bs_ber.c
92
return (tag & 0xc0) == 0 &&
crypto/libressl/crypto/bytestring/bs_ber.c
93
(tag & 0x1f) != (CBS_ASN1_SEQUENCE & 0x1f) &&
crypto/libressl/crypto/bytestring/bs_ber.c
94
(tag & 0x1f) != (CBS_ASN1_SET & 0x1f);
crypto/libressl/crypto/bytestring/bs_cbb.c
331
CBB_add_asn1(CBB *cbb, CBB *out_contents, unsigned int tag)
crypto/libressl/crypto/bytestring/bs_cbb.c
333
if (tag > UINT8_MAX)
crypto/libressl/crypto/bytestring/bs_cbb.c
337
if ((tag & 0x1f) == 0x1f)
crypto/libressl/crypto/bytestring/bs_cbb.c
341
if (!CBB_flush(cbb) || !CBB_add_u8(cbb, tag))
crypto/libressl/crypto/bytestring/bs_cbs.c
360
uint8_t tag, length_byte;
crypto/libressl/crypto/bytestring/bs_cbs.c
372
if (!CBS_get_u8(&header, &tag) || !CBS_get_u8(&header, &length_byte))
crypto/libressl/crypto/bytestring/bs_cbs.c
376
if ((tag & 0x1f) == 0x1f)
crypto/libressl/crypto/bytestring/bs_cbs.c
380
*out_tag = tag;
crypto/libressl/crypto/bytestring/bs_cbs.c
404
if ((tag & CBS_ASN1_CONSTRUCTED) == 0)
crypto/libressl/crypto/bytestring/bs_cbs.c
446
unsigned int tag;
crypto/libressl/crypto/bytestring/bs_cbs.c
452
if (!CBS_get_any_asn1_element(cbs, out, &tag, &header_len) ||
crypto/libressl/crypto/bytestring/bs_cbs.c
453
tag != tag_value)
crypto/libressl/crypto/bytestring/bs_cbs.c
530
CBS_get_optional_asn1(CBS *cbs, CBS *out, int *out_present, unsigned int tag)
crypto/libressl/crypto/bytestring/bs_cbs.c
532
if (CBS_peek_asn1_tag(cbs, tag)) {
crypto/libressl/crypto/bytestring/bs_cbs.c
533
if (!CBS_get_asn1(cbs, out, tag))
crypto/libressl/crypto/bytestring/bs_cbs.c
545
unsigned int tag)
crypto/libressl/crypto/bytestring/bs_cbs.c
550
if (!CBS_get_optional_asn1(cbs, &child, &present, tag))
crypto/libressl/crypto/bytestring/bs_cbs.c
567
CBS_get_optional_asn1_uint64(CBS *cbs, uint64_t *out, unsigned int tag,
crypto/libressl/crypto/bytestring/bs_cbs.c
573
if (!CBS_get_optional_asn1(cbs, &child, &present, tag))
crypto/libressl/crypto/bytestring/bs_cbs.c
587
CBS_get_optional_asn1_bool(CBS *cbs, int *out, unsigned int tag,
crypto/libressl/crypto/bytestring/bs_cbs.c
593
if (!CBS_get_optional_asn1(cbs, &child, &present, tag))
crypto/libressl/crypto/bytestring/bytestring.h
304
unsigned int tag);
crypto/libressl/crypto/bytestring/bytestring.h
315
unsigned int tag);
crypto/libressl/crypto/bytestring/bytestring.h
324
int CBS_get_optional_asn1_uint64(CBS *cbs, uint64_t *out, unsigned int tag,
crypto/libressl/crypto/bytestring/bytestring.h
334
int CBS_get_optional_asn1_bool(CBS *cbs, int *out, unsigned int tag,
crypto/libressl/crypto/bytestring/bytestring.h
471
int CBB_add_asn1(CBB *cbb, CBB *out_contents, unsigned int tag);
crypto/libressl/crypto/cms/cms_asn1.c
1003
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1010
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1017
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1024
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1031
.tag = 1,
crypto/libressl/crypto/cms/cms_asn1.c
1051
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1058
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1065
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1072
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1092
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1099
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1106
.tag = 1,
crypto/libressl/crypto/cms/cms_asn1.c
1126
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1133
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1140
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1147
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1154
.tag = 1,
crypto/libressl/crypto/cms/cms_asn1.c
1161
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1168
.tag = 2,
crypto/libressl/crypto/cms/cms_asn1.c
1175
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1182
.tag = 3,
crypto/libressl/crypto/cms/cms_asn1.c
119
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1202
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1209
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1216
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1237
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1248
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1259
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
126
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1270
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1281
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1292
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1303
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1314
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
133
.tag = 1,
crypto/libressl/crypto/cms/cms_asn1.c
1375
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1382
.tag = -1,
crypto/libressl/crypto/cms/cms_asn1.c
140
.tag = 2,
crypto/libressl/crypto/cms/cms_asn1.c
1408
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1431
.tag = V_ASN1_SET,
crypto/libressl/crypto/cms/cms_asn1.c
1452
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1459
.tag = 1,
crypto/libressl/crypto/cms/cms_asn1.c
147
.tag = 3,
crypto/libressl/crypto/cms/cms_asn1.c
1479
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1486
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1493
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1513
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1520
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1527
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1534
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1565
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1572
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
1579
.tag = 2,
crypto/libressl/crypto/cms/cms_asn1.c
167
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
174
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
194
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
201
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
242
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
249
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
256
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
263
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
270
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
277
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
284
.tag = 1,
crypto/libressl/crypto/cms/cms_asn1.c
304
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
311
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
331
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
338
.tag = 1,
crypto/libressl/crypto/cms/cms_asn1.c
358
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
365
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
372
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
379
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
386
.tag = 1,
crypto/libressl/crypto/cms/cms_asn1.c
393
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
413
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
420
.tag = 1,
crypto/libressl/crypto/cms/cms_asn1.c
440
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
447
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
454
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
474
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
481
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
488
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
495
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
515
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
522
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
542
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
549
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
556
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
576
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
583
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
621
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
628
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
648
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
65
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
655
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
675
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
682
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
689
.tag = 1,
crypto/libressl/crypto/cms/cms_asn1.c
72
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
734
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
741
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
748
.tag = 1,
crypto/libressl/crypto/cms/cms_asn1.c
755
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
762
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
782
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
789
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
796
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
816
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
823
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
830
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
837
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
857
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
864
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
871
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
878
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
898
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
905
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
92
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
955
.tag = 0,
crypto/libressl/crypto/cms/cms_asn1.c
962
.tag = 1,
crypto/libressl/crypto/cms/cms_asn1.c
969
.tag = 2,
crypto/libressl/crypto/cms/cms_asn1.c
976
.tag = 3,
crypto/libressl/crypto/cms/cms_asn1.c
983
.tag = 4,
crypto/libressl/crypto/cms/cms_asn1.c
99
.tag = 0,
crypto/libressl/crypto/dh/dh_asn1.c
103
.tag = 0,
crypto/libressl/crypto/dh/dh_asn1.c
110
.tag = 0,
crypto/libressl/crypto/dh/dh_asn1.c
96
.tag = 0,
crypto/libressl/crypto/dsa/dsa_asn1.c
104
.tag = 0,
crypto/libressl/crypto/dsa/dsa_asn1.c
186
.tag = 0,
crypto/libressl/crypto/dsa/dsa_asn1.c
193
.tag = 0,
crypto/libressl/crypto/dsa/dsa_asn1.c
200
.tag = 0,
crypto/libressl/crypto/dsa/dsa_asn1.c
207
.tag = 0,
crypto/libressl/crypto/dsa/dsa_asn1.c
214
.tag = 0,
crypto/libressl/crypto/dsa/dsa_asn1.c
221
.tag = 0,
crypto/libressl/crypto/dsa/dsa_asn1.c
263
.tag = 0,
crypto/libressl/crypto/dsa/dsa_asn1.c
270
.tag = 0,
crypto/libressl/crypto/dsa/dsa_asn1.c
277
.tag = 0,
crypto/libressl/crypto/dsa/dsa_asn1.c
343
.tag = 0,
crypto/libressl/crypto/dsa/dsa_asn1.c
350
.tag = 0,
crypto/libressl/crypto/dsa/dsa_asn1.c
357
.tag = 0,
crypto/libressl/crypto/dsa/dsa_asn1.c
364
.tag = 0,
crypto/libressl/crypto/dsa/dsa_asn1.c
97
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
207
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
214
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
221
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
255
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
266
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
277
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
288
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
309
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
316
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
323
.tag = -1,
crypto/libressl/crypto/ec/ec_asn1.c
357
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
368
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
379
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
400
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
407
.tag = -1,
crypto/libressl/crypto/ec/ec_asn1.c
427
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
434
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
441
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
461
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
468
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
475
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
482
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
489
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
496
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
531
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
538
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
545
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
595
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
602
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
609
.tag = 0,
crypto/libressl/crypto/ec/ec_asn1.c
616
.tag = 1,
crypto/libressl/crypto/ecdsa/ecs_asn1.c
63
.tag = 0,
crypto/libressl/crypto/ecdsa/ecs_asn1.c
70
.tag = 0,
crypto/libressl/crypto/evp/e_aes.c
2096
unsigned char tag[16];
crypto/libressl/crypto/evp/e_aes.c
2097
if (CRYPTO_ccm128_tag(ccm, tag, cctx->M)) {
crypto/libressl/crypto/evp/e_aes.c
2098
if (!memcmp(tag, ctx->buf, cctx->M))
crypto/libressl/crypto/evp/e_aes.c
2337
unsigned char tag[EVP_AEAD_AES_GCM_TAG_LEN];
crypto/libressl/crypto/evp/e_aes.c
2375
CRYPTO_gcm128_tag(&gcm, tag, gcm_ctx->tag_len);
crypto/libressl/crypto/evp/e_aes.c
2376
if (timingsafe_memcmp(tag, in + plaintext_len, gcm_ctx->tag_len) != 0) {
crypto/libressl/crypto/evp/e_chacha20poly1305.c
162
unsigned char tag[POLY1305_TAG_LEN];
crypto/libressl/crypto/evp/e_chacha20poly1305.c
163
CRYPTO_poly1305_finish(&poly1305, tag);
crypto/libressl/crypto/evp/e_chacha20poly1305.c
164
memcpy(out + in_len, tag, c20_ctx->tag_len);
crypto/libressl/crypto/evp/e_chacha20poly1305.c
267
unsigned char tag[POLY1305_TAG_LEN];
crypto/libressl/crypto/evp/e_chacha20poly1305.c
268
CRYPTO_poly1305_finish(&poly1305, tag);
crypto/libressl/crypto/evp/e_chacha20poly1305.c
269
memcpy(out + in_len, tag, c20_ctx->tag_len);
crypto/libressl/crypto/evp/e_chacha20poly1305.c
377
unsigned char tag[POLY1305_TAG_LEN];
crypto/libressl/crypto/evp/e_chacha20poly1305.c
514
CRYPTO_poly1305_finish(&cpx->poly1305, cpx->tag);
crypto/libressl/crypto/evp/e_chacha20poly1305.c
515
cpx->tag_len = sizeof(cpx->tag);
crypto/libressl/crypto/evp/e_chacha20poly1305.c
517
unsigned char tag[POLY1305_TAG_LEN];
crypto/libressl/crypto/evp/e_chacha20poly1305.c
523
CRYPTO_poly1305_finish(&cpx->poly1305, tag);
crypto/libressl/crypto/evp/e_chacha20poly1305.c
524
if (timingsafe_memcmp(tag, cpx->tag, cpx->tag_len) != 0)
crypto/libressl/crypto/evp/e_chacha20poly1305.c
561
if (arg <= 0 || arg > sizeof(cpx->tag))
crypto/libressl/crypto/evp/e_chacha20poly1305.c
564
memcpy(cpx->tag, ptr, arg);
crypto/libressl/crypto/evp/e_chacha20poly1305.c
574
memcpy(ptr, cpx->tag, arg);
crypto/libressl/crypto/gost/gost_asn1.c
127
.tag = 0,
crypto/libressl/crypto/gost/gost_asn1.c
134
.tag = 0,
crypto/libressl/crypto/gost/gost_asn1.c
141
.tag = 0,
crypto/libressl/crypto/gost/gost_asn1.c
187
.tag = 0,
crypto/libressl/crypto/gost/gost_asn1.c
194
.tag = 0,
crypto/libressl/crypto/gost/gost_asn1.c
201
.tag = 0,
crypto/libressl/crypto/gost/gost_asn1.c
23
.tag = 0,
crypto/libressl/crypto/gost/gost_asn1.c
246
.tag = 0,
crypto/libressl/crypto/gost/gost_asn1.c
253
.tag = 0,
crypto/libressl/crypto/gost/gost_asn1.c
30
.tag = 0,
crypto/libressl/crypto/gost/gost_asn1.c
75
.tag = 0,
crypto/libressl/crypto/gost/gost_asn1.c
82
.tag = 0,
crypto/libressl/crypto/modes/ccm128.c
434
size_t CRYPTO_ccm128_tag(CCM128_CONTEXT *ctx,unsigned char *tag,size_t len)
crypto/libressl/crypto/modes/ccm128.c
439
memcpy(tag,ctx->cmac.c,M);
crypto/libressl/crypto/modes/gcm128.c
1501
int CRYPTO_gcm128_finish(GCM128_CONTEXT *ctx,const unsigned char *tag,
crypto/libressl/crypto/modes/gcm128.c
1537
if (tag && len<=sizeof(ctx->Xi))
crypto/libressl/crypto/modes/gcm128.c
1538
return memcmp(ctx->Xi.c,tag,len);
crypto/libressl/crypto/modes/gcm128.c
1543
void CRYPTO_gcm128_tag(GCM128_CONTEXT *ctx, unsigned char *tag, size_t len)
crypto/libressl/crypto/modes/gcm128.c
1546
memcpy(tag, ctx->Xi.c, len<=sizeof(ctx->Xi.c)?len:sizeof(ctx->Xi.c));
crypto/libressl/crypto/ocsp/ocsp_asn.c
127
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
134
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
141
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
148
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
194
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
201
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
247
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
254
.tag = 1,
crypto/libressl/crypto/ocsp/ocsp_asn.c
261
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
268
.tag = 2,
crypto/libressl/crypto/ocsp/ocsp_asn.c
314
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
321
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
380
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
387
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
433
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
440
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
498
.tag = 1,
crypto/libressl/crypto/ocsp/ocsp_asn.c
505
.tag = 2,
crypto/libressl/crypto/ocsp/ocsp_asn.c
551
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
558
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
604
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
611
.tag = 1,
crypto/libressl/crypto/ocsp/ocsp_asn.c
618
.tag = 2,
crypto/libressl/crypto/ocsp/ocsp_asn.c
664
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
67
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
671
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
678
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
685
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
692
.tag = 1,
crypto/libressl/crypto/ocsp/ocsp_asn.c
738
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
74
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
745
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
752
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
759
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
766
.tag = 1,
crypto/libressl/crypto/ocsp/ocsp_asn.c
81
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
812
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
819
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
826
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
833
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
879
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
886
.tag = 1,
crypto/libressl/crypto/ocsp/ocsp_asn.c
893
.tag = 2,
crypto/libressl/crypto/ocsp/ocsp_asn.c
939
.tag = 0,
crypto/libressl/crypto/ocsp/ocsp_asn.c
946
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
131
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
138
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
145
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
190
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
201
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
212
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
223
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
244
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
251
.tag = -1,
crypto/libressl/crypto/pkcs12/p12_asn.c
296
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
307
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
318
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
329
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
339
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
350
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
361
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
382
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
389
.tag = -1,
crypto/libressl/crypto/pkcs12/p12_asn.c
396
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
442
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
461
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
71
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
78
.tag = 0,
crypto/libressl/crypto/pkcs12/p12_asn.c
85
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
104
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
115
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
126
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
137
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
193
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
200
.tag = -1,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
258
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
265
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
272
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
279
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
286
.tag = 1,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
293
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
358
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
365
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
372
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
384
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
391
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
398
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
405
.tag = 1,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
451
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
458
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
504
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
511
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
518
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
583
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
590
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
597
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
604
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
650
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
657
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
664
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
71
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
710
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
717
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
724
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
731
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
738
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
745
.tag = 1,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
752
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
798
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
805
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
82
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
851
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
858
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
865
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
872
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
923
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
93
.tag = 0,
crypto/libressl/crypto/pkcs7/pk7_asn1.c
945
.tag = V_ASN1_SET,
crypto/libressl/crypto/rsa/rsa_asn1.c
103
.tag = 0,
crypto/libressl/crypto/rsa/rsa_asn1.c
110
.tag = 0,
crypto/libressl/crypto/rsa/rsa_asn1.c
117
.tag = 0,
crypto/libressl/crypto/rsa/rsa_asn1.c
124
.tag = 0,
crypto/libressl/crypto/rsa/rsa_asn1.c
131
.tag = 0,
crypto/libressl/crypto/rsa/rsa_asn1.c
138
.tag = 0,
crypto/libressl/crypto/rsa/rsa_asn1.c
145
.tag = 0,
crypto/libressl/crypto/rsa/rsa_asn1.c
152
.tag = 0,
crypto/libressl/crypto/rsa/rsa_asn1.c
181
.tag = 0,
crypto/libressl/crypto/rsa/rsa_asn1.c
188
.tag = 0,
crypto/libressl/crypto/rsa/rsa_asn1.c
228
.tag = 0,
crypto/libressl/crypto/rsa/rsa_asn1.c
235
.tag = 1,
crypto/libressl/crypto/rsa/rsa_asn1.c
242
.tag = 2,
crypto/libressl/crypto/rsa/rsa_asn1.c
249
.tag = 3,
crypto/libressl/crypto/rsa/rsa_asn1.c
314
.tag = 0,
crypto/libressl/crypto/rsa/rsa_asn1.c
321
.tag = 1,
crypto/libressl/crypto/rsa/rsa_asn1.c
328
.tag = 2,
crypto/libressl/crypto/rsa/rsa_asn1.c
96
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
154
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
161
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
168
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
175
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
182
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
189
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
267
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
274
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
281
.tag = 1,
crypto/libressl/crypto/ts/ts_asn1.c
333
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
340
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
347
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
354
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
361
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
368
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
375
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
382
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
389
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
396
.tag = 1,
crypto/libressl/crypto/ts/ts_asn1.c
474
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
481
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
488
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
592
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
599
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
677
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
684
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
69
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
736
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
743
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
76
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
795
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
802
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
854
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
861
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
868
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
919
.tag = 0,
crypto/libressl/crypto/ts/ts_asn1.c
926
.tag = 0,
crypto/libressl/crypto/ts/ts_conf.c
168
TS_CONF_lookup_fail(const char *name, const char *tag)
crypto/libressl/crypto/ts/ts_conf.c
170
fprintf(stderr, "variable lookup failed for %s::%s\n", name, tag);
crypto/libressl/crypto/ts/ts_conf.c
174
TS_CONF_invalid(const char *name, const char *tag)
crypto/libressl/crypto/ts/ts_conf.c
176
fprintf(stderr, "invalid variable value for %s::%s\n", name, tag);
crypto/libressl/crypto/x509/x509_addr.c
116
.tag = 0,
crypto/libressl/crypto/x509/x509_addr.c
123
.tag = 0,
crypto/libressl/crypto/x509/x509_addr.c
143
.tag = 0,
crypto/libressl/crypto/x509/x509_addr.c
150
.tag = 0,
crypto/libressl/crypto/x509/x509_addr.c
170
.tag = 0,
crypto/libressl/crypto/x509/x509_addr.c
177
.tag = 0,
crypto/libressl/crypto/x509/x509_addr.c
196
.tag = 0,
crypto/libressl/crypto/x509/x509_addr.c
89
.tag = 0,
crypto/libressl/crypto/x509/x509_addr.c
96
.tag = 0,
crypto/libressl/crypto/x509/x509_akeya.c
69
.tag = 0,
crypto/libressl/crypto/x509/x509_akeya.c
76
.tag = 1,
crypto/libressl/crypto/x509/x509_akeya.c
83
.tag = 2,
crypto/libressl/crypto/x509/x509_asid.c
110
.tag = 0,
crypto/libressl/crypto/x509/x509_asid.c
117
.tag = 0,
crypto/libressl/crypto/x509/x509_asid.c
137
.tag = 0,
crypto/libressl/crypto/x509/x509_asid.c
144
.tag = 0,
crypto/libressl/crypto/x509/x509_asid.c
164
.tag = 0,
crypto/libressl/crypto/x509/x509_asid.c
171
.tag = 1,
crypto/libressl/crypto/x509/x509_asid.c
83
.tag = 0,
crypto/libressl/crypto/x509/x509_asid.c
90
.tag = 0,
crypto/libressl/crypto/x509/x509_bcons.c
100
.tag = 0,
crypto/libressl/crypto/x509/x509_bcons.c
93
.tag = 0,
crypto/libressl/crypto/x509/x509_cpols.c
105
.tag = 0,
crypto/libressl/crypto/x509/x509_cpols.c
150
.tag = 0,
crypto/libressl/crypto/x509/x509_cpols.c
157
.tag = 0,
crypto/libressl/crypto/x509/x509_cpols.c
202
.tag = 0,
crypto/libressl/crypto/x509/x509_cpols.c
213
.tag = 0,
crypto/libressl/crypto/x509/x509_cpols.c
224
.tag = 0,
crypto/libressl/crypto/x509/x509_cpols.c
245
.tag = 0,
crypto/libressl/crypto/x509/x509_cpols.c
252
.tag = -1,
crypto/libressl/crypto/x509/x509_cpols.c
298
.tag = 0,
crypto/libressl/crypto/x509/x509_cpols.c
305
.tag = 0,
crypto/libressl/crypto/x509/x509_cpols.c
351
.tag = 0,
crypto/libressl/crypto/x509/x509_cpols.c
358
.tag = 0,
crypto/libressl/crypto/x509/x509_crld.c
397
.tag = 0,
crypto/libressl/crypto/x509/x509_crld.c
404
.tag = 1,
crypto/libressl/crypto/x509/x509_crld.c
451
.tag = 0,
crypto/libressl/crypto/x509/x509_crld.c
458
.tag = 1,
crypto/libressl/crypto/x509/x509_crld.c
465
.tag = 2,
crypto/libressl/crypto/x509/x509_crld.c
510
.tag = 0,
crypto/libressl/crypto/x509/x509_crld.c
555
.tag = 0,
crypto/libressl/crypto/x509/x509_crld.c
562
.tag = 1,
crypto/libressl/crypto/x509/x509_crld.c
569
.tag = 2,
crypto/libressl/crypto/x509/x509_crld.c
576
.tag = 3,
crypto/libressl/crypto/x509/x509_crld.c
583
.tag = 4,
crypto/libressl/crypto/x509/x509_crld.c
590
.tag = 5,
crypto/libressl/crypto/x509/x509_extku.c
108
.tag = 0,
crypto/libressl/crypto/x509/x509_genn.c
124
.tag = 0,
crypto/libressl/crypto/x509/x509_genn.c
131
.tag = 1,
crypto/libressl/crypto/x509/x509_genn.c
177
.tag = GEN_OTHERNAME,
crypto/libressl/crypto/x509/x509_genn.c
184
.tag = GEN_EMAIL,
crypto/libressl/crypto/x509/x509_genn.c
191
.tag = GEN_DNS,
crypto/libressl/crypto/x509/x509_genn.c
199
.tag = GEN_X400,
crypto/libressl/crypto/x509/x509_genn.c
207
.tag = GEN_DIRNAME,
crypto/libressl/crypto/x509/x509_genn.c
214
.tag = GEN_EDIPARTY,
crypto/libressl/crypto/x509/x509_genn.c
221
.tag = GEN_URI,
crypto/libressl/crypto/x509/x509_genn.c
228
.tag = GEN_IPADD,
crypto/libressl/crypto/x509/x509_genn.c
235
.tag = GEN_RID,
crypto/libressl/crypto/x509/x509_genn.c
280
.tag = 0,
crypto/libressl/crypto/x509/x509_genn.c
69
.tag = 0,
crypto/libressl/crypto/x509/x509_genn.c
77
.tag = 0,
crypto/libressl/crypto/x509/x509_info.c
111
.tag = 0,
crypto/libressl/crypto/x509/x509_info.c
118
.tag = 0,
crypto/libressl/crypto/x509/x509_info.c
163
.tag = 0,
crypto/libressl/crypto/x509/x509_ncons.c
104
.tag = 0,
crypto/libressl/crypto/x509/x509_ncons.c
111
.tag = 0,
crypto/libressl/crypto/x509/x509_ncons.c
118
.tag = 1,
crypto/libressl/crypto/x509/x509_ncons.c
138
.tag = 0,
crypto/libressl/crypto/x509/x509_ncons.c
145
.tag = 1,
crypto/libressl/crypto/x509/x509_pcia.c
104
.tag = 0,
crypto/libressl/crypto/x509/x509_pcia.c
44
.tag = 0,
crypto/libressl/crypto/x509/x509_pcia.c
51
.tag = 0,
crypto/libressl/crypto/x509/x509_pcia.c
97
.tag = 0,
crypto/libressl/crypto/x509/x509_pcons.c
101
.tag = 1,
crypto/libressl/crypto/x509/x509_pcons.c
94
.tag = 0,
crypto/libressl/crypto/x509/x509_pku.c
88
.tag = 0,
crypto/libressl/crypto/x509/x509_pku.c
95
.tag = 1,
crypto/libressl/crypto/x509/x509_pmaps.c
118
.tag = 0,
crypto/libressl/crypto/x509/x509_pmaps.c
92
.tag = 0,
crypto/libressl/crypto/x509/x509_pmaps.c
99
.tag = 0,
crypto/libressl/crypto/x509/x509_sxnet.c
103
.tag = 0,
crypto/libressl/crypto/x509/x509_sxnet.c
110
.tag = 0,
crypto/libressl/crypto/x509/x509_sxnet.c
156
.tag = 0,
crypto/libressl/crypto/x509/x509_sxnet.c
163
.tag = 0,
crypto/libressl/include/openssl/asn1.h
771
void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag,
crypto/libressl/include/openssl/asn1.h
774
int ASN1_object_size(int constructed, int length, int tag);
crypto/libressl/include/openssl/asn1.h
845
unsigned long ASN1_tag2bit(int tag);
crypto/libressl/include/openssl/asn1.h
846
const char *ASN1_tag2str(int tag);
crypto/libressl/include/openssl/asn1t.h
337
#define ASN1_EX_TEMPLATE_TYPE(flags, tag, name, type) { \
crypto/libressl/include/openssl/asn1t.h
338
(flags), (tag), 0,\
crypto/libressl/include/openssl/asn1t.h
345
#define ASN1_EX_TYPE(flags, tag, stname, field, type) { \
crypto/libressl/include/openssl/asn1t.h
346
(flags), (tag), offsetof(stname, field),\
crypto/libressl/include/openssl/asn1t.h
351
#define ASN1_IMP_EX(stname, field, type, tag, ex) \
crypto/libressl/include/openssl/asn1t.h
352
ASN1_EX_TYPE(ASN1_TFLG_IMPLICIT | ex, tag, stname, field, type)
crypto/libressl/include/openssl/asn1t.h
354
#define ASN1_EXP_EX(stname, field, type, tag, ex) \
crypto/libressl/include/openssl/asn1t.h
355
ASN1_EX_TYPE(ASN1_TFLG_EXPLICIT | ex, tag, stname, field, type)
crypto/libressl/include/openssl/asn1t.h
368
#define ASN1_IMP(stname, field, type, tag) ASN1_IMP_EX(stname, field, type, tag, 0)
crypto/libressl/include/openssl/asn1t.h
371
#define ASN1_IMP_OPT(stname, field, type, tag) ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_OPTIONAL)
crypto/libressl/include/openssl/asn1t.h
375
#define ASN1_EXP(stname, field, type, tag) ASN1_EXP_EX(stname, field, type, tag, 0)
crypto/libressl/include/openssl/asn1t.h
376
#define ASN1_EXP_OPT(stname, field, type, tag) ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_OPTIONAL)
crypto/libressl/include/openssl/asn1t.h
396
#define ASN1_IMP_SET_OF(stname, field, type, tag) \
crypto/libressl/include/openssl/asn1t.h
397
ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_SET_OF)
crypto/libressl/include/openssl/asn1t.h
399
#define ASN1_EXP_SET_OF(stname, field, type, tag) \
crypto/libressl/include/openssl/asn1t.h
400
ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_SET_OF)
crypto/libressl/include/openssl/asn1t.h
402
#define ASN1_IMP_SET_OF_OPT(stname, field, type, tag) \
crypto/libressl/include/openssl/asn1t.h
403
ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_SET_OF|ASN1_TFLG_OPTIONAL)
crypto/libressl/include/openssl/asn1t.h
405
#define ASN1_EXP_SET_OF_OPT(stname, field, type, tag) \
crypto/libressl/include/openssl/asn1t.h
406
ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_SET_OF|ASN1_TFLG_OPTIONAL)
crypto/libressl/include/openssl/asn1t.h
408
#define ASN1_IMP_SEQUENCE_OF(stname, field, type, tag) \
crypto/libressl/include/openssl/asn1t.h
409
ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_SEQUENCE_OF)
crypto/libressl/include/openssl/asn1t.h
411
#define ASN1_IMP_SEQUENCE_OF_OPT(stname, field, type, tag) \
crypto/libressl/include/openssl/asn1t.h
412
ASN1_IMP_EX(stname, field, type, tag, ASN1_TFLG_SEQUENCE_OF|ASN1_TFLG_OPTIONAL)
crypto/libressl/include/openssl/asn1t.h
414
#define ASN1_EXP_SEQUENCE_OF(stname, field, type, tag) \
crypto/libressl/include/openssl/asn1t.h
415
ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_SEQUENCE_OF)
crypto/libressl/include/openssl/asn1t.h
417
#define ASN1_EXP_SEQUENCE_OF_OPT(stname, field, type, tag) \
crypto/libressl/include/openssl/asn1t.h
418
ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_SEQUENCE_OF|ASN1_TFLG_OPTIONAL)
crypto/libressl/include/openssl/asn1t.h
421
#define ASN1_NDEF_EXP(stname, field, type, tag) \
crypto/libressl/include/openssl/asn1t.h
422
ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_NDEF)
crypto/libressl/include/openssl/asn1t.h
425
#define ASN1_NDEF_EXP_OPT(stname, field, type, tag) \
crypto/libressl/include/openssl/asn1t.h
426
ASN1_EXP_EX(stname, field, type, tag, ASN1_TFLG_OPTIONAL|ASN1_TFLG_NDEF)
crypto/libressl/include/openssl/asn1t.h
462
long tag; /* tag, not used if no tagging */
crypto/libressl/include/openssl/asn1t.h
655
int tag, int aclass, char opt, ASN1_TLC *ctx);
crypto/libressl/include/openssl/asn1t.h
657
typedef int ASN1_ex_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass);
crypto/libressl/include/openssl/asn1t.h
774
#define IMPLEMENT_EXTERN_ASN1(sname, tag, fptrs) \
crypto/libressl/include/openssl/asn1t.h
777
tag, \
crypto/libressl/include/openssl/asn1t.h
905
int tag, int aclass, char opt, ASN1_TLC *ctx);
crypto/libressl/include/openssl/asn1t.h
907
int ASN1_item_ex_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass);
crypto/libressl/include/openssl/modes.h
112
int CRYPTO_gcm128_finish(GCM128_CONTEXT *ctx,const unsigned char *tag,
crypto/libressl/include/openssl/modes.h
114
void CRYPTO_gcm128_tag(GCM128_CONTEXT *ctx, unsigned char *tag, size_t len);
crypto/libressl/include/openssl/modes.h
135
size_t CRYPTO_ccm128_tag(CCM128_CONTEXT *ctx, unsigned char *tag, size_t len);
crypto/libressl/ssl/bs_cbb.c
331
CBB_add_asn1(CBB *cbb, CBB *out_contents, unsigned int tag)
crypto/libressl/ssl/bs_cbb.c
333
if (tag > UINT8_MAX)
crypto/libressl/ssl/bs_cbb.c
337
if ((tag & 0x1f) == 0x1f)
crypto/libressl/ssl/bs_cbb.c
341
if (!CBB_flush(cbb) || !CBB_add_u8(cbb, tag))
crypto/libressl/ssl/bs_cbs.c
360
uint8_t tag, length_byte;
crypto/libressl/ssl/bs_cbs.c
372
if (!CBS_get_u8(&header, &tag) || !CBS_get_u8(&header, &length_byte))
crypto/libressl/ssl/bs_cbs.c
376
if ((tag & 0x1f) == 0x1f)
crypto/libressl/ssl/bs_cbs.c
380
*out_tag = tag;
crypto/libressl/ssl/bs_cbs.c
404
if ((tag & CBS_ASN1_CONSTRUCTED) == 0)
crypto/libressl/ssl/bs_cbs.c
446
unsigned int tag;
crypto/libressl/ssl/bs_cbs.c
452
if (!CBS_get_any_asn1_element(cbs, out, &tag, &header_len) ||
crypto/libressl/ssl/bs_cbs.c
453
tag != tag_value)
crypto/libressl/ssl/bs_cbs.c
530
CBS_get_optional_asn1(CBS *cbs, CBS *out, int *out_present, unsigned int tag)
crypto/libressl/ssl/bs_cbs.c
532
if (CBS_peek_asn1_tag(cbs, tag)) {
crypto/libressl/ssl/bs_cbs.c
533
if (!CBS_get_asn1(cbs, out, tag))
crypto/libressl/ssl/bs_cbs.c
545
unsigned int tag)
crypto/libressl/ssl/bs_cbs.c
550
if (!CBS_get_optional_asn1(cbs, &child, &present, tag))
crypto/libressl/ssl/bs_cbs.c
567
CBS_get_optional_asn1_uint64(CBS *cbs, uint64_t *out, unsigned int tag,
crypto/libressl/ssl/bs_cbs.c
573
if (!CBS_get_optional_asn1(cbs, &child, &present, tag))
crypto/libressl/ssl/bs_cbs.c
587
CBS_get_optional_asn1_bool(CBS *cbs, int *out, unsigned int tag,
crypto/libressl/ssl/bs_cbs.c
593
if (!CBS_get_optional_asn1(cbs, &child, &present, tag))
crypto/libressl/ssl/bytestring.h
304
unsigned int tag);
crypto/libressl/ssl/bytestring.h
315
unsigned int tag);
crypto/libressl/ssl/bytestring.h
324
int CBS_get_optional_asn1_uint64(CBS *cbs, uint64_t *out, unsigned int tag,
crypto/libressl/ssl/bytestring.h
334
int CBS_get_optional_asn1_bool(CBS *cbs, int *out, unsigned int tag,
crypto/libressl/ssl/bytestring.h
471
int CBB_add_asn1(CBB *cbb, CBB *out_contents, unsigned int tag);
crypto/openssh/cipher-chachapoly-libcrypto.c
108
const u_char *tag = src + aadlen + len;
crypto/openssh/cipher-chachapoly-libcrypto.c
111
if (timingsafe_bcmp(expected_tag, tag, POLY1305_TAGLEN) != 0) {
crypto/openssh/cipher-chachapoly.c
89
const u_char *tag = src + aadlen + len;
crypto/openssh/cipher-chachapoly.c
92
if (timingsafe_bcmp(expected_tag, tag, POLY1305_TAGLEN) != 0) {
crypto/openssh/log.c
454
char tag[128], fmt2[MSGBUFSIZ + 128];
crypto/openssh/log.c
463
snprintf(tag, sizeof(tag), "%.48s:%.48s():%d (pid=%ld)",
crypto/openssh/log.c
467
if (match_pattern_list(tag, log_verbose[i], 0) == 1) {
crypto/openssh/log.c
474
snprintf(fmt2, sizeof(fmt2), "%s: %s", tag, fmt);
crypto/openssh/misc.c
2198
exited_cleanly(pid_t pid, const char *tag, const char *cmd, int quiet)
crypto/openssh/misc.c
2204
error("%s waitpid: %s", tag, strerror(errno));
crypto/openssh/misc.c
2209
error("%s %s exited on signal %d", tag, cmd, WTERMSIG(status));
crypto/openssh/misc.c
2213
"%s %s failed, status %d", tag, cmd, WEXITSTATUS(status));
crypto/openssh/misc.c
2735
subprocess(const char *tag, const char *command,
crypto/openssh/misc.c
2749
error("%s: inconsistent arguments", tag); /* XXX fatal? */
crypto/openssh/misc.c
2753
error("%s: no user for current uid", tag);
crypto/openssh/misc.c
2760
tag, command, pw->pw_name, flags);
crypto/openssh/misc.c
2778
error("%s path is not absolute", tag);
crypto/openssh/misc.c
2784
error("Could not stat %s \"%s\": %s", tag,
crypto/openssh/misc.c
2790
error("Unsafe %s \"%s\": %s", tag, av[0], errmsg);
crypto/openssh/misc.c
2795
error("%s: pipe: %s", tag, strerror(errno));
crypto/openssh/misc.c
2806
error("%s: fork: %s", tag, strerror(errno));
crypto/openssh/misc.c
2827
error("%s: open %s: %s", tag, _PATH_DEVNULL,
crypto/openssh/misc.c
2832
error("%s: dup2: %s", tag, strerror(errno));
crypto/openssh/misc.c
2843
error("%s: dup2: %s", tag, strerror(errno));
crypto/openssh/misc.c
2850
error("%s: initgroups(%s, %u): %s", tag,
crypto/openssh/misc.c
2855
error("%s: setresgid %u: %s", tag, (u_int)pw->pw_gid,
crypto/openssh/misc.c
2860
error("%s: setresuid %u: %s", tag, (u_int)pw->pw_uid,
crypto/openssh/misc.c
2867
error("%s: dup2: %s", tag, strerror(errno));
crypto/openssh/misc.c
2874
error("%s %s \"%s\": %s", tag, env == NULL ? "execv" : "execve",
crypto/openssh/misc.c
2885
error("%s: fdopen: %s", tag, strerror(errno));
crypto/openssh/misc.c
2894
debug3_f("%s pid %ld", tag, (long)pid);
crypto/openssh/packet.c
1989
char *tag = NULL, remote_id[512];
crypto/openssh/packet.c
2025
if (vasprintf(&tag, fmt, ap) == -1) {
crypto/openssh/packet.c
2032
tag != NULL ? tag : "", tag != NULL ? ": " : "",
crypto/openssh/readconf.c
1406
charptr = &options->tag;
crypto/openssh/readconf.c
2644
options->tag = NULL;
crypto/openssh/readconf.c
3597
dump_cfg_string(oTag, o->tag);
crypto/openssh/readconf.c
762
criteria = xstrdup(options->tag == NULL ? "" :
crypto/openssh/readconf.c
763
options->tag);
crypto/openssh/readconf.h
73
char *tag; /* Configuration tag name. */
crypto/openssh/sftp-client.c
1541
send_open(struct sftp_conn *conn, const char *path, const char *tag,
crypto/openssh/sftp-client.c
1569
fatal_fr(r, "compose %s open", tag);
crypto/openssh/sftp-client.c
1573
tag, id, path, openmode);
crypto/openssh/sftp-client.c
1575
"%s open \"%s\"", tag, path)) == NULL)
crypto/openssh/ssh-agent.c
358
match_key_hop(const char *tag, const struct sshkey *key,
crypto/openssh/ssh-agent.c
373
tag, hostname, sshkey_type(key), fp, dch->nkeys);
crypto/openssh/ssh-agent.c
382
debug3_f("%s: key %u: %s%s %s", tag, i,
crypto/openssh/ssh.c
814
if (options.tag == NULL)
crypto/openssh/ssh.c
815
options.tag = xstrdup(optarg);
crypto/openssh/sshconnect.c
878
char *command = NULL, *tag = NULL, **av = NULL;
crypto/openssh/sshconnect.c
883
xasprintf(&tag, "KnownHostsCommand-%s", invocation);
crypto/openssh/sshconnect.c
900
error("%s \"%s\" contains invalid quotes", tag,
crypto/openssh/sshconnect.c
905
error("%s \"%s\" yielded no arguments", tag,
crypto/openssh/sshconnect.c
926
if ((pid = subprocess(tag, command, ac, av, &f,
crypto/openssh/sshconnect.c
931
load_hostkeys_file(hostkeys, hostfile_hostname, tag, f, 1);
crypto/openssh/sshconnect.c
933
if (exited_cleanly(pid, tag, command, 0) != 0)
crypto/openssh/sshconnect.c
943
free(tag);
crypto/openssh/umac.c
1244
int umac_final(struct umac_ctx *ctx, u_char tag[], const u_char nonce[8])
crypto/openssh/umac.c
1247
uhash_final(&ctx->hash, (u_char *)tag);
crypto/openssh/umac.c
1248
pdf_gen_xor(&ctx->pdf, (const UINT8 *)nonce, (UINT8 *)tag);
crypto/openssh/umac.c
1268
long len, u_char tag[],
crypto/openssh/umac.c
1272
uhash(&ctx->hash, input, len, (u_char *)tag);
crypto/openssh/umac.c
1273
pdf_gen_xor(&ctx->pdf, (UINT8 *)nonce, (UINT8 *)tag);
crypto/openssh/umac.h
122
int umac128_final(struct umac_ctx *ctx, u_char tag[], const u_char nonce[8]);
crypto/openssh/umac.h
68
int umac_final(struct umac_ctx *ctx, u_char tag[], const u_char nonce[8]);
crypto/openssh/umac.h
78
long len, u_char tag[],
lib/i18n_module/ISO2022/citrus_iso2022.c
324
const char *tag;
lib/i18n_module/ISO2022/citrus_iso2022.c
347
for (i = 0; tags[i].tag; i++)
lib/i18n_module/ISO2022/citrus_iso2022.c
348
if (!strcmp(token, tags[i].tag)) {
lib/libc/gen/fmtmsg.c
117
const char *text, const char *act, const char *tag)
lib/libc/gen/fmtmsg.c
132
if (tag != MM_NULLTAG)
lib/libc/gen/fmtmsg.c
133
size += strlen(tag);
lib/libc/gen/fmtmsg.c
152
} else if (strcmp(comp, "tag") == 0 && tag != MM_NULLTAG) {
lib/libc/gen/fmtmsg.c
154
strlcat(output, tag, size);
lib/libc/gen/fmtmsg.c
53
const char *action, const char *tag)
lib/libc/gen/fmtmsg.c
73
tag);
lib/libc/gen/fmtmsg.c
85
action, tag);
lib/libc/isc/eventlib_p.h
158
const void * tag;
lib/libfetch/http.c
1486
int comment, tag;
lib/libfetch/http.c
1488
comment = tag = 0;
lib/libfetch/http.c
1496
tag = comment = 0;
lib/libfetch/http.c
1499
} else if (tag && !comment && *q == '>') {
lib/libfetch/http.c
1501
tag = 0;
lib/libfetch/http.c
1502
} else if (!tag && *q == '<') {
lib/libfetch/http.c
1505
tag = 1;
lib/libfetch/http.c
1513
if (!tag && q > p)
lib/libposix1e/acl_from_text.c
100
if ((!strcmp(tag, "user")) || (!strcmp(tag, "u"))) {
lib/libposix1e/acl_from_text.c
103
if ((!strcmp(tag, "group")) || (!strcmp(tag, "g"))) {
lib/libposix1e/acl_from_text.c
123
char *tag, *qualifier, *permission;
lib/libposix1e/acl_from_text.c
150
tag = strsep(&entry, ":");
lib/libposix1e/acl_from_text.c
151
if (!tag) {
lib/libposix1e/acl_from_text.c
156
tag = string_skip_whitespace(tag);
lib/libposix1e/acl_from_text.c
157
if ((*tag == '\0') && (!entry)) {
lib/libposix1e/acl_from_text.c
164
string_trim_trailing_whitespace(tag);
lib/libposix1e/acl_from_text.c
187
t = acl_string_to_tag(tag, qualifier);
lib/libposix1e/acl_from_text.c
82
acl_string_to_tag(char *tag, char *qualifier)
lib/libposix1e/acl_from_text.c
86
if ((!strcmp(tag, "user")) || (!strcmp(tag, "u"))) {
lib/libposix1e/acl_from_text.c
89
if ((!strcmp(tag, "group")) || (!strcmp(tag, "g"))) {
lib/libposix1e/acl_from_text.c
92
if ((!strcmp(tag, "mask")) || (!strcmp(tag, "m"))) {
lib/libposix1e/acl_from_text.c
95
if ((!strcmp(tag, "other")) || (!strcmp(tag, "o"))) {
lib/libposix1e/acl_support.c
240
acl_id_to_name(acl_tag_t tag, uid_t id, ssize_t buf_len, char *buf)
lib/libposix1e/acl_support.c
246
switch(tag) {
lib/libposix1e/acl_support.c
289
acl_name_to_id(acl_tag_t tag, char *name, uid_t *id)
lib/libposix1e/acl_support.c
294
switch(tag) {
lib/libposix1e/acl_support.c
394
acl_add_entry(acl_t acl, acl_tag_t tag, uid_t id, acl_perm_t perm)
lib/libposix1e/acl_support.c
405
e->ae_tag = tag;
lib/libposix1e/acl_support.h
41
int acl_id_to_name(acl_tag_t tag, uid_t id, ssize_t buf_len, char *buf);
lib/libposix1e/acl_support.h
42
int acl_name_to_id(acl_tag_t tag, char *name, uid_t *id);
lib/libposix1e/acl_support.h
45
int acl_add_entry(acl_t acl, acl_tag_t tag, uid_t id, acl_perm_t perm);
lib/libutil/login_class.c
119
const char *tag;
lib/libutil/login_class.c
204
while (vars->tag != NULL) {
lib/libutil/login_class.c
205
const char * var = paths ? login_getpath(lc, vars->tag, NULL)
lib/libutil/login_class.c
206
: login_getcapstr(lc, vars->tag, NULL, NULL);
libexec/bootpd/bootpd.c
1247
byte tag, len;
libexec/bootpd/bootpd.c
1253
tag = *p++;
libexec/bootpd/bootpd.c
1255
if (tag == TAG_PAD)
libexec/bootpd/bootpd.c
1257
if (tag == TAG_END)
libexec/bootpd/bootpd.c
1261
switch (tag) {
libexec/bootpd/dovend.c
281
insert_ip(byte tag, struct in_addr_list *iplist, byte **dest, int *bytesleft)
libexec/bootpd/dovend.c
292
**dest = tag;
libexec/bootpd/dumptab.c
302
u_char tag;
libexec/bootpd/dumptab.c
306
tag = *bp++;
libexec/bootpd/dumptab.c
307
if (tag == TAG_PAD)
libexec/bootpd/dumptab.c
309
if (tag == TAG_END)
libexec/bootpd/dumptab.c
316
fprintf(fp, "\\\n\t:T%d=", tag);
libexec/bootpd/tools/bootptest/print-bootp.c
276
u_char tag;
libexec/bootpd/tools/bootptest/print-bootp.c
291
tag = *bp++;
libexec/bootpd/tools/bootptest/print-bootp.c
293
if (tag == TAG_PAD)
libexec/bootpd/tools/bootptest/print-bootp.c
295
if (tag == TAG_END)
libexec/bootpd/tools/bootptest/print-bootp.c
297
if (tag < KNOWN_OPTIONS) {
libexec/bootpd/tools/bootptest/print-bootp.c
298
optstr = rfc1048_opts[tag];
libexec/bootpd/tools/bootptest/print-bootp.c
301
printf(" T%d:", tag);
libexec/dma/util.c
143
static char tag[50];
libexec/dma/util.c
145
snprintf(tag, sizeof(tag), "%s", logident_base);
libexec/dma/util.c
153
snprintf(tag, sizeof(tag), "%s[%s]", logident_base, sufx);
libexec/dma/util.c
156
openlog(tag, 0, LOG_MAIL);
libexec/telnetd/utility.c
1044
printdata(const char *tag, char *ptr, int cnt)
libexec/telnetd/utility.c
1056
output_data("%s: ", tag);
sbin/ifconfig/ifieee80211.c
1589
getrate(const char *val, const char *tag)
sbin/ifconfig/ifieee80211.c
1596
errx(-1, "invalid %s rate (must be .5 Mb/s units)", tag);
sbin/ifconfig/ifieee80211.c
2540
printie(const char* tag, const uint8_t *ie, size_t ielen, int maxlen)
sbin/ifconfig/ifieee80211.c
2542
printf("%s", tag);
sbin/ifconfig/ifieee80211.c
2544
maxlen -= strlen(tag)+2;
sbin/ifconfig/ifieee80211.c
2577
printwmeparam(const char *tag, const u_int8_t *ie, size_t ielen __unused,
sbin/ifconfig/ifieee80211.c
2586
printf("%s", tag);
sbin/ifconfig/ifieee80211.c
2609
printwmeinfo(const char *tag, const u_int8_t *ie, size_t ielen __unused,
sbin/ifconfig/ifieee80211.c
2612
printf("%s", tag);
sbin/ifconfig/ifieee80211.c
2622
printhtcap(const char *tag, const u_int8_t *ie, size_t ielen __unused,
sbin/ifconfig/ifieee80211.c
2625
printf("%s", tag);
sbin/ifconfig/ifieee80211.c
2657
printhtinfo(const char *tag, const u_int8_t *ie, size_t ielen __unused,
sbin/ifconfig/ifieee80211.c
2660
printf("%s", tag);
sbin/ifconfig/ifieee80211.c
2690
printathie(const char *tag, const u_int8_t *ie, size_t ielen __unused,
sbin/ifconfig/ifieee80211.c
2693
printf("%s", tag);
sbin/ifconfig/ifieee80211.c
2721
printmeshconf(const char *tag, const uint8_t *ie, size_t ielen __unused,
sbin/ifconfig/ifieee80211.c
2730
printf("%s", tag);
sbin/ifconfig/ifieee80211.c
2806
printwpaie(const char *tag, const u_int8_t *ie, size_t ielen __unused,
sbin/ifconfig/ifieee80211.c
2811
printf("%s", tag);
sbin/ifconfig/ifieee80211.c
2893
printrsnie(const char *tag, const u_int8_t *ie, size_t ielen,
sbin/ifconfig/ifieee80211.c
2896
printf("%s", tag);
sbin/ifconfig/ifieee80211.c
2942
printwpsie(const char *tag, const u_int8_t *ie, size_t ielen __unused,
sbin/ifconfig/ifieee80211.c
2952
printf("%s", tag);
sbin/ifconfig/ifieee80211.c
3175
printtdmaie(const char *tag, const u_int8_t *ie, size_t ielen,
sbin/ifconfig/ifieee80211.c
3178
printf("%s", tag);
sbin/ifconfig/ifieee80211.c
3234
printssid(const char *tag, const u_int8_t *ie, size_t ielen __unused,
sbin/ifconfig/ifieee80211.c
3239
printf("%s<%.*s>", tag, copy_essid(ssid, maxlen, ie+2, ie[1]), ssid);
sbin/ifconfig/ifieee80211.c
3243
printrates(const char *tag, const u_int8_t *ie, size_t ielen,
sbin/ifconfig/ifieee80211.c
3249
printf("%s", tag);
sbin/ifconfig/ifieee80211.c
3261
printcountry(const char *tag, const u_int8_t *ie, size_t ielen __unused,
sbin/ifconfig/ifieee80211.c
3268
printf("%s<%c%c%c", tag, cie->cc[0], cie->cc[1], cie->cc[2]);
sbin/ifconfig/ifieee80211.c
3985
list_wme_aci(int s, const char *tag, int ac)
sbin/ifconfig/ifieee80211.c
3989
printf("\t%s", tag);
sbin/ifconfig/ifieee80211.c
4462
printrate(const char *tag, int v, int defrate, int defmcs)
sbin/ifconfig/ifieee80211.c
4467
LINE_CHECK("%s %d.5", tag, v/2);
sbin/ifconfig/ifieee80211.c
4469
LINE_CHECK("%s %d", tag, v/2);
sbin/ifconfig/ifieee80211.c
4473
LINE_CHECK("%s %d", tag, v &~ 0x80);
sbin/rconfig/client.c
166
load_client_broadcast_tags(tag_t tag, const char *tagName)
sbin/rconfig/client.c
218
ntag = calloc(1, sizeof(struct tag));
sbin/rconfig/client.c
221
ntag->next = tag->next;
sbin/rconfig/client.c
222
tag->next = ntag;
sbin/rconfig/client.c
223
tag = ntag;
sbin/rconfig/client.c
225
printf("add: %s (%s)\n", sdl->sdl_data, tag->name);
sbin/rconfig/client.c
41
static void load_client_broadcast_tags(tag_t tag, const char *tagName);
sbin/rconfig/client.c
47
tag_t tag;
sbin/rconfig/client.c
53
for (tag = AddrBase; tag && !done; tag = tag->next) {
sbin/rconfig/client.c
67
if (tag->name == NULL) {
sbin/rconfig/client.c
68
load_client_broadcast_tags(tag, "auto");
sbin/rconfig/client.c
71
if (tag->name[0] == ':') {
sbin/rconfig/client.c
72
load_client_broadcast_tags(tag, tag->name + 1);
sbin/rconfig/client.c
75
host = strdup(tag->name);
sbin/rconfig/defs.h
68
struct tag *next;
sbin/rconfig/rconfig.c
111
tag_t tag = calloc(1, sizeof(struct tag));
sbin/rconfig/rconfig.c
116
tag->name = name;
sbin/rconfig/rconfig.c
117
tag->flags = flags;
sbin/rconfig/rconfig.c
118
*basep = tag;
sbin/rconfig/rconfig.c
51
static void addTag(tag_t *basep, const char *tag, int flags);
sbin/rconfig/server.c
47
tag_t tag;
sbin/rconfig/server.c
53
for (tag = AddrBase; tag; tag = tag->next) {
sbin/rconfig/server.c
61
if (tag->name == NULL) {
sbin/rconfig/server.c
65
if (inet_aton(tag->name, &sain.sin_addr) == 0) {
sbin/rconfig/server.c
67
if ((hp = gethostbyname2(tag->name, AF_INET)) == NULL) {
sbin/rconfig/server.c
68
fprintf(stderr, "Unable to resolve %s\n", tag->name);
sbin/rconfig/server.c
75
host = strdup(tag->name);
sbin/routed/table.c
279
u_short tag,
sbin/routed/table.c
303
nc_ag.ag_tag = tag;
sbin/routed/table.c
392
ag->ag_tag = tag;
sbin/routed/table.c
454
if (ag->ag_tag != tag)
sbin/routed/table.c
455
tag = 0;
sbin/routed/table.c
483
ag->ag_tag = tag;
sbin/routed/table.c
484
tag = x;
sbin/routed/table.c
588
nag->ag_tag = tag;
stand/boot/common/bootstrap.h
280
#define COMMAND_SET(tag, key, desc, func) \
stand/boot/common/bootstrap.h
282
static struct bootblk_command _cmd_ ## tag = { key, desc, func, 0 };\
stand/boot/common/bootstrap.h
283
DATA_SET(Xcommand_set, _cmd_ ## tag)
stand/boot/common/bootstrap.h
285
#define COMMAND_SET_COND(tag, key, desc, func) \
stand/boot/common/bootstrap.h
287
static struct bootblk_command _cmd_ ## tag = { key, desc, func, 1 };\
stand/boot/common/bootstrap.h
288
DATA_SET(Xcommand_set, _cmd_ ## tag)
stand/boot/common/isapnp.c
161
u_char tag, resinfo[8];
stand/boot/common/isapnp.c
167
while ((limit-- > 0) && !isapnp_get_resource_info(&tag, 1)) {
stand/boot/common/isapnp.c
168
if (PNP_RES_TYPE(tag) == 0) {
stand/boot/common/isapnp.c
170
switch (PNP_SRES_NUM(tag)) {
stand/boot/common/isapnp.c
174
if (isapnp_get_resource_info(resinfo, PNP_SRES_LEN(tag)))
stand/boot/common/isapnp.c
184
if (isapnp_get_resource_info(NULL, PNP_SRES_LEN(tag)))
stand/boot/common/isapnp.c
196
switch(PNP_LRES_NUM(tag)) {
stand/boot/pc32/libi386/biospnp.c
190
u_int tag, i, rlen, dlen;
stand/boot/pc32/libi386/biospnp.c
198
tag = p[i];
stand/boot/pc32/libi386/biospnp.c
200
if (PNP_RES_TYPE(tag) == 0) {
stand/boot/pc32/libi386/biospnp.c
201
rlen = PNP_SRES_LEN(tag);
stand/boot/pc32/libi386/biospnp.c
203
switch (PNP_SRES_NUM(tag)) {
stand/boot/pc32/libi386/biospnp.c
218
switch(PNP_LRES_NUM(tag)) {
stand/lib/bootp.c
331
u_char tag;
stand/lib/bootp.c
343
tag = *cp++;
stand/lib/bootp.c
345
if (tag == TAG_END)
stand/lib/bootp.c
348
if (tag == TAG_SUBNET_MASK) {
stand/lib/bootp.c
351
if (tag == TAG_GATEWAY) {
stand/lib/bootp.c
354
if (tag == TAG_SWAPSERVER) {
stand/lib/bootp.c
358
if (tag == TAG_ROOTPATH) {
stand/lib/bootp.c
362
if (tag == TAG_HOSTNAME) {
stand/lib/bootp.c
367
if (tag == TAG_DHCP_MSGTYPE) {
stand/lib/bootp.c
372
if (tag == TAG_SERVERID) {
sys/bus/cam/scsi/scsi_sg.c
735
rdwr->tag = hdr->pack_id;
sys/bus/cam/scsi/scsi_sg.c
785
if (rdwr->tag == pack_id)
sys/bus/cam/scsi/scsi_sg.c
87
int tag;
sys/bus/firewire/firewire.h
47
tag:2;
sys/bus/firewire/fwdev.c
465
it->flag |= ((0x3 & ichreq->tag) << 6);
sys/bus/firewire/fwdev.c
471
ichreq->tag = it->flag >> 2 & 0x3;
sys/bus/firewire/fwdev.c
493
ir->flag |= ((0x3 & ichreq->tag) << 6);
sys/bus/firewire/fwdev.c
500
ichreq->tag = ir->flag >> 2 & 0x3;
sys/bus/firewire/fwohci.c
1590
unsigned short tag, ich;
sys/bus/firewire/fwohci.c
1601
tag = (ir->flag >> 6) & 3;
sys/bus/firewire/fwohci.c
1603
OWRITE(sc, OHCI_IRMATCH(dmach), tagbit[tag] | ich);
sys/bus/isa/pnp.c
368
u_char tag, *resp, *resinfo, *startres = NULL;
sys/bus/isa/pnp.c
379
tag = *resp++;
sys/bus/isa/pnp.c
381
if (PNP_RES_TYPE(tag) != 0) {
sys/bus/isa/pnp.c
398
if (PNP_LRES_NUM(tag) == PNP_TAG_ID_ANSI) {
sys/bus/isa/pnp.c
419
if (scanning < PNP_SRES_LEN(tag)) {
sys/bus/isa/pnp.c
424
resp += PNP_SRES_LEN(tag);
sys/bus/isa/pnp.c
425
scanning -= PNP_SRES_LEN(tag);
sys/bus/isa/pnp.c
427
switch (PNP_SRES_NUM(tag)) {
sys/bus/isa/pnp.c
542
u_char tag;
sys/bus/isa/pnp.c
550
tag = resources[len-1];
sys/bus/isa/pnp.c
551
if (PNP_RES_TYPE(tag) == 0) {
sys/bus/isa/pnp.c
555
error = pnp_read_bytes(PNP_SRES_LEN(tag),
sys/bus/isa/pnp.c
559
if (PNP_SRES_NUM(tag) == PNP_TAG_END)
sys/bus/isa/pnpparse.c
211
PNP_SRES_NUM(tag));
sys/bus/isa/pnpparse.c
216
switch (PNP_LRES_NUM(tag)) {
sys/bus/isa/pnpparse.c
334
PNP_SRES_NUM(tag));
sys/bus/isa/pnpparse.c
416
u_char tag;
sys/bus/isa/pnpparse.c
434
tag = *p++;
sys/bus/isa/pnpparse.c
436
if (PNP_RES_TYPE(tag) == 0) {
sys/bus/isa/pnpparse.c
438
l = PNP_SRES_LEN(tag);
sys/bus/isa/pnpparse.c
445
switch (PNP_SRES_NUM(tag)) {
sys/bus/isa/pnpparse.c
518
if (pnp_parse_desc(dev, tag, p, l, config, ldn))
sys/bus/isa/pnpparse.c
538
pnp_parse_desc(dev, tag, p, l, config, ldn)) {
sys/bus/isa/pnpparse.c
571
u_char tag;
sys/bus/isa/pnpparse.c
576
tag = *p++;
sys/bus/isa/pnpparse.c
578
if (PNP_RES_TYPE(tag) == 0) {
sys/bus/isa/pnpparse.c
580
l = PNP_SRES_LEN(tag);
sys/bus/isa/pnpparse.c
583
if ((*cb)(dev, tag, p, l, config, ldn))
sys/bus/isa/pnpparse.c
585
if (PNP_SRES_NUM(tag) == PNP_TAG_END)
sys/bus/isa/pnpparse.c
596
if ((*cb)(dev, tag, p, l, config, ldn))
sys/bus/isa/pnpparse.c
61
pnp_parse_desc(device_t dev, u_char tag, u_char *res, int len,
sys/bus/isa/pnpparse.c
71
if (PNP_RES_TYPE(tag) == 0) {
sys/bus/isa/pnpparse.c
74
switch (PNP_SRES_NUM(tag)) {
sys/bus/isa/pnpparse.c
86
PNP_SRES_NUM(tag));
sys/bus/isa/pnpvar.h
58
typedef int pnp_scan_cb(device_t dev, u_char tag, u_char *res, int len,
sys/bus/u4b/storage/umass.c
1295
uint32_t tag;
sys/bus/u4b/storage/umass.c
1314
tag = UGETDW(sc->cbw.dCBWTag) + 1;
sys/bus/u4b/storage/umass.c
1317
USETDW(sc->cbw.dCBWTag, tag);
sys/bus/u4b/storage/umass.c
2976
uint32_t tag = UGETDW(cbw->dCBWTag);
sys/bus/u4b/storage/umass.c
2985
tag, clen,
sys/bus/u4b/storage/umass.c
2995
uint32_t tag = UGETDW(csw->dCSWTag);
sys/bus/u4b/storage/umass.c
3001
tag, sig, (sig == CSWSIGNATURE ? "valid" : "invalid"),
sys/bus/u4b/storage/umass.c
3002
tag, res,
sys/bus/u4b/storage/ustorage_fs.c
517
uint32_t tag;
sys/bus/u4b/storage/ustorage_fs.c
525
tag = UGETDW(sc->sc_cbw->dCBWSignature);
sys/bus/u4b/storage/ustorage_fs.c
527
if (tag != CBWSIGNATURE) {
sys/bus/u4b/storage/ustorage_fs.c
529
DPRINTF("invalid signature 0x%08x\n", tag);
sys/bus/u4b/storage/ustorage_fs.c
532
tag = UGETDW(sc->sc_cbw->dCBWTag);
sys/bus/u4b/storage/ustorage_fs.c
535
USETDW(sc->sc_csw->dCSWTag, tag);
sys/bus/u4b/usb_busdma.c
346
bus_dma_tag_t tag;
sys/bus/u4b/usb_busdma.c
349
( /* parent */ udt->tag_parent->tag,
sys/bus/u4b/usb_busdma.c
360
&tag)) {
sys/bus/u4b/usb_busdma.c
361
tag = NULL;
sys/bus/u4b/usb_busdma.c
363
udt->tag = tag;
sys/bus/u4b/usb_busdma.c
372
bus_dma_tag_destroy(udt->tag);
sys/bus/u4b/usb_busdma.c
538
utag->tag, &ptr, (BUS_DMA_WAITOK | BUS_DMA_COHERENT), &map)) {
sys/bus/u4b/usb_busdma.c
547
pc->tag = utag->tag;
sys/bus/u4b/usb_busdma.c
554
utag->tag, map, ptr, size, &usb_pc_alloc_mem_cb,
sys/bus/u4b/usb_busdma.c
564
bus_dmamem_free(utag->tag, ptr, map);
sys/bus/u4b/usb_busdma.c
582
pc->tag = NULL;
sys/bus/u4b/usb_busdma.c
596
bus_dmamap_unload(pc->tag, pc->map);
sys/bus/u4b/usb_busdma.c
598
bus_dmamem_free(pc->tag, pc->buffer, pc->map);
sys/bus/u4b/usb_busdma.c
634
bus_dmamap_unload(pc->tag, pc->map);
sys/bus/u4b/usb_busdma.c
640
pc->tag, pc->map, pc->buffer, size,
sys/bus/u4b/usb_busdma.c
656
bus_dmamap_unload(pc->tag, pc->map);
sys/bus/u4b/usb_busdma.c
663
pc->tag, pc->map, pc->buffer, size,
sys/bus/u4b/usb_busdma.c
697
bus_dmamap_sync(pc->tag, pc->map, BUS_DMASYNC_POSTREAD);
sys/bus/u4b/usb_busdma.c
698
bus_dmamap_sync(pc->tag, pc->map, BUS_DMASYNC_PREREAD);
sys/bus/u4b/usb_busdma.c
711
bus_dmamap_sync(pc->tag, pc->map, BUS_DMASYNC_PREWRITE);
sys/bus/u4b/usb_busdma.c
739
if (bus_dmamap_create(utag->tag, 0, &pc->map)) {
sys/bus/u4b/usb_busdma.c
742
pc->tag = utag->tag;
sys/bus/u4b/usb_busdma.c
747
pc->tag = NULL;
sys/bus/u4b/usb_busdma.c
759
if (pc && pc->tag) {
sys/bus/u4b/usb_busdma.c
761
bus_dmamap_unload(pc->tag, pc->map);
sys/bus/u4b/usb_busdma.c
762
bus_dmamap_destroy(pc->tag, pc->map);
sys/bus/u4b/usb_busdma.c
763
pc->tag = NULL;
sys/bus/u4b/usb_busdma.c
787
if (udt->tag == NULL) {
sys/bus/u4b/usb_busdma.c
826
udpt->tag = dmat;
sys/bus/u4b/usb_busdma.h
107
bus_dma_tag_t tag; /* always set */
sys/bus/u4b/usb_busdma.h
126
bus_dma_tag_t tag;
sys/bus/u4b/usb_busdma.h
84
bus_dma_tag_t tag;
sys/bus/u4b/usb_msctest.c
304
uint32_t tag;
sys/bus/u4b/usb_msctest.c
316
tag = UGETDW(sc->cbw->dCBWTag) + 1;
sys/bus/u4b/usb_msctest.c
318
USETDW(sc->cbw->dCBWTag, tag);
sys/bus/u4b/usb_transfer.c
984
parm->dma_tag_p, udev->bus->dma_parent_tag[0].tag,
sys/cpu/x86_64/include/bus_dma.h
122
static __inline u_int8_t bus_space_read_1(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
126
static __inline u_int16_t bus_space_read_2(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
130
static __inline u_int32_t bus_space_read_4(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
135
bus_space_read_1(bus_space_tag_t tag, bus_space_handle_t handle,
sys/cpu/x86_64/include/bus_dma.h
139
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
145
bus_space_read_2(bus_space_tag_t tag, bus_space_handle_t handle,
sys/cpu/x86_64/include/bus_dma.h
149
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
155
bus_space_read_4(bus_space_tag_t tag, bus_space_handle_t handle,
sys/cpu/x86_64/include/bus_dma.h
159
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
166
bus_space_read_8(bus_space_tag_t tag, bus_space_handle_t handle,
sys/cpu/x86_64/include/bus_dma.h
169
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
179
static __inline void bus_space_read_multi_1(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
184
static __inline void bus_space_read_multi_2(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
189
static __inline void bus_space_read_multi_4(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
195
bus_space_read_multi_1(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
199
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
214
bus_space_read_multi_2(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
218
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
233
bus_space_read_multi_4(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
237
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
260
static __inline void bus_space_read_region_1(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
265
static __inline void bus_space_read_region_2(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
270
static __inline void bus_space_read_region_4(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
277
bus_space_read_region_1(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
281
if (tag == X86_64_BUS_SPACE_IO) {
sys/cpu/x86_64/include/bus_dma.h
305
bus_space_read_region_2(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
309
if (tag == X86_64_BUS_SPACE_IO) {
sys/cpu/x86_64/include/bus_dma.h
333
bus_space_read_region_4(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
337
if (tag == X86_64_BUS_SPACE_IO) {
sys/cpu/x86_64/include/bus_dma.h
369
static __inline void bus_space_write_1(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
373
static __inline void bus_space_write_2(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
377
static __inline void bus_space_write_4(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
382
bus_space_write_1(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
386
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
393
bus_space_write_2(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
397
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
404
bus_space_write_4(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
408
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
416
bus_space_write_8(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
419
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
430
static __inline void bus_space_write_multi_1(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
435
static __inline void bus_space_write_multi_2(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
441
static __inline void bus_space_write_multi_4(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
448
bus_space_write_multi_1(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
452
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
467
bus_space_write_multi_2(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
471
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
486
bus_space_write_multi_4(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
490
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
514
static __inline void bus_space_write_region_1(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
519
static __inline void bus_space_write_region_2(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
524
static __inline void bus_space_write_region_4(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
531
bus_space_write_region_1(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
535
if (tag == X86_64_BUS_SPACE_IO) {
sys/cpu/x86_64/include/bus_dma.h
559
bus_space_write_region_2(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
563
if (tag == X86_64_BUS_SPACE_IO) {
sys/cpu/x86_64/include/bus_dma.h
587
bus_space_write_region_4(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
591
if (tag == X86_64_BUS_SPACE_IO) {
sys/cpu/x86_64/include/bus_dma.h
624
static __inline void bus_space_set_multi_1(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
628
static __inline void bus_space_set_multi_2(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
632
static __inline void bus_space_set_multi_4(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
638
bus_space_set_multi_1(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
643
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
652
bus_space_set_multi_2(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
657
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
666
bus_space_set_multi_4(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
671
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
688
static __inline void bus_space_set_region_1(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
692
static __inline void bus_space_set_region_2(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
696
static __inline void bus_space_set_region_4(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
702
bus_space_set_region_1(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
707
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
716
bus_space_set_region_2(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
721
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
730
bus_space_set_region_4(bus_space_tag_t tag, bus_space_handle_t bsh,
sys/cpu/x86_64/include/bus_dma.h
735
if (tag == X86_64_BUS_SPACE_IO)
sys/cpu/x86_64/include/bus_dma.h
752
static __inline void bus_space_copy_region_1(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
758
static __inline void bus_space_copy_region_2(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
764
static __inline void bus_space_copy_region_4(bus_space_tag_t tag,
sys/cpu/x86_64/include/bus_dma.h
771
bus_space_copy_region_1(bus_space_tag_t tag, bus_space_handle_t bsh1,
sys/cpu/x86_64/include/bus_dma.h
778
if (tag == X86_64_BUS_SPACE_IO) {
sys/cpu/x86_64/include/bus_dma.h
806
bus_space_copy_region_2(bus_space_tag_t tag, bus_space_handle_t bsh1,
sys/cpu/x86_64/include/bus_dma.h
813
if (tag == X86_64_BUS_SPACE_IO) {
sys/cpu/x86_64/include/bus_dma.h
841
bus_space_copy_region_4(bus_space_tag_t tag, bus_space_handle_t bsh1,
sys/cpu/x86_64/include/bus_dma.h
848
if (tag == X86_64_BUS_SPACE_IO) {
sys/cpu/x86_64/include/bus_dma.h
88
bus_space_kva(bus_space_tag_t tag, bus_space_handle_t handle, bus_size_t offset)
sys/cpu/x86_64/include/bus_dma.h
894
bus_space_barrier(bus_space_tag_t tag __unused, bus_space_handle_t bsh __unused,
sys/cpu/x86_64/include/bus_dma.h
90
if (tag == X86_64_BUS_SPACE_IO)
sys/crypto/chachapoly.c
154
uint8_t tag[CHACHA20POLY1305_AUTHTAG_SIZE];
sys/crypto/chachapoly.c
188
poly1305_finish(&ctx->poly, tag);
sys/crypto/chachapoly.c
193
memcpy(ctx->tag, tag, sizeof(tag));
sys/crypto/chachapoly.c
195
ret = (timingsafe_bcmp(ctx->tag, tag, sizeof(tag)) == 0);
sys/crypto/chachapoly.c
221
memcpy(dst + src_len, ctx.tag, sizeof(ctx.tag));
sys/crypto/chachapoly.c
233
if (src_len < sizeof(ctx.tag))
sys/crypto/chachapoly.c
240
data_len = src_len - sizeof(ctx.tag);
sys/crypto/chachapoly.c
244
memcpy(ctx.tag, src + data_len, sizeof(ctx.tag));
sys/crypto/chachapoly.c
31
uint8_t tag[CHACHA20POLY1305_AUTHTAG_SIZE];
sys/crypto/chachapoly.c
348
m_copyback(m, off + len, sizeof(ctx->tag), ctx->tag);
sys/crypto/chachapoly.c
350
m_copydata(m, off + len, sizeof(ctx->tag), ctx->tag);
sys/dev/acpica/acpi.c
3636
acpi_parse_debug(char *cp, struct debugtag *tag, UINT32 *flag)
sys/dev/acpica/acpi.c
3659
for (i = 0; tag[i].name != NULL; i++) {
sys/dev/acpica/acpi.c
3660
if (!strncmp(cp, tag[i].name, l)) {
sys/dev/acpica/acpi.c
3662
*flag |= tag[i].value;
sys/dev/acpica/acpi.c
3664
*flag &= ~tag[i].value;
sys/dev/acpica/acpi.c
3709
struct debugtag *tag;
sys/dev/acpica/acpi.c
3715
tag = &dbg_layer[0];
sys/dev/acpica/acpi.c
3718
tag = &dbg_level[0];
sys/dev/acpica/acpi.c
3727
for (; tag->name != NULL; tag++) {
sys/dev/acpica/acpi.c
3728
if ((*dbg & tag->value) == tag->value)
sys/dev/acpica/acpi.c
3729
sbuf_printf(&sb, "%s ", tag->name);
sys/dev/acpica/acpi_pci_link.c
419
acpi_pci_link_dump(struct acpi_pci_link_softc *sc, int header, const char *tag)
sys/dev/acpica/acpi_pci_link.c
433
kprintf(" %-14.14s %5d %3d %c %3d ", i == 0 ? tag : "", i,
sys/dev/disk/advansys/advansys.c
729
adv_alloc(device_t dev, bus_space_tag_t tag, bus_space_handle_t bsh)
sys/dev/disk/advansys/advansys.c
740
adv->tag = tag;
sys/dev/disk/advansys/advansys.h
42
struct adv_softc * adv_alloc(device_t dev, bus_space_tag_t tag,
sys/dev/disk/advansys/advlib.c
1233
bus_space_set_multi_2(adv->tag, adv->bsh, ADV_LRAM_DATA,
sys/dev/disk/advansys/advlib.c
459
adv_find_signature(bus_space_tag_t tag, bus_space_handle_t bsh)
sys/dev/disk/advansys/advlib.c
463
if (bus_space_read_1(tag, bsh, ADV_SIGNATURE_BYTE) == ADV_1000_ID1B) {
sys/dev/disk/advansys/advlib.c
464
signature = bus_space_read_2(tag, bsh, ADV_SIGNATURE_WORD);
sys/dev/disk/advansys/advlib.h
498
bus_space_tag_t tag;
sys/dev/disk/advansys/advlib.h
795
int adv_find_signature(bus_space_tag_t tag, bus_space_handle_t bsh);
sys/dev/disk/advansys/advlib.h
848
bus_space_read_1((adv)->tag, (adv)->bsh, offset)
sys/dev/disk/advansys/advlib.h
850
bus_space_read_2((adv)->tag, (adv)->bsh, offset)
sys/dev/disk/advansys/advlib.h
852
bus_space_read_multi_1((adv)->tag, (adv)->bsh, offset, valp, count)
sys/dev/disk/advansys/advlib.h
860
*valp++ = bus_space_read_2(adv->tag, adv->bsh, offset);
sys/dev/disk/advansys/advlib.h
864
bus_space_write_1((adv)->tag, (adv)->bsh, offset, val)
sys/dev/disk/advansys/advlib.h
866
bus_space_write_2((adv)->tag, (adv)->bsh, offset, val)
sys/dev/disk/advansys/advlib.h
874
bus_space_write_2(adv->tag, adv->bsh, offset, *valp++);
sys/dev/disk/advansys/adwcam.c
834
adw->tag = rman_get_bustag(regs);
sys/dev/disk/advansys/adwlib.h
604
bus_space_tag_t tag;
sys/dev/disk/advansys/adwlib.h
662
bus_space_read_1((adw)->tag, (adw)->bsh, port)
sys/dev/disk/advansys/adwlib.h
664
bus_space_read_2((adw)->tag, (adw)->bsh, port)
sys/dev/disk/advansys/adwlib.h
666
bus_space_read_4((adw)->tag, (adw)->bsh, port)
sys/dev/disk/advansys/adwlib.h
669
bus_space_write_1((adw)->tag, (adw)->bsh, port, value)
sys/dev/disk/advansys/adwlib.h
671
bus_space_write_2((adw)->tag, (adw)->bsh, port, value)
sys/dev/disk/advansys/adwlib.h
673
bus_space_write_4((adw)->tag, (adw)->bsh, port, value)
sys/dev/disk/advansys/adwlib.h
676
bus_space_set_multi_2((adw)->tag, (adw)->bsh, port, value, count)
sys/dev/disk/ahci/ahci.c
2196
int tag;
sys/dev/disk/ahci/ahci.c
2200
tag = ffs(mask) - 1;
sys/dev/disk/ahci/ahci.c
2201
mask &= ~(1 << tag);
sys/dev/disk/ahci/ahci.c
2202
ccb = &ap->ap_ccbs[tag];
sys/dev/disk/ahci/ahci.c
3520
ahci_dmamem_alloc(struct ahci_softc *sc, bus_dma_tag_t tag)
sys/dev/disk/ahci/ahci.c
3527
error = bus_dmamem_alloc(tag, (void **)&adm->adm_kva,
sys/dev/disk/ahci/ahci.c
3530
adm->adm_tag = tag;
sys/dev/disk/ahci/ahci.c
3531
error = bus_dmamap_load(tag, adm->adm_map,
sys/dev/disk/ahci/ahci.c
3533
bus_dma_tag_getmaxsize(tag),
sys/dev/disk/ahci/ahci.c
3539
bus_dmamap_destroy(tag, adm->adm_map);
sys/dev/disk/ahci/ahci.c
426
ccb->ccb_xa.tag = i;
sys/dev/disk/ahci/ahci.c
77
struct ahci_dmamem *ahci_dmamem_alloc(struct ahci_softc *, bus_dma_tag_t tag);
sys/dev/disk/ahci/ahci_cam.c
1402
fis->sector_count = xa->tag << 3;
sys/dev/disk/ahci/ahci_cam.c
1530
fis->sector_count = xa->tag << 3;
sys/dev/disk/ahci/ahci_cam.c
388
if (xa->tag < at->at_ncqdepth) {
sys/dev/disk/ahci/atascsi.h
360
u_int8_t tag;
sys/dev/disk/amd/amd.c
142
lun_id_t lun, u_int tag, struct srb_queue *queue,
sys/dev/disk/amd/amd.c
2289
amd->tag = rman_get_bustag(iores);
sys/dev/disk/amd/amd.c
748
u_int tag, struct srb_queue *queue, cam_status status)
sys/dev/disk/amd/amd.c
765
if (srb->TagNumber != tag
sys/dev/disk/amd/amd.c
766
&& tag != AMD_TAG_WILDCARD)
sys/dev/disk/amd/amd.h
198
bus_space_tag_t tag;
sys/dev/disk/amd/amd.h
561
bus_space_read_1((amd)->tag, (amd)->bsh, port)
sys/dev/disk/amd/amd.h
564
bus_space_read_2((amd)->tag, (amd)->bsh, port)
sys/dev/disk/amd/amd.h
567
bus_space_read_4((amd)->tag, (amd)->bsh, port)
sys/dev/disk/amd/amd.h
570
bus_space_write_1((amd)->tag, (amd)->bsh, port, value)
sys/dev/disk/amd/amd.h
573
bus_space_write_multi_1((amd)->tag, (amd)->bsh, port, ptr, len)
sys/dev/disk/amd/amd.h
576
bus_space_write_2((amd)->tag, (amd)->bsh, port, value)
sys/dev/disk/amd/amd.h
579
bus_space_write_4((amd)->tag, (amd)->bsh, port, value)
sys/dev/disk/isp/isp_freebsd.c
1006
if (atp->tag == 0) {
sys/dev/disk/isp/isp_freebsd.c
1010
atp->tag, atp->orig_datalen, atp->bytes_xfered, atp->last_xframt, atp->lun, atp->nphdl, atp->sid, atp->portid, atp->oxid, states[atp->state & 0x7]);
sys/dev/disk/isp/isp_freebsd.c
1533
cto->ct_rxid = atp->tag;
sys/dev/disk/isp/isp_freebsd.c
1901
atp->tag = aep->at_tag_val;
sys/dev/disk/isp/isp_freebsd.c
1902
if (atp->tag == 0) {
sys/dev/disk/isp/isp_freebsd.c
1903
atp->tag = ~0;
sys/dev/disk/isp/isp_freebsd.c
1933
atiop->tag_id = atp->tag;
sys/dev/disk/isp/isp_freebsd.c
2034
atp->tag = aep->at_rxid;
sys/dev/disk/isp/isp_freebsd.c
2077
atiop->tag_id = atp->tag;
sys/dev/disk/isp/isp_freebsd.c
2275
atp->tag = aep->at_rxid;
sys/dev/disk/isp/isp_freebsd.c
2292
atiop->tag_id = atp->tag;
sys/dev/disk/isp/isp_freebsd.c
2407
tval = atp->tag;
sys/dev/disk/isp/isp_freebsd.c
2441
tval = atp->tag;
sys/dev/disk/isp/isp_freebsd.c
3004
if ((uint64_t)tag_id == TAG_ANY || atp->tag == tag_id) {
sys/dev/disk/isp/isp_freebsd.c
4425
uint32_t tag;
sys/dev/disk/isp/isp_freebsd.c
4429
tag = ccb->cin1.seq_id;
sys/dev/disk/isp/isp_freebsd.c
4431
tag = ccb->atio.tag_id;
sys/dev/disk/isp/isp_freebsd.c
4434
ISP_PATH_PRT(isp, ISP_LOGWARN, ccb->ccb_h.path, "%s: [0x%x] no state pointer found for %s\n", __func__, tag, str);
sys/dev/disk/isp/isp_freebsd.c
890
if (atp && atp->tag == tagval) {
sys/dev/disk/isp/isp_freebsd.c
971
isp_get_atpd(ispsoftc_t *isp, tstate_t *tptr, uint32_t tag)
sys/dev/disk/isp/isp_freebsd.c
975
if (tag == 0) {
sys/dev/disk/isp/isp_freebsd.c
983
if (atp->tag == tag) {
sys/dev/disk/isp/isp_freebsd.c
993
atp->tag = 0;
sys/dev/disk/isp/isp_freebsd.h
283
#define ISP_GET_PC(isp, chan, tag, rslt) \
sys/dev/disk/isp/isp_freebsd.h
285
rslt = ISP_SPI_PC(isp, chan)-> tag; \
sys/dev/disk/isp/isp_freebsd.h
287
rslt = ISP_FC_PC(isp, chan)-> tag; \
sys/dev/disk/isp/isp_freebsd.h
289
#define ISP_GET_PC_ADDR(isp, chan, tag, rp) \
sys/dev/disk/isp/isp_freebsd.h
291
rp = &ISP_SPI_PC(isp, chan)-> tag; \
sys/dev/disk/isp/isp_freebsd.h
293
rp = &ISP_FC_PC(isp, chan)-> tag; \
sys/dev/disk/isp/isp_freebsd.h
295
#define ISP_SET_PC(isp, chan, tag, val) \
sys/dev/disk/isp/isp_freebsd.h
297
ISP_SPI_PC(isp, chan)-> tag = val; \
sys/dev/disk/isp/isp_freebsd.h
299
ISP_FC_PC(isp, chan)-> tag = val; \
sys/dev/disk/isp/isp_freebsd.h
81
uint32_t tag;
sys/dev/disk/isp/isp_target.h
78
#define MATCH_TMD(tmd, iid, lun, tag) \
sys/dev/disk/isp/isp_target.h
83
(tag == TAG_ANY || tag == tmd->cd_tagval) \
sys/dev/disk/isp/ispmbox.h
861
#define ISP_GET_VPIDX(isp, tag) \
sys/dev/disk/isp/ispmbox.h
862
(ISP_CAP_MULTI_ID(isp) ? tag : 0)
sys/dev/disk/mpt/mpt.h
230
#define MPT_2_HOST64(ptr, tag) ptr->tag = le64toh(ptr->tag)
sys/dev/disk/mpt/mpt.h
231
#define MPT_2_HOST32(ptr, tag) ptr->tag = le32toh(ptr->tag)
sys/dev/disk/mpt/mpt.h
232
#define MPT_2_HOST16(ptr, tag) ptr->tag = le16toh(ptr->tag)
sys/dev/disk/mpt/mpt.h
234
#define HOST_2_MPT64(ptr, tag) ptr->tag = htole64(ptr->tag)
sys/dev/disk/mpt/mpt.h
235
#define HOST_2_MPT32(ptr, tag) ptr->tag = htole32(ptr->tag)
sys/dev/disk/mpt/mpt.h
236
#define HOST_2_MPT16(ptr, tag) ptr->tag = htole16(ptr->tag)
sys/dev/disk/mpt/mpt.h
360
#define MPT_TAG_2_REQ(mpt, tag) mpt->tgt_cmd_ptrs[tag >> 18]
sys/dev/disk/mpt/mpt.h
956
mpt_tag_2_req(struct mpt_softc *mpt, uint32_t tag)
sys/dev/disk/mpt/mpt.h
958
uint16_t rtg = (tag >> 18);
sys/dev/disk/mpt/mpt.h
959
KASSERT(rtg < mpt->tgt_cmds_allocated, ("bad tag %d", tag));
sys/dev/disk/mpt/mpt_user.c
200
len, 1, len, 0, &page_mem->tag);
sys/dev/disk/mpt/mpt_user.c
203
error = bus_dmamem_alloc(page_mem->tag, &page_mem->vaddr,
sys/dev/disk/mpt/mpt_user.c
206
bus_dma_tag_destroy(page_mem->tag);
sys/dev/disk/mpt/mpt_user.c
210
error = bus_dmamap_load(page_mem->tag, page_mem->map, page_mem->vaddr,
sys/dev/disk/mpt/mpt_user.c
215
bus_dmamem_free(page_mem->tag, page_mem->vaddr, page_mem->map);
sys/dev/disk/mpt/mpt_user.c
216
bus_dma_tag_destroy(page_mem->tag);
sys/dev/disk/mpt/mpt_user.c
230
bus_dmamap_unload(page_mem->tag, page_mem->map);
sys/dev/disk/mpt/mpt_user.c
231
bus_dmamem_free(page_mem->tag, page_mem->vaddr, page_mem->map);
sys/dev/disk/mpt/mpt_user.c
232
bus_dma_tag_destroy(page_mem->tag);
sys/dev/disk/mpt/mpt_user.c
302
bus_dmamap_sync(mpt_page->tag, mpt_page->map,
sys/dev/disk/mpt/mpt_user.c
313
bus_dmamap_sync(mpt_page->tag, mpt_page->map,
sys/dev/disk/mpt/mpt_user.c
392
bus_dmamap_sync(mpt_page->tag, mpt_page->map,
sys/dev/disk/mpt/mpt_user.c
403
bus_dmamap_sync(mpt_page->tag, mpt_page->map,
sys/dev/disk/mpt/mpt_user.c
439
bus_dmamap_sync(mpt_page->tag, mpt_page->map, BUS_DMASYNC_PREREAD |
sys/dev/disk/mpt/mpt_user.c
467
bus_dmamap_sync(mpt_page->tag, mpt_page->map, BUS_DMASYNC_POSTREAD |
sys/dev/disk/mpt/mpt_user.c
50
bus_dma_tag_t tag;
sys/dev/disk/mpt/mpt_user.c
539
bus_dmamap_sync(mpt_page->tag, mpt_page->map,
sys/dev/disk/mpt/mpt_user.c
578
bus_dmamap_sync(mpt_page->tag, mpt_page->map,
sys/dev/disk/nata/chipsets/ata-ahci.c
250
int tag = 0, entries = 0;
sys/dev/disk/nata/chipsets/ata-ahci.c
255
(ch->dma->work + ATA_AHCI_CT_OFFSET + (ATA_AHCI_CT_SIZE * tag));
sys/dev/disk/nata/chipsets/ata-ahci.c
277
(ch->dma->work + ATA_AHCI_CL_OFFSET + (ATA_AHCI_CL_SIZE * tag));
sys/dev/disk/nata/chipsets/ata-ahci.c
287
(ATA_AHCI_CT_SIZE * tag));
sys/dev/disk/nata/chipsets/ata-ahci.c
290
ATA_IDX_OUTL(ch, ATA_SACTIVE, ATA_IDX_INL(ch, ATA_SACTIVE) & (1 << tag));
sys/dev/disk/nata/chipsets/ata-ahci.c
306
ATA_OUTL(ctlr->r_res2, ATA_AHCI_P_CI + offset, (1 << tag));
sys/dev/disk/nata/chipsets/ata-ahci.c
343
int tag = 0;
sys/dev/disk/nata/chipsets/ata-ahci.c
358
(ch->dma->work + ATA_AHCI_CL_OFFSET + (ATA_AHCI_CL_SIZE * tag));
sys/dev/disk/nata/chipsets/ata-marvell.c
325
int i, tag = 0x07; /* XXX why 0x07 ? */
sys/dev/disk/nata/chipsets/ata-marvell.c
365
(request->flags & ATA_R_READ ? 0x01 : 0x00) | (tag<<1));
sys/dev/disk/nata/chipsets/ata-marvell.c
395
(request->flags & ATA_R_READ ? 0x01 : 0x00) | (tag<<1));
sys/dev/disk/nata/chipsets/ata-marvell.c
54
u_int16_t tag;
sys/dev/disk/ncr/ncr.c
3952
while (!cp->tag) {
sys/dev/disk/ncr/ncr.c
3955
while (cp2 && cp2->tag != lp->lasttag)
sys/dev/disk/ncr/ncr.c
3958
cp->tag=lp->lasttag;
sys/dev/disk/ncr/ncr.c
3961
kprintf ("using tag #%d.\n", cp->tag);
sys/dev/disk/ncr/ncr.c
3965
cp->tag=0;
sys/dev/disk/ncr/ncr.c
3982
if (cp->tag) {
sys/dev/disk/ncr/ncr.c
3984
msgptr[msglen++] = cp->tag;
sys/dev/disk/ncr/ncr.c
4136
cp->jump_nccb.l_cmd = (SCR_JUMP ^ IFFALSE (DATA (cp->tag)));
sys/dev/disk/ncr/ncr.c
5176
cp->tag = 0;
sys/dev/disk/ncr/ncr.c
958
u_char tag;
sys/dev/disk/sili/atascsi.h
304
u_int8_t tag;
sys/dev/disk/sili/sili.c
1372
int tag;
sys/dev/disk/sili/sili.c
1376
tag = ffs(mask) - 1;
sys/dev/disk/sili/sili.c
1377
mask &= ~(1 << tag);
sys/dev/disk/sili/sili.c
1378
ccb = &ap->ap_ccbs[tag];
sys/dev/disk/sili/sili.c
2168
sili_dmamem_alloc(struct sili_softc *sc, bus_dma_tag_t tag)
sys/dev/disk/sili/sili.c
2175
error = bus_dmamem_alloc(tag, (void **)&adm->adm_kva,
sys/dev/disk/sili/sili.c
2178
adm->adm_tag = tag;
sys/dev/disk/sili/sili.c
2179
error = bus_dmamap_load(tag, adm->adm_map,
sys/dev/disk/sili/sili.c
2181
bus_dma_tag_getmaxsize(tag),
sys/dev/disk/sili/sili.c
2187
bus_dmamap_destroy(tag, adm->adm_map);
sys/dev/disk/sili/sili.c
257
ccb->ccb_xa.tag = i;
sys/dev/disk/sili/sili.c
81
struct sili_dmamem *sili_dmamem_alloc(struct sili_softc *, bus_dma_tag_t tag);
sys/dev/disk/sili/sili_cam.c
1303
fis->sector_count = xa->tag << 3;
sys/dev/disk/sili/sili_cam.c
1426
fis->sector_count = xa->tag << 3;
sys/dev/disk/sili/sili_cam.c
372
if (xa->tag < at->at_ncqdepth) {
sys/dev/disk/sym/sym_hipd.c
1445
u_short tag; /* Tag for this transfer */
sys/dev/disk/sym/sym_hipd.c
4542
if (cp->tag != NO_TAG && olen - rest <= 3) {
sys/dev/disk/sym/sym_hipd.c
4605
(task == -1 || cp->tag == task)) {
sys/dev/disk/sym/sym_hipd.c
4876
(cp->tag != NO_TAG && cp->scsi_smsg[2] != task))) {
sys/dev/disk/sym/sym_hipd.c
5156
if (cp->tag == NO_TAG) {
sys/dev/disk/sym/sym_hipd.c
6290
u_short tag = NO_TAG;
sys/dev/disk/sym/sym_hipd.c
6349
tag = lp->cb_tags[lp->ia_tag];
sys/dev/disk/sym/sym_hipd.c
6352
lp->itlq_tbl[tag] = cpu_to_scr(cp->ccb_ba);
sys/dev/disk/sym/sym_hipd.c
6393
cp->tag = tag;
sys/dev/disk/sym/sym_hipd.c
6399
kprintf ("ccb @%p using tag %d.\n", cp, tag);
sys/dev/disk/sym/sym_hipd.c
6419
kprintf ("ccb @%p freeing tag %d.\n", cp, cp->tag);
sys/dev/disk/sym/sym_hipd.c
6429
if (cp->tag != NO_TAG) {
sys/dev/disk/sym/sym_hipd.c
6433
lp->cb_tags[lp->if_tag] = cp->tag;
sys/dev/disk/sym/sym_hipd.c
6440
lp->itlq_tbl[cp->tag] = cpu_to_scr(np->bad_itlq_ba);
sys/dev/disk/sym/sym_hipd.c
7557
if (cp->tag != NO_TAG || (lp && (lp->current_flags & SYM_DISC_ENABLED)))
sys/dev/disk/sym/sym_hipd.c
7567
if (cp->tag != NO_TAG) {
sys/dev/disk/sym/sym_hipd.c
7588
msgptr[msglen++] = cp->tag;
sys/dev/disk/sym/sym_hipd.c
7590
msgptr[msglen++] = (cp->tag << 1) + 1;
sys/dev/disk/trm/trm.c
100
#define trm_reg_read32(reg) bus_space_read_4(pACB->tag, pACB->bsh, reg)
sys/dev/disk/trm/trm.c
101
#define trm_reg_write8(value,reg) bus_space_write_1(pACB->tag, pACB->bsh,\
sys/dev/disk/trm/trm.c
103
#define trm_reg_write16(value,reg) bus_space_write_2(pACB->tag, pACB->bsh,\
sys/dev/disk/trm/trm.c
105
#define trm_reg_write32(value,reg) bus_space_write_4(pACB->tag, pACB->bsh,\
sys/dev/disk/trm/trm.c
166
static int trm_probe(device_t tag);
sys/dev/disk/trm/trm.c
167
static int trm_attach(device_t tag);
sys/dev/disk/trm/trm.c
3421
pACB->tag = rman_get_bustag(pACB->iores);
sys/dev/disk/trm/trm.c
98
#define trm_reg_read8(reg) bus_space_read_1(pACB->tag, pACB->bsh, reg)
sys/dev/disk/trm/trm.c
99
#define trm_reg_read16(reg) bus_space_read_2(pACB->tag, pACB->bsh, reg)
sys/dev/disk/trm/trm.h
233
bus_space_tag_t tag;
sys/dev/disk/xdisk/xdisk.c
1000
tag->waiting = 0;
sys/dev/disk/xdisk/xdisk.c
1001
xa_release(tag, 0);
sys/dev/disk/xdisk/xdisk.c
1007
xa_done(xa_tag_t *tag, int wasbio)
sys/dev/disk/xdisk/xdisk.c
1009
KKASSERT(tag->bio == NULL);
sys/dev/disk/xdisk/xdisk.c
1011
tag->state = NULL;
sys/dev/disk/xdisk/xdisk.c
1012
tag->done = 1;
sys/dev/disk/xdisk/xdisk.c
1013
if (tag->waiting)
sys/dev/disk/xdisk/xdisk.c
1014
wakeup(tag);
sys/dev/disk/xdisk/xdisk.c
1015
if (tag->async)
sys/dev/disk/xdisk/xdisk.c
1016
xa_release(tag, wasbio);
sys/dev/disk/xdisk/xdisk.c
1026
xa_release(xa_tag_t *tag, int wasbio)
sys/dev/disk/xdisk/xdisk.c
1028
xa_softc_t *sc = tag->sc;
sys/dev/disk/xdisk/xdisk.c
1031
if ((bio = tag->bio) != NULL) {
sys/dev/disk/xdisk/xdisk.c
1039
tag->bio = NULL;
sys/dev/disk/xdisk/xdisk.c
1047
tag->bio = bio;
sys/dev/disk/xdisk/xdisk.c
1048
xa_start(tag, NULL, 1);
sys/dev/disk/xdisk/xdisk.c
1050
TAILQ_REMOVE(&sc->tag_pendq, tag, entry);
sys/dev/disk/xdisk/xdisk.c
1051
TAILQ_INSERT_TAIL(&sc->tag_freeq, tag, entry);
sys/dev/disk/xdisk/xdisk.c
1062
xa_tag_t *tag = state->any.any;
sys/dev/disk/xdisk/xdisk.c
1072
tag, msg->any.head.cmd, msg->state);
sys/dev/disk/xdisk/xdisk.c
1074
if (tag == NULL) {
sys/dev/disk/xdisk/xdisk.c
1079
sc = tag->sc;
sys/dev/disk/xdisk/xdisk.c
1095
bzero(&tag->status, sizeof(tag->status));
sys/dev/disk/xdisk/xdisk.c
1096
tag->status.head = msg->any.head;
sys/dev/disk/xdisk/xdisk.c
1099
tag->status = msg->any.blk_error;
sys/dev/disk/xdisk/xdisk.c
1102
sc->last_error = tag->status.head.error;
sys/dev/disk/xdisk/xdisk.c
1107
tag = xa_setup_cmd(sc, NULL);
sys/dev/disk/xdisk/xdisk.c
1108
if (tag == NULL)
sys/dev/disk/xdisk/xdisk.c
1111
tag->bio = bio;
sys/dev/disk/xdisk/xdisk.c
1112
xa_start(tag, NULL, 1);
sys/dev/disk/xdisk/xdisk.c
1127
kdmsg_state_reply(tag->state, 0);
sys/dev/disk/xdisk/xdisk.c
1128
if (sc->open_tag == tag) {
sys/dev/disk/xdisk/xdisk.c
1130
xa_done(tag, 0);
sys/dev/disk/xdisk/xdisk.c
1132
tag->async = 0;
sys/dev/disk/xdisk/xdisk.c
1133
xa_done(tag, 0);
sys/dev/disk/xdisk/xdisk.c
1144
xa_tag_t *tag = state->any.any;
sys/dev/disk/xdisk/xdisk.c
1145
xa_softc_t *sc = tag->sc;
sys/dev/disk/xdisk/xdisk.c
1153
if ((bio = tag->bio) == NULL)
sys/dev/disk/xdisk/xdisk.c
1162
bzero(&tag->status, sizeof(tag->status));
sys/dev/disk/xdisk/xdisk.c
1163
tag->status.head = msg->any.head;
sys/dev/disk/xdisk/xdisk.c
1164
if (tag->status.head.error)
sys/dev/disk/xdisk/xdisk.c
1165
tag->status.resid = bp->b_bcount;
sys/dev/disk/xdisk/xdisk.c
1167
tag->status.resid = 0;
sys/dev/disk/xdisk/xdisk.c
1170
tag->status = msg->any.blk_error;
sys/dev/disk/xdisk/xdisk.c
1179
if (tag->status.head.error &&
sys/dev/disk/xdisk/xdisk.c
1181
if (tag->status.head.error != DMSG_ERR_IO)
sys/dev/disk/xdisk/xdisk.c
1209
if (tag->status.resid > bp->b_bcount)
sys/dev/disk/xdisk/xdisk.c
1210
tag->status.resid = bp->b_bcount;
sys/dev/disk/xdisk/xdisk.c
1211
bp->b_resid = tag->status.resid;
sys/dev/disk/xdisk/xdisk.c
1212
if (tag->status.head.error != 0) {
sys/dev/disk/xdisk/xdisk.c
1221
tag->bio = NULL;
sys/dev/disk/xdisk/xdisk.c
1236
xa_done(tag, 1);
sys/dev/disk/xdisk/xdisk.c
1251
tag->bio = NULL;
sys/dev/disk/xdisk/xdisk.c
1263
xa_done(tag, 0);
sys/dev/disk/xdisk/xdisk.c
1290
xa_tag_t *tag;
sys/dev/disk/xdisk/xdisk.c
1320
tag = xa_setup_cmd(sc, NULL);
sys/dev/disk/xdisk/xdisk.c
1321
if (tag == NULL)
sys/dev/disk/xdisk/xdisk.c
1325
sc->open_tag = tag;
sys/dev/disk/xdisk/xdisk.c
1329
xa_sync_completion, tag);
sys/dev/disk/xdisk/xdisk.c
1334
tag, msg->state, span);
sys/dev/disk/xdisk/xdisk.c
1335
xa_start(tag, msg, 0);
sys/dev/disk/xdisk/xdisk.c
151
static void xa_start(xa_tag_t *tag, kdmsg_msg_t *msg, int async);
sys/dev/disk/xdisk/xdisk.c
152
static void xa_done(xa_tag_t *tag, int wasbio);
sys/dev/disk/xdisk/xdisk.c
153
static void xa_release(xa_tag_t *tag, int wasbio);
sys/dev/disk/xdisk/xdisk.c
154
static uint32_t xa_wait(xa_tag_t *tag);
sys/dev/disk/xdisk/xdisk.c
424
xa_tag_t *tag;
sys/dev/disk/xdisk/xdisk.c
466
tag = kmalloc(sizeof(*tag),
sys/dev/disk/xdisk/xdisk.c
468
tag->sc = sc;
sys/dev/disk/xdisk/xdisk.c
469
TAILQ_INSERT_TAIL(&sc->tag_freeq, tag, entry);
sys/dev/disk/xdisk/xdisk.c
636
xa_tag_t *tag;
sys/dev/disk/xdisk/xdisk.c
674
while ((tag = TAILQ_FIRST(&sc->tag_freeq)) != NULL) {
sys/dev/disk/xdisk/xdisk.c
675
TAILQ_REMOVE(&sc->tag_freeq, tag, entry);
sys/dev/disk/xdisk/xdisk.c
676
tag->sc = NULL;
sys/dev/disk/xdisk/xdisk.c
677
kfree(tag, M_XDISK);
sys/dev/disk/xdisk/xdisk.c
765
xa_tag_t *tag;
sys/dev/disk/xdisk/xdisk.c
782
tag = sc->open_tag;
sys/dev/disk/xdisk/xdisk.c
785
kdmsg_state_reply(tag->state, 0); /* close our side */
sys/dev/disk/xdisk/xdisk.c
786
xa_wait(tag); /* wait on remote */
sys/dev/disk/xdisk/xdisk.c
802
xa_tag_t *tag;
sys/dev/disk/xdisk/xdisk.c
814
tag = xa_setup_cmd(sc, bio);
sys/dev/disk/xdisk/xdisk.c
815
if (tag)
sys/dev/disk/xdisk/xdisk.c
816
xa_start(tag, NULL, 1);
sys/dev/disk/xdisk/xdisk.c
849
xa_tag_t *tag;
sys/dev/disk/xdisk/xdisk.c
854
if ((tag = TAILQ_FIRST(&sc->tag_freeq)) != NULL) {
sys/dev/disk/xdisk/xdisk.c
855
TAILQ_REMOVE(&sc->tag_freeq, tag, entry);
sys/dev/disk/xdisk/xdisk.c
856
tag->bio = bio;
sys/dev/disk/xdisk/xdisk.c
857
TAILQ_INSERT_TAIL(&sc->tag_pendq, tag, entry);
sys/dev/disk/xdisk/xdisk.c
863
if (tag == NULL && bio) {
sys/dev/disk/xdisk/xdisk.c
867
return (tag);
sys/dev/disk/xdisk/xdisk.c
874
xa_start(xa_tag_t *tag, kdmsg_msg_t *msg, int async)
sys/dev/disk/xdisk/xdisk.c
876
xa_softc_t *sc = tag->sc;
sys/dev/disk/xdisk/xdisk.c
878
tag->done = 0;
sys/dev/disk/xdisk/xdisk.c
879
tag->async = async;
sys/dev/disk/xdisk/xdisk.c
880
tag->status.head.error = DMSG_ERR_IO; /* fallback error */
sys/dev/disk/xdisk/xdisk.c
898
KKASSERT(tag->bio);
sys/dev/disk/xdisk/xdisk.c
899
bio = tag->bio;
sys/dev/disk/xdisk/xdisk.c
908
xa_bio_completion, tag);
sys/dev/disk/xdisk/xdisk.c
917
xa_bio_completion, tag);
sys/dev/disk/xdisk/xdisk.c
928
xa_bio_completion, tag);
sys/dev/disk/xdisk/xdisk.c
937
xa_bio_completion, tag);
sys/dev/disk/xdisk/xdisk.c
948
tag->bio = NULL;
sys/dev/disk/xdisk/xdisk.c
961
tag->state = msg->state;
sys/dev/disk/xdisk/xdisk.c
965
} else if (tag->bio &&
sys/dev/disk/xdisk/xdisk.c
966
(tag->bio->bio_buf->b_flags & B_FAILONDIS) == 0) {
sys/dev/disk/xdisk/xdisk.c
971
TAILQ_INSERT_TAIL(&sc->bioq, tag->bio, bio_act);
sys/dev/disk/xdisk/xdisk.c
972
tag->bio = NULL;
sys/dev/disk/xdisk/xdisk.c
974
xa_done(tag, 1);
sys/dev/disk/xdisk/xdisk.c
981
tag->status.head.error = DMSG_ERR_IO;
sys/dev/disk/xdisk/xdisk.c
982
xa_done(tag, 1);
sys/dev/disk/xdisk/xdisk.c
988
xa_wait(xa_tag_t *tag)
sys/dev/disk/xdisk/xdisk.c
990
xa_softc_t *sc = tag->sc;
sys/dev/disk/xdisk/xdisk.c
994
tag->waiting = 1;
sys/dev/disk/xdisk/xdisk.c
995
while (tag->done == 0)
sys/dev/disk/xdisk/xdisk.c
996
lksleep(tag, &sc->lk, 0, "xawait", 0);
sys/dev/disk/xdisk/xdisk.c
999
error = tag->status.head.error;
sys/dev/drm/drm_context.c
140
if (pos->tag == file &&
sys/dev/drm/drm_context.c
37
struct drm_file *tag;
sys/dev/drm/drm_context.c
389
ctx_entry->tag = file_priv;
sys/dev/drm/drm_edid.c
4709
switch (block->tag) {
sys/dev/drm/drm_edid.c
5180
block->tag, block->rev, block->num_bytes);
sys/dev/drm/drm_edid.c
5182
switch (block->tag) {
sys/dev/drm/drm_edid.c
5192
DRM_DEBUG_KMS("found DisplayID tag 0x%x, unhandled\n", block->tag);
sys/dev/drm/drm_pci.c
100
bus_dmamem_free(dmah->tag, dmah->vaddr, dmah->map);
sys/dev/drm/drm_pci.c
101
bus_dma_tag_destroy(dmah->tag);
sys/dev/drm/drm_pci.c
158
bus_dmamap_unload(dmah->tag, dmah->map);
sys/dev/drm/drm_pci.c
159
bus_dmamem_free(dmah->tag, dmah->vaddr, dmah->map);
sys/dev/drm/drm_pci.c
160
bus_dma_tag_destroy(dmah->tag);
sys/dev/drm/drm_pci.c
83
&dmah->tag);
sys/dev/drm/drm_pci.c
89
ret = bus_dmamem_alloc(dmah->tag, (void **)&dmah->vaddr,
sys/dev/drm/drm_pci.c
92
bus_dma_tag_destroy(dmah->tag);
sys/dev/drm/drm_pci.c
97
ret = bus_dmamap_load(dmah->tag, dmah->map, dmah->vaddr, size,
sys/dev/drm/drm_vma_manager.c
262
int drm_vma_node_allow(struct drm_vma_offset_node *node, struct drm_file *tag)
sys/dev/drm/drm_vma_manager.c
283
if (tag == entry->vm_tag) {
sys/dev/drm/drm_vma_manager.c
286
} else if (tag > entry->vm_tag) {
sys/dev/drm/drm_vma_manager.c
298
new->vm_tag = tag;
sys/dev/drm/drm_vma_manager.c
325
struct drm_file *tag)
sys/dev/drm/drm_vma_manager.c
335
if (tag == entry->vm_tag) {
sys/dev/drm/drm_vma_manager.c
341
} else if (tag > entry->vm_tag) {
sys/dev/drm/drm_vma_manager.c
366
struct drm_file *tag)
sys/dev/drm/drm_vma_manager.c
376
if (tag == entry->vm_tag)
sys/dev/drm/drm_vma_manager.c
378
else if (tag > entry->vm_tag)
sys/dev/drm/include/drm/drm_displayid.h
62
u8 tag;
sys/dev/drm/include/drm/drm_legacy.h
81
bus_dma_tag_t tag;
sys/dev/drm/include/drm/drm_vma_manager.h
231
struct drm_file *tag)
sys/dev/drm/include/drm/drm_vma_manager.h
233
return drm_vma_node_is_allowed(node, tag) ? 0 : -EACCES;
sys/dev/drm/include/drm/drm_vma_manager.h
64
int drm_vma_node_allow(struct drm_vma_offset_node *node, struct drm_file *tag);
sys/dev/drm/include/drm/drm_vma_manager.h
66
struct drm_file *tag);
sys/dev/drm/include/drm/drm_vma_manager.h
68
struct drm_file *tag);
sys/dev/drm/linux_dma.c
67
&dmah->tag, &dmah->map, &dmah->vaddr);
sys/dev/misc/atkbdc_layer/atkbdc_isa.c
132
bus_space_tag_t tag;
sys/dev/misc/atkbdc_layer/atkbdc_isa.c
184
tag = rman_get_bustag(port0);
sys/dev/misc/atkbdc_layer/atkbdc_isa.c
187
if ((bus_space_read_1(tag, ioh1, 0) & 0x2) == 0)
sys/dev/misc/kbd/atkbdc.c
224
bus_space_tag_t tag;
sys/dev/misc/kbd/atkbdc.c
246
tag = X86_64_BUS_SPACE_IO;
sys/dev/misc/kbd/atkbdc.c
248
tag = 0; /* XXX */
sys/dev/misc/kbd/atkbdc.c
252
bus_space_map(tag, port0, IO_KBDSIZE, 0, &h0);
sys/dev/misc/kbd/atkbdc.c
253
bus_space_map(tag, port1, IO_KBDSIZE, 0, &h1);
sys/dev/misc/kbd/atkbdc.c
269
if ((bus_space_read_1(tag, h1, 0) & 0x2) == 0)
sys/dev/misc/kbd/atkbdc.c
277
return atkbdc_setup(atkbdc_softc[0], tag, h0, h1);
sys/dev/misc/kbd/atkbdc.c
281
atkbdc_setup(atkbdc_softc_t *sc, bus_space_tag_t tag, bus_space_handle_t h0,
sys/dev/misc/kbd/atkbdc.c
298
sc->iot = tag;
sys/dev/misc/kbd/atkbdc.c
93
static int atkbdc_setup(atkbdc_softc_t *sc, bus_space_tag_t tag,
sys/dev/misc/vkbd/vkbd.c
1496
static eventhandler_tag tag;
sys/dev/misc/vkbd/vkbd.c
1502
tag = EVENTHANDLER_REGISTER(dev_clone, vkbd_dev_clone, 0, 1000);
sys/dev/misc/vkbd/vkbd.c
1503
if (tag == NULL) {
sys/dev/misc/vkbd/vkbd.c
1520
EVENTHANDLER_DEREGISTER(dev_clone, tag);
sys/dev/netif/ath/ath/if_ath_keycache.c
101
kprintf("%s: [%02u] %-7s ", tag, ix, ciphers[hk->kv_type]);
sys/dev/netif/ath/ath/if_ath_keycache.c
88
ath_keyprint(struct ath_softc *sc, const char *tag, u_int ix,
sys/dev/netif/ath/ath_hal/ah_osdep.c
285
bus_space_tag_t tag = BUSTAG(ah);
sys/dev/netif/ath/ath_hal/ah_osdep.c
310
bus_space_write_4(tag, h, reg, val);
sys/dev/netif/ath/ath_hal/ah_osdep.c
319
bus_space_tag_t tag = BUSTAG(ah);
sys/dev/netif/ath/ath_hal/ah_osdep.c
333
val = bus_space_read_4(tag, h, reg);
sys/dev/netif/ath/ath_hal/ah_osdep.c
381
bus_space_tag_t tag = BUSTAG(ah);
sys/dev/netif/ath/ath_hal/ah_osdep.c
395
bus_space_write_4(tag, h, reg, val);
sys/dev/netif/ath/ath_hal/ah_osdep.c
404
bus_space_tag_t tag = BUSTAG(ah);
sys/dev/netif/ath/ath_hal/ah_osdep.c
420
val = bus_space_read_4(tag, h, reg);
sys/dev/netif/ath/ath_hal/ah_osdep.c
76
((bus_space_tag_t) ((struct ar531x_config *)((ah)->ah_st))->tag)
sys/dev/netif/ath/ath_hal/ah_soc.h
89
void *tag; /* bus space tag */
sys/dev/netif/bge/if_bge.c
4511
bge_dma_block_alloc(struct bge_softc *sc, bus_size_t size, bus_dma_tag_t *tag,
sys/dev/netif/bge/if_bge.c
4523
*tag = dmem.dmem_tag;
sys/dev/netif/bge/if_bge.c
4532
bge_dma_block_free(bus_dma_tag_t tag, bus_dmamap_t map, void *addr)
sys/dev/netif/bge/if_bge.c
4534
if (tag != NULL) {
sys/dev/netif/bge/if_bge.c
4535
bus_dmamap_unload(tag, map);
sys/dev/netif/bge/if_bge.c
4536
bus_dmamem_free(tag, addr, map);
sys/dev/netif/bge/if_bge.c
4537
bus_dma_tag_destroy(tag);
sys/dev/netif/bnx/if_bnx.c
4349
bnx_dma_block_alloc(struct bnx_softc *sc, bus_size_t size, bus_dma_tag_t *tag,
sys/dev/netif/bnx/if_bnx.c
4361
*tag = dmem.dmem_tag;
sys/dev/netif/bnx/if_bnx.c
4370
bnx_dma_block_free(bus_dma_tag_t tag, bus_dmamap_t map, void *addr)
sys/dev/netif/bnx/if_bnx.c
4372
if (tag != NULL) {
sys/dev/netif/bnx/if_bnx.c
4373
bus_dmamap_unload(tag, map);
sys/dev/netif/bnx/if_bnx.c
4374
bus_dmamem_free(tag, addr, map);
sys/dev/netif/bnx/if_bnx.c
4375
bus_dma_tag_destroy(tag);
sys/dev/netif/iwm/if_iwm.c
1208
bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
sys/dev/netif/iwm/if_iwm.c
2429
bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
sys/dev/netif/iwm/if_iwm.c
3089
bus_dmamap_sync(ring->free_desc_dma.tag, ring->free_desc_dma.map,
sys/dev/netif/iwm/if_iwm.c
3703
bus_dmamap_sync(sc->sched_dma.tag, sc->sched_dma.map,
sys/dev/netif/iwm/if_iwm.c
3709
bus_dmamap_sync(sc->sched_dma.tag, sc->sched_dma.map,
sys/dev/netif/iwm/if_iwm.c
4008
bus_dmamap_sync(ring->cmd_dma.tag, ring->cmd_dma.map,
sys/dev/netif/iwm/if_iwm.c
4010
bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
sys/dev/netif/iwm/if_iwm.c
5699
bus_dmamap_sync(sc->rxq.stat_dma.tag, sc->rxq.stat_dma.map,
sys/dev/netif/iwm/if_iwm_util.c
296
bus_dmamap_sync(ring->cmd_dma.tag, ring->cmd_dma.map,
sys/dev/netif/iwm/if_iwm_util.c
299
bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
sys/dev/netif/iwm/if_iwm_util.c
433
iwm_dma_contig_alloc(bus_dma_tag_t tag, struct iwm_dma_info *dma,
sys/dev/netif/iwm/if_iwm_util.c
438
dma->tag = NULL;
sys/dev/netif/iwm/if_iwm_util.c
445
error = bus_dmamem_coherent(tag, alignment, 0,
sys/dev/netif/iwm/if_iwm_util.c
451
dma->tag = dmem.dmem_tag;
sys/dev/netif/iwm/if_iwm_util.c
456
error = bus_dma_tag_create(tag, alignment,
sys/dev/netif/iwm/if_iwm_util.c
458
1, size, 0, NULL, NULL, &dma->tag);
sys/dev/netif/iwm/if_iwm_util.c
462
error = bus_dmamem_alloc(dma->tag, (void **)&dma->vaddr,
sys/dev/netif/iwm/if_iwm_util.c
467
error = bus_dmamap_load(dma->tag, dma->map, dma->vaddr, size,
sys/dev/netif/iwm/if_iwm_util.c
470
bus_dmamem_free(dma->tag, dma->vaddr, dma->map);
sys/dev/netif/iwm/if_iwm_util.c
476
bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
sys/dev/netif/iwm/if_iwm_util.c
490
bus_dmamap_sync(dma->tag, dma->map,
sys/dev/netif/iwm/if_iwm_util.c
492
bus_dmamap_unload(dma->tag, dma->map);
sys/dev/netif/iwm/if_iwm_util.c
493
bus_dmamem_free(dma->tag, dma->vaddr, dma->map);
sys/dev/netif/iwm/if_iwm_util.c
496
if (dma->tag != NULL) {
sys/dev/netif/iwm/if_iwm_util.c
497
bus_dma_tag_destroy(dma->tag);
sys/dev/netif/iwm/if_iwm_util.c
498
dma->tag = NULL;
sys/dev/netif/iwm/if_iwm_util.h
118
extern int iwm_dma_contig_alloc(bus_dma_tag_t tag, struct iwm_dma_info *dma,
sys/dev/netif/iwm/if_iwmvar.h
244
bus_dma_tag_t tag;
sys/dev/netif/iwn/if_iwn.c
1795
dma->tag = NULL;
sys/dev/netif/iwn/if_iwn.c
1801
1, size, 0, &dma->tag);
sys/dev/netif/iwn/if_iwn.c
1805
1, size, 0, NULL, NULL, &dma->tag);
sys/dev/netif/iwn/if_iwn.c
1810
error = bus_dmamem_alloc(dma->tag, (void **)&dma->vaddr,
sys/dev/netif/iwn/if_iwn.c
1815
error = bus_dmamap_load(dma->tag, dma->map, dma->vaddr, size,
sys/dev/netif/iwn/if_iwn.c
1820
bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
sys/dev/netif/iwn/if_iwn.c
1835
bus_dmamap_sync(dma->tag, dma->map,
sys/dev/netif/iwn/if_iwn.c
1837
bus_dmamap_unload(dma->tag, dma->map);
sys/dev/netif/iwn/if_iwn.c
1838
bus_dmamem_free(dma->tag, dma->vaddr, dma->map);
sys/dev/netif/iwn/if_iwn.c
1841
if (dma->tag != NULL) {
sys/dev/netif/iwn/if_iwn.c
1842
bus_dma_tag_destroy(dma->tag);
sys/dev/netif/iwn/if_iwn.c
1843
dma->tag = NULL;
sys/dev/netif/iwn/if_iwn.c
1987
bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
sys/dev/netif/iwn/if_iwn.c
2151
bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
sys/dev/netif/iwn/if_iwn.c
3152
bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
sys/dev/netif/iwn/if_iwn.c
3897
bus_dmamap_sync(sc->rxq.stat_dma.tag, sc->rxq.stat_dma.map,
sys/dev/netif/iwn/if_iwn.c
4277
bus_dmamap_sync(sc->sched_dma.tag, sc->sched_dma.map,
sys/dev/netif/iwn/if_iwn.c
4281
bus_dmamap_sync(sc->sched_dma.tag, sc->sched_dma.map,
sys/dev/netif/iwn/if_iwn.c
4295
bus_dmamap_sync(sc->sched_dma.tag, sc->sched_dma.map,
sys/dev/netif/iwn/if_iwn.c
4299
bus_dmamap_sync(sc->sched_dma.tag, sc->sched_dma.map,
sys/dev/netif/iwn/if_iwn.c
4313
bus_dmamap_sync(sc->sched_dma.tag, sc->sched_dma.map,
sys/dev/netif/iwn/if_iwn.c
4317
bus_dmamap_sync(sc->sched_dma.tag, sc->sched_dma.map,
sys/dev/netif/iwn/if_iwn.c
4730
bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
sys/dev/netif/iwn/if_iwn.c
4940
bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
sys/dev/netif/iwn/if_iwn.c
5285
bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
sys/dev/netif/iwn/if_iwn.c
8041
bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
sys/dev/netif/iwn/if_iwn.c
8044
bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
sys/dev/netif/iwn/if_iwn.c
8084
bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
sys/dev/netif/iwn/if_iwn.c
8087
bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
sys/dev/netif/iwn/if_iwn.c
8114
bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
sys/dev/netif/iwn/if_iwnvar.h
89
bus_dma_tag_t tag;
sys/dev/netif/nfe/if_nfe.c
1669
ring->tag = dmem.dmem_tag;
sys/dev/netif/nfe/if_nfe.c
1802
if (ring->tag != NULL) {
sys/dev/netif/nfe/if_nfe.c
1810
bus_dmamap_unload(ring->tag, ring->map);
sys/dev/netif/nfe/if_nfe.c
1811
bus_dmamem_free(ring->tag, desc, ring->map);
sys/dev/netif/nfe/if_nfe.c
1812
bus_dma_tag_destroy(ring->tag);
sys/dev/netif/nfe/if_nfe.c
1956
ring->tag = dmem.dmem_tag;
sys/dev/netif/nfe/if_nfe.c
2049
if (ring->tag != NULL) {
sys/dev/netif/nfe/if_nfe.c
2057
bus_dmamap_unload(ring->tag, ring->map);
sys/dev/netif/nfe/if_nfe.c
2058
bus_dmamem_free(ring->tag, desc, ring->map);
sys/dev/netif/nfe/if_nfe.c
2059
bus_dma_tag_destroy(ring->tag);
sys/dev/netif/nfe/if_nfevar.h
25
bus_dma_tag_t tag;
sys/dev/netif/nfe/if_nfevar.h
56
bus_dma_tag_t tag;
sys/dev/netif/oce/oce_hw.h
597
uint32_t tag[2];
sys/dev/netif/oce/oce_hw.h
706
uint16_t tag;
sys/dev/netif/oce/oce_if.c
1170
bus_dmamap_sync(cq->ring->dma.tag,
sys/dev/netif/oce/oce_if.c
1184
bus_dmamap_sync(cq->ring->dma.tag,
sys/dev/netif/oce/oce_if.c
1286
bus_dmamap_sync(rq->tag, pd->map, BUS_DMASYNC_POSTWRITE);
sys/dev/netif/oce/oce_if.c
1287
bus_dmamap_unload(rq->tag, pd->map);
sys/dev/netif/oce/oce_if.c
1412
bus_dmamap_sync(rq->tag, pd->map, BUS_DMASYNC_POSTWRITE);
sys/dev/netif/oce/oce_if.c
1413
bus_dmamap_unload(rq->tag, pd->map);
sys/dev/netif/oce/oce_if.c
1541
rc = bus_dmamap_load_mbuf_segment(rq->tag,
sys/dev/netif/oce/oce_if.c
1557
bus_dmamap_sync(rq->tag, pd->map, BUS_DMASYNC_PREREAD);
sys/dev/netif/oce/oce_if.c
1595
bus_dmamap_sync(cq->ring->dma.tag,
sys/dev/netif/oce/oce_if.c
1622
bus_dmamap_sync(cq->ring->dma.tag,
sys/dev/netif/oce/oce_if.c
2092
bus_dmamap_sync(cq->ring->dma.tag,
sys/dev/netif/oce/oce_if.c
2111
sc->pvid = gcqe->tag & VLAN_VID_MASK;
sys/dev/netif/oce/oce_if.c
2127
bus_dmamap_sync(cq->ring->dma.tag,
sys/dev/netif/oce/oce_if.c
565
bus_dmamap_sync(eq->ring->dma.tag, eq->ring->dma.map,
sys/dev/netif/oce/oce_if.c
572
bus_dmamap_sync(eq->ring->dma.tag, eq->ring->dma.map,
sys/dev/netif/oce/oce_if.c
721
oce_fast_isr, ii, &ii->tag, NULL);
sys/dev/netif/oce/oce_if.c
734
if (sc->intrs[i].tag != NULL)
sys/dev/netif/oce/oce_if.c
736
sc->intrs[i].tag);
sys/dev/netif/oce/oce_if.c
744
sc->intrs[i].tag = NULL;
sys/dev/netif/oce/oce_if.c
857
rc = bus_dmamap_load_mbuf_defrag(wq->tag,
sys/dev/netif/oce/oce_if.c
869
bus_dmamap_unload(wq->tag, pd->map);
sys/dev/netif/oce/oce_if.c
875
bus_dmamap_sync(wq->tag, pd->map, BUS_DMASYNC_PREWRITE);
sys/dev/netif/oce/oce_if.c
946
bus_dmamap_sync(wq->ring->dma.tag, wq->ring->dma.map,
sys/dev/netif/oce/oce_if.c
987
bus_dmamap_sync(wq->tag, pd->map, BUS_DMASYNC_POSTWRITE);
sys/dev/netif/oce/oce_if.c
988
bus_dmamap_unload(wq->tag, pd->map);
sys/dev/netif/oce/oce_if.h
264
void *tag; /* cookie returned by bus_setup_intr */
sys/dev/netif/oce/oce_if.h
284
#define DBUF_TAG(obj) ((obj)->tag)
sys/dev/netif/oce/oce_if.h
318
bus_dma_tag_t tag;
sys/dev/netif/oce/oce_if.h
691
bus_dma_tag_t tag;
sys/dev/netif/oce/oce_if.h
745
bus_dma_tag_t tag;
sys/dev/netif/oce/oce_if.h
945
#define oce_dma_sync(d, f) bus_dmamap_sync((d)->tag, (d)->map, f)
sys/dev/netif/oce/oce_mbox.c
322
bus_dmamap_sync(mq->ring->dma.tag, mq->ring->dma.map,
sys/dev/netif/oce/oce_mbox.c
355
tmo = mbx->tag[0];
sys/dev/netif/oce/oce_mbox.c
356
mbx->tag[0] = 0;
sys/dev/netif/oce/oce_queue.c
1063
bus_dmamap_sync(eq->ring->dma.tag, eq->ring->dma.map,
sys/dev/netif/oce/oce_queue.c
1084
bus_dmamap_sync(cq->ring->dma.tag, cq->ring->dma.map,
sys/dev/netif/oce/oce_queue.c
1092
bus_dmamap_sync(cq->ring->dma.tag, cq->ring->dma.map,
sys/dev/netif/oce/oce_queue.c
1157
bus_dmamap_sync(rq->tag, pd->map, BUS_DMASYNC_POSTWRITE);
sys/dev/netif/oce/oce_queue.c
1158
bus_dmamap_unload(rq->tag, pd->map);
sys/dev/netif/oce/oce_queue.c
241
PAGE_SIZE, 0, &wq->tag);
sys/dev/netif/oce/oce_queue.c
248
rc = bus_dmamap_create(wq->tag, 0, &wq->pckts[i].map);
sys/dev/netif/oce/oce_queue.c
297
bus_dmamap_unload(wq->tag, wq->pckts[i].map);
sys/dev/netif/oce/oce_queue.c
298
bus_dmamap_destroy(wq->tag, wq->pckts[i].map);
sys/dev/netif/oce/oce_queue.c
303
if (wq->tag != NULL)
sys/dev/netif/oce/oce_queue.c
304
bus_dma_tag_destroy(wq->tag);
sys/dev/netif/oce/oce_queue.c
442
1, PAGE_SIZE, 0, &rq->tag);
sys/dev/netif/oce/oce_queue.c
448
rc = bus_dmamap_create(rq->tag, 0, &rq->pckts[i].map);
sys/dev/netif/oce/oce_queue.c
488
bus_dmamap_unload(rq->tag, rq->pckts[i].map);
sys/dev/netif/oce/oce_queue.c
489
bus_dmamap_destroy(rq->tag, rq->pckts[i].map);
sys/dev/netif/oce/oce_queue.c
498
if (rq->tag != NULL)
sys/dev/netif/oce/oce_queue.c
499
bus_dma_tag_destroy(rq->tag);
sys/dev/netif/oce/oce_util.c
106
if (dma->tag == NULL)
sys/dev/netif/oce/oce_util.c
110
bus_dmamap_sync(dma->tag, dma->map,
sys/dev/netif/oce/oce_util.c
112
bus_dmamap_unload(dma->tag, dma->map);
sys/dev/netif/oce/oce_util.c
116
bus_dmamem_free(dma->tag, dma->ptr, dma->map);
sys/dev/netif/oce/oce_util.c
121
bus_dma_tag_destroy(dma->tag);
sys/dev/netif/oce/oce_util.c
122
dma->tag = NULL;
sys/dev/netif/oce/oce_util.c
184
size, 8, 4096, 0, &ring->dma.tag);
sys/dev/netif/oce/oce_util.c
189
rc = bus_dmamem_alloc(ring->dma.tag,
sys/dev/netif/oce/oce_util.c
197
bus_dmamap_sync(ring->dma.tag, ring->dma.map,
sys/dev/netif/oce/oce_util.c
262
bus_dmamap_load(ring->dma.tag,
sys/dev/netif/oce/oce_util.c
70
size, 1, size, 0, &dma->tag);
sys/dev/netif/oce/oce_util.c
73
rc = bus_dmamem_alloc(dma->tag,
sys/dev/netif/oce/oce_util.c
82
rc = bus_dmamap_load(dma->tag,
sys/dev/netif/wpi/if_wpi.c
1091
bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
sys/dev/netif/wpi/if_wpi.c
1214
bus_dmamap_sync(sc->shared_dma.tag, sc->shared_dma.map,
sys/dev/netif/wpi/if_wpi.c
1318
bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
sys/dev/netif/wpi/if_wpi.c
2023
bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
sys/dev/netif/wpi/if_wpi.c
2205
bus_dmamap_sync(sc->shared_dma.tag, sc->shared_dma.map,
sys/dev/netif/wpi/if_wpi.c
2784
bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
sys/dev/netif/wpi/if_wpi.c
3349
bus_dmamap_sync(ring->desc_dma.tag, ring->desc_dma.map,
sys/dev/netif/wpi/if_wpi.c
5008
bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
sys/dev/netif/wpi/if_wpi.c
5010
bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
sys/dev/netif/wpi/if_wpi.c
5047
bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
sys/dev/netif/wpi/if_wpi.c
5049
bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
sys/dev/netif/wpi/if_wpi.c
737
if (sc->fw_dma.tag)
sys/dev/netif/wpi/if_wpi.c
928
dma->tag = NULL;
sys/dev/netif/wpi/if_wpi.c
934
1, size, 0, &dma->tag);
sys/dev/netif/wpi/if_wpi.c
938
1, size, 0, NULL, NULL, &dma->tag);
sys/dev/netif/wpi/if_wpi.c
943
error = bus_dmamem_alloc(dma->tag, (void **)&dma->vaddr,
sys/dev/netif/wpi/if_wpi.c
948
error = bus_dmamap_load(dma->tag, dma->map, dma->vaddr, size,
sys/dev/netif/wpi/if_wpi.c
953
bus_dmamap_sync(dma->tag, dma->map, BUS_DMASYNC_PREWRITE);
sys/dev/netif/wpi/if_wpi.c
968
bus_dmamap_sync(dma->tag, dma->map,
sys/dev/netif/wpi/if_wpi.c
970
bus_dmamap_unload(dma->tag, dma->map);
sys/dev/netif/wpi/if_wpi.c
971
bus_dmamem_free(dma->tag, dma->vaddr, dma->map);
sys/dev/netif/wpi/if_wpi.c
974
if (dma->tag != NULL) {
sys/dev/netif/wpi/if_wpi.c
975
bus_dma_tag_destroy(dma->tag);
sys/dev/netif/wpi/if_wpi.c
976
dma->tag = NULL;
sys/dev/netif/wpi/if_wpivar.h
54
bus_dma_tag_t tag;
sys/dev/raid/ciss/ciss.c
2032
u_int32_t tag, index;
sys/dev/raid/ciss/ciss.c
2042
tag = CISS_TL_SIMPLE_FETCH_CMD(sc);
sys/dev/raid/ciss/ciss.c
2043
if (tag == CISS_TL_SIMPLE_OPQ_EMPTY)
sys/dev/raid/ciss/ciss.c
2045
index = tag >> 2;
sys/dev/raid/ciss/ciss.c
2047
(tag & CISS_HDR_HOST_TAG_ERROR) ? " with error" : "");
sys/dev/raid/ciss/ciss.c
2049
ciss_printf(sc, "completed invalid request %d (0x%x)\n", index, tag);
sys/dev/raid/ciss/ciss.c
2054
cc->header.host_tag = tag; /* not updated by adapter */
sys/dev/raid/ciss/ciss.c
2065
u_int32_t tag, index;
sys/dev/raid/ciss/ciss.c
2074
tag = sc->ciss_reply[sc->ciss_rqidx];
sys/dev/raid/ciss/ciss.c
2075
if ((tag & CISS_CYCLE_MASK) != sc->ciss_cycle)
sys/dev/raid/ciss/ciss.c
2077
index = tag >> 2;
sys/dev/raid/ciss/ciss.c
2079
(tag & CISS_HDR_HOST_TAG_ERROR) ? " with error" : "");
sys/dev/raid/ciss/ciss.c
2083
cc->header.host_tag = tag; /* not updated by adapter */
sys/dev/raid/ciss/ciss.c
2086
ciss_printf(sc, "completed invalid request %d (0x%x)\n", index, tag);
sys/dev/raid/ciss/cissreg.h
380
u_int32_t tag;
sys/dev/raid/dpt/dpt.h
890
u_int8_t tag;
sys/dev/raid/dpt/dpt.h
965
bus_space_tag_t tag;
sys/dev/raid/dpt/dpt_scsi.c
1154
dpt_alloc(device_t dev, bus_space_tag_t tag, bus_space_handle_t bsh)
sys/dev/raid/dpt/dpt_scsi.c
1160
dpt->tag = tag;
sys/dev/raid/dpt/dpt_scsi.c
370
next_ccb->tag = dpt->total_dccbs;
sys/dev/raid/dpt/dpt_scsi.c
85
bus_space_read_4((dpt)->tag, (dpt)->bsh, port)
sys/dev/raid/dpt/dpt_scsi.c
87
bus_space_read_1((dpt)->tag, (dpt)->bsh, port)
sys/dev/raid/dpt/dpt_scsi.c
870
eccb->cp_msg[1] = dccb->tag;
sys/dev/raid/dpt/dpt_scsi.c
89
bus_space_write_4((dpt)->tag, (dpt)->bsh, port, value)
sys/dev/raid/dpt/dpt_scsi.c
91
bus_space_write_1((dpt)->tag, (dpt)->bsh, port, value)
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
150
f->tag, f->count, f->size, f->count*f->size));
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
167
f->tag, f->count, f->size, f->count*f->size, order));
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
204
KdPrint(("memory leak for freelist %s (%d/%d)", f->tag, f->count, f->reserved_count));
sys/dev/raid/hpt27xx/hpt27xx_osm_bsd.c
221
KdPrint(("memory leak for dma freelist %s (%d/%d)", f->tag, f->count, f->reserved_count));
sys/dev/raid/hpt27xx/ldm.h
81
char *tag;
sys/dev/raid/hpt27xx/ldm.h
83
#define freelist_debug_tag(list, _tag) (list)->tag = _tag
sys/dev/raid/hptmv/raid5n.h
37
typedef void (* HPTLIBAPI xfer_done_fn)(_VBUS_ARG void *tag, int result);
sys/dev/raid/hptmv/raid5n.h
47
#define dataxfer_exec(handle, done, tag) done(_VBUS_P tag, 0)
sys/dev/raid/hptmv/raid5n.h
51
typedef void (* HPTLIBAPI xor_done_fn)(_VBUS_ARG void *tag, int result);
sys/dev/raid/hptmv/raid5n.h
69
#define xor_exec(handle, done, tag) done(_VBUS_P tag, 0)
sys/dev/raid/hptrr/hptrr_osm_bsd.c
165
f->tag, f->count, f->size, f->count*f->size));
sys/dev/raid/hptrr/hptrr_osm_bsd.c
183
f->tag, f->count, f->size, f->count*f->size, order));
sys/dev/raid/hptrr/hptrr_osm_bsd.c
220
KdPrint(("memory leak for freelist %s (%d/%d)", f->tag, f->count, f->reserved_count));
sys/dev/raid/hptrr/hptrr_osm_bsd.c
237
KdPrint(("memory leak for dma freelist %s (%d/%d)", f->tag, f->count, f->reserved_count));
sys/dev/raid/hptrr/ldm.h
76
char *tag;
sys/dev/raid/hptrr/ldm.h
78
#define freelist_debug_tag(list, _tag) (list)->tag = _tag
sys/dev/raid/ida/ida.c
184
ida->tag = rman_get_bustag(ida->regs);
sys/dev/raid/ida/idavar.h
138
bus_space_tag_t tag;
sys/dev/raid/ida/idavar.h
37
bus_space_read_1((ida)->tag, (ida)->bsh, port)
sys/dev/raid/ida/idavar.h
39
bus_space_read_2((ida)->tag, (ida)->bsh, port)
sys/dev/raid/ida/idavar.h
41
bus_space_read_4((ida)->tag, (ida)->bsh, port)
sys/dev/raid/ida/idavar.h
44
bus_space_write_1((ida)->tag, (ida)->bsh, port, val)
sys/dev/raid/ida/idavar.h
46
bus_space_write_2((ida)->tag, (ida)->bsh, port, val)
sys/dev/raid/ida/idavar.h
48
bus_space_write_4((ida)->tag, (ida)->bsh, port, val)
sys/dev/raid/mpr/mprvar.h
709
#define MPR_PRINTFIELD_START(sc, tag...) \
sys/dev/raid/mpr/mprvar.h
710
mpr_printf((sc), ##tag); \
sys/dev/raid/mpr/mprvar.h
712
#define MPR_PRINTFIELD_END(sc, tag) \
sys/dev/raid/mpr/mprvar.h
713
mpr_printf((sc), tag "\n")
sys/dev/raid/mps/mpsvar.h
633
#define MPS_PRINTFIELD_START(sc, tag...) \
sys/dev/raid/mps/mpsvar.h
634
mps_dprint((sc), MPS_INFO, ##tag); \
sys/dev/raid/mps/mpsvar.h
636
#define MPS_PRINTFIELD_END(sc, tag) \
sys/dev/raid/mps/mpsvar.h
637
mps_dprint((sc), MPS_INFO, tag "\n")
sys/dev/raid/mps/mpsvar.h
641
#define MPS_EVENTFIELD_START(sc, tag...) \
sys/dev/raid/mps/mpsvar.h
642
mps_dprint((sc), MPS_EVENT, ##tag); \
sys/dev/raid/twe/twe_freebsd.c
915
twe_allocate_request(struct twe_softc *sc, int tag)
sys/dev/raid/twe/twe_freebsd.c
930
tr->tr_tag = tag;
sys/dev/raid/twe/twe_freebsd.c
933
twe_printf(sc, "unable to allocate dmamap for tag %d\n", tag);
sys/dev/raid/twe/twevar.h
184
extern struct twe_request *twe_allocate_request(struct twe_softc *sc, int tag); /* allocate request structure */
sys/dev/sound/pci/hda/hdaa.c
6827
int i, tag, flags;
sys/dev/sound/pci/hda/hdaa.c
6832
tag = resp >> 26;
sys/dev/sound/pci/hda/hdaa.c
6838
if (w->unsol != tag)
sys/dev/sound/pci/hda/hdac.c
2112
hdac_unsol_alloc(device_t dev, device_t child, int tag)
sys/dev/sound/pci/hda/hdac.c
2118
return (tag);
sys/dev/sound/pci/hda/hdac.c
2122
hdac_unsol_free(device_t dev, device_t child, int tag)
sys/dev/sound/pci/hda/hdacc.c
716
int tag;
sys/dev/sound/pci/hda/hdacc.c
719
tag = wanted;
sys/dev/sound/pci/hda/hdacc.c
721
if (codec->tags[tag] == NULL) {
sys/dev/sound/pci/hda/hdacc.c
722
codec->tags[tag] = child;
sys/dev/sound/pci/hda/hdacc.c
723
HDAC_UNSOL_ALLOC(device_get_parent(dev), dev, tag);
sys/dev/sound/pci/hda/hdacc.c
724
return (tag);
sys/dev/sound/pci/hda/hdacc.c
726
tag++;
sys/dev/sound/pci/hda/hdacc.c
727
tag &= 0x3f;
sys/dev/sound/pci/hda/hdacc.c
728
} while (tag != wanted);
sys/dev/sound/pci/hda/hdacc.c
733
hdacc_unsol_free(device_t dev, device_t child, int tag)
sys/dev/sound/pci/hda/hdacc.c
737
KASSERT(tag >= 0 && tag <= 0x3f, ("Wrong tag value %d\n", tag));
sys/dev/sound/pci/hda/hdacc.c
738
codec->tags[tag] = NULL;
sys/dev/sound/pci/hda/hdacc.c
739
HDAC_UNSOL_FREE(device_get_parent(dev), dev, tag);
sys/dev/sound/pci/hda/hdacc.c
747
int tag;
sys/dev/sound/pci/hda/hdacc.c
749
tag = resp >> 26;
sys/dev/sound/pci/hda/hdacc.c
750
if ((child = codec->tags[tag]) != NULL)
sys/dev/sound/pci/hda/hdacc.c
754
"response with tag %d: %08x\n", tag, resp);
sys/dev/video/bktr/bktr_os.c
248
old_irq = pci_conf_read(tag, PCI_INTERRUPT_REG);
sys/dev/video/bktr/bktr_os.c
249
pci_conf_write(tag, PCI_INTERRUPT_REG, BROOKTREE_IRQ);
sys/dev/video/bktr/bktr_os.c
250
new_irq = pci_conf_read(tag, PCI_INTERRUPT_REG);
sys/dev/virtual/amazon/ena/ena-com/ena_plat.h
266
bus_dma_tag_t tag;
sys/dev/virtual/amazon/ena/ena-com/ena_plat.h
317
bus_dmamap_unload((dma).tag, (dma).map); \
sys/dev/virtual/amazon/ena/ena-com/ena_plat.h
318
bus_dmamem_free((dma).tag, (virt), (dma).map); \
sys/dev/virtual/amazon/ena/ena-com/ena_plat.h
319
bus_dma_tag_destroy((dma).tag); \
sys/dev/virtual/amazon/ena/ena-com/ena_plat.h
320
(dma).tag = NULL; \
sys/dev/virtual/amazon/ena/ena-com/ena_plat.h
337
#define ENA_DB_SYNC(mem_handle) bus_dmamap_sync((mem_handle)->tag, \
sys/dev/virtual/amazon/ena/ena.c
236
&dma->tag);
sys/dev/virtual/amazon/ena/ena.c
242
error = bus_dmamem_alloc(dma->tag, (void**) &dma->vaddr,
sys/dev/virtual/amazon/ena/ena.c
251
error = bus_dmamap_load(dma->tag, dma->map, dma->vaddr,
sys/dev/virtual/amazon/ena/ena.c
261
bus_dmamem_free(dma->tag, dma->vaddr, dma->map);
sys/dev/virtual/amazon/ena/ena.c
263
bus_dma_tag_destroy(dma->tag);
sys/dev/virtual/amazon/ena/ena.c
265
dma->tag = NULL;
sys/dev/virtual/virtio/balloon/virtio_balloon.c
472
uint16_t tag, uint64_t val)
sys/dev/virtual/virtio/balloon/virtio_balloon.c
482
sc->vtballoon_stats[idx].tag = le16toh(tag);
sys/dev/virtual/virtio/balloon/virtio_balloon.c
539
kprintf("\t%s = %lu\n", vt_balloon_names[sc->vtballoon_stats[i].tag], sc->vtballoon_stats[i].val);
sys/dev/virtual/virtio/balloon/virtio_balloon.h
122
uint16_t tag;
sys/dev/virtual/virtio/net/if_vtnet.c
2628
vtnet_exec_vlan_filter(struct vtnet_softc *sc, int add, uint16_t tag)
sys/dev/virtual/virtio/net/if_vtnet.c
2635
uint16_t tag;
sys/dev/virtual/virtio/net/if_vtnet.c
2643
s.tag = tag;
sys/dev/virtual/virtio/net/if_vtnet.c
2649
error |= sglist_append(&sg, &s.tag, sizeof(uint16_t));
sys/dev/virtual/virtio/net/if_vtnet.c
2663
uint16_t tag;
sys/dev/virtual/virtio/net/if_vtnet.c
2677
tag = sizeof(w) * CHAR_BIT * i + bit;
sys/dev/virtual/virtio/net/if_vtnet.c
2680
if (vtnet_exec_vlan_filter(sc, 1, tag) != 0) {
sys/dev/virtual/virtio/net/if_vtnet.c
2682
"cannot enable VLAN %d filter\n", tag);
sys/dev/virtual/virtio/net/if_vtnet.c
2691
vtnet_update_vlan_filter(struct vtnet_softc *sc, int add, uint16_t tag)
sys/dev/virtual/virtio/net/if_vtnet.c
2697
idx = (tag >> 5) & 0x7F;
sys/dev/virtual/virtio/net/if_vtnet.c
2698
bit = tag & 0x1F;
sys/dev/virtual/virtio/net/if_vtnet.c
2700
if (tag == 0 || tag > 4095)
sys/dev/virtual/virtio/net/if_vtnet.c
2715
vtnet_exec_vlan_filter(sc, add, tag) != 0) {
sys/dev/virtual/virtio/net/if_vtnet.c
2718
add ? "add" : "remove", tag, add ? "to" : "from");
sys/dev/virtual/virtio/net/if_vtnet.c
2725
vtnet_register_vlan(void *arg, struct ifnet *ifp, uint16_t tag)
sys/dev/virtual/virtio/net/if_vtnet.c
2731
vtnet_update_vlan_filter(arg, 1, tag);
sys/dev/virtual/virtio/net/if_vtnet.c
2735
vtnet_unregister_vlan(void *arg, struct ifnet *ifp, uint16_t tag)
sys/dev/virtual/virtio/net/if_vtnet.c
2741
vtnet_update_vlan_filter(arg, 0, tag);
sys/dev/virtual/virtio/scsi/virtio_scsi.c
1681
cmd_req->tag = (uintptr_t) csio;
sys/dev/virtual/virtio/scsi/virtio_scsi.c
1692
uintptr_t tag, struct virtio_scsi_ctrl_tmf_req *tmf_req)
sys/dev/virtual/virtio/scsi/virtio_scsi.c
1699
tmf_req->tag = tag;
sys/dev/virtual/virtio/scsi/virtio_scsi.h
45
uint64_t tag; /* Command identifier */
sys/dev/virtual/virtio/scsi/virtio_scsi.h
67
uint64_t tag;
sys/dev/virtual/vmware/pvscsi/pvscsi.c
1368
e->tag = MSG_SIMPLE_Q_TAG;
sys/dev/virtual/vmware/pvscsi/pvscsi.c
1370
e->tag = csio->tag_action;
sys/dev/virtual/vmware/pvscsi/pvscsi.c
186
bus_dma_tag_t tag;
sys/dev/virtual/vmware/pvscsi/pvscsi.c
449
if (dma->tag != NULL) {
sys/dev/virtual/vmware/pvscsi/pvscsi.c
451
bus_dmamap_unload(dma->tag, dma->map);
sys/dev/virtual/vmware/pvscsi/pvscsi.c
455
bus_dmamem_free(dma->tag, dma->vaddr, dma->map);
sys/dev/virtual/vmware/pvscsi/pvscsi.c
458
bus_dma_tag_destroy(dma->tag);
sys/dev/virtual/vmware/pvscsi/pvscsi.c
474
BUS_DMA_ALLOCNOW, &dma->tag);
sys/dev/virtual/vmware/pvscsi/pvscsi.c
481
error = bus_dmamem_alloc(dma->tag, &dma->vaddr,
sys/dev/virtual/vmware/pvscsi/pvscsi.c
489
error = bus_dmamap_load(dma->tag, dma->map, dma->vaddr, size,
sys/dev/virtual/vmware/pvscsi/pvscsi.h
120
uint8_t tag;
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
1980
bus_dma_tag_t tag;
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
1986
tag = rxr->vxrxr_rxtag;
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
2020
error = bus_dmamap_load_mbuf_segment(tag, dmap, m, &segs[0], 1, &nsegs,
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
2033
bus_dmamap_sync(tag, rxb->vrxb_dmamap, BUS_DMASYNC_POSTREAD);
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
2034
bus_dmamap_unload(tag, rxb->vrxb_dmamap);
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
2824
bus_dma_tag_t tag;
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
2829
tag = txr->vxtxr_txtag;
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
2831
error = bus_dmamap_load_mbuf_segment(tag, dmap, m, segs, 1, nsegs,
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
2839
error = bus_dmamap_load_mbuf_segment(tag, dmap, m, segs,
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
3175
vmxnet3_update_vlan_filter(struct vmxnet3_softc *sc, int add, uint16_t tag)
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
3181
idx = (tag >> 5) & 0x7F;
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
3182
bit = tag & 0x1F;
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
3184
if (tag == 0 || tag > 4095)
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
3209
vmxnet3_register_vlan(void *arg, struct ifnet *ifp, uint16_t tag)
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
3213
vmxnet3_update_vlan_filter(arg, 1, tag);
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
3217
vmxnet3_unregister_vlan(void *arg, struct ifnet *ifp, uint16_t tag)
sys/dev/virtual/vmware/vmxnet3/if_vmx.c
3221
vmxnet3_update_vlan_filter(arg, 0, tag);
sys/kern/subr_eventhandler.c
116
eventhandler_deregister(struct eventhandler_list *list, eventhandler_tag tag)
sys/kern/subr_eventhandler.c
118
struct eventhandler_entry *ep = tag;
sys/kern/vfs_mount.c
194
getnewvnode(enum vtagtype tag, struct mount *mp,
sys/kern/vfs_mount.c
202
vp->v_tag = tag;
sys/kern/vfs_mount.c
233
getspecialvnode(enum vtagtype tag, struct mount *mp,
sys/kern/vfs_mount.c
240
vp->v_tag = tag;
sys/libprop/prop_object.c
111
struct _prop_object_externalize_context *ctx, const char *tag)
sys/libprop/prop_object.c
120
_prop_object_externalize_append_cstring(ctx, tag) == false ||
sys/libprop/prop_object.c
133
struct _prop_object_externalize_context *ctx, const char *tag)
sys/libprop/prop_object.c
138
_prop_object_externalize_append_cstring(ctx, tag) == false ||
sys/libprop/prop_object.c
152
struct _prop_object_externalize_context *ctx, const char *tag)
sys/libprop/prop_object.c
162
_prop_object_externalize_append_cstring(ctx, tag) == false ||
sys/libprop/prop_object.c
363
const char *tag, _prop_tag_type_t type)
sys/libprop/prop_object.c
368
if (tag != NULL)
sys/libprop/prop_object.c
369
taglen = strlen(tag);
sys/libprop/prop_object.c
431
if (tag != NULL &&
sys/libprop/prop_object.c
433
memcmp(tag, ctx->poic_tagname, taglen) != 0))
sys/net/dummynet/ip_dummynet.c
1036
struct m_tag *tag;
sys/net/dummynet/ip_dummynet.c
1043
tag = m_tag_find(m, PACKET_TAG_DUMMYNET, NULL);
sys/net/dummynet/ip_dummynet.c
1044
pkt = m_tag_data(tag);
sys/net/dummynet3/ip_dummynet3.c
1055
struct m_tag *tag;
sys/net/dummynet3/ip_dummynet3.c
1062
tag = m_tag_find(m, PACKET_TAG_DUMMYNET, NULL);
sys/net/dummynet3/ip_dummynet3.c
1063
pkt = m_tag_data(tag);
sys/net/netmap/netmap_kern.h
774
netmap_load_map(bus_dma_tag_t tag, bus_dmamap_t map, void *buf)
sys/net/netmap/netmap_kern.h
777
bus_dmamap_load(tag, map, buf, NETMAP_BUF_SIZE,
sys/net/netmap/netmap_kern.h
783
netmap_reload_map(bus_dma_tag_t tag, bus_dmamap_t map, void *buf)
sys/net/netmap/netmap_kern.h
786
bus_dmamap_unload(tag, map);
sys/net/netmap/netmap_kern.h
787
bus_dmamap_load(tag, map, buf, NETMAP_BUF_SIZE,
sys/net/pf/pf.c
1495
TH_RST|TH_ACK, 0, 0, 0, 1, cur->tag, NULL, NULL);
sys/net/pf/pf.c
1550
if (cur->tag)
sys/net/pf/pf.c
1551
pf_tag_unref(cur->tag);
sys/net/pf/pf.c
2128
u_int8_t flags, u_int16_t win, u_int16_t mss, u_int8_t ttl, int tag,
sys/net/pf/pf.c
2172
if (tag)
sys/net/pf/pf.c
2175
m->m_pkthdr.pf.tag = rtag;
sys/net/pf/pf.c
2477
pf_match_tag(struct mbuf *m, struct pf_rule *r, int *tag)
sys/net/pf/pf.c
2479
if (*tag == -1)
sys/net/pf/pf.c
2480
*tag = m->m_pkthdr.pf.tag;
sys/net/pf/pf.c
2482
return ((!r->match_tag_not && r->match_tag == *tag) ||
sys/net/pf/pf.c
2483
(r->match_tag_not && r->match_tag != *tag));
sys/net/pf/pf.c
2487
pf_tag_packet(struct mbuf *m, int tag, int rtableid)
sys/net/pf/pf.c
2489
if (tag <= 0 && rtableid < 0)
sys/net/pf/pf.c
2492
if (tag > 0)
sys/net/pf/pf.c
2493
m->m_pkthdr.pf.tag = tag;
sys/net/pf/pf.c
3079
int tag = -1;
sys/net/pf/pf.c
3127
else if (r->match_tag && !pf_match_tag(m, r, &tag))
sys/net/pf/pf.c
3134
if (r->tag)
sys/net/pf/pf.c
3135
tag = r->tag;
sys/net/pf/pf.c
3148
if (pf_tag_packet(m, tag, rtableid))
sys/net/pf/pf.c
3706
int tag = -1, rtableid = -1;
sys/net/pf/pf.c
3961
else if (r->match_tag && !pf_match_tag(m, r, &tag))
sys/net/pf/pf.c
3969
if (r->tag)
sys/net/pf/pf.c
3970
tag = r->tag;
sys/net/pf/pf.c
4068
if (pf_tag_packet(m, tag, rtableid)) {
sys/net/pf/pf.c
4077
off, sport, dport, &rewrite, kif, sm, tag, bproto_sum,
sys/net/pf/pf.c
4102
struct pfi_kif *kif, struct pf_state **sm, int tag, u_int16_t bproto_sum,
sys/net/pf/pf.c
4262
if (tag > 0) {
sys/net/pf/pf.c
4263
pf_tag_ref(tag);
sys/net/pf/pf.c
4264
s->tag = tag;
sys/net/pf/pf.c
4340
int tag = -1;
sys/net/pf/pf.c
4377
else if (r->match_tag && !pf_match_tag(m, r, &tag))
sys/net/pf/pf.c
4409
if (pf_tag_packet(m, tag, -1)) {
sys/net/pf/pf.c
4952
(*state)->src.mss, 0, 0, (*state)->tag, NULL, NULL);
sys/net/pf/pf.c
4967
(*state)->tag, NULL, NULL);
sys/net/pf/pf.c
6720
if ((s && s->tag) || r->rtableid)
sys/net/pf/pf.c
6721
pf_tag_packet(m, s ? s->tag : 0, r->rtableid);
sys/net/pf/pf.c
7123
if ((s && s->tag) || r->rtableid)
sys/net/pf/pf.c
7124
pf_tag_packet(m, s ? s->tag : 0, r->rtableid);
sys/net/pf/pf_ioctl.c
1225
if ((rule->tag = pf_tagname2tag(rule->tagname)) == 0)
sys/net/pf/pf_ioctl.c
1461
if ((newrule->tag =
sys/net/pf/pf_ioctl.c
416
pf_tag_unref(rule->tag);
sys/net/pf/pf_ioctl.c
442
struct pf_tagname *tag, *p = NULL;
sys/net/pf/pf_ioctl.c
445
TAILQ_FOREACH(tag, head, entries)
sys/net/pf/pf_ioctl.c
446
if (strcmp(tagname, tag->name) == 0) {
sys/net/pf/pf_ioctl.c
447
tag->ref++;
sys/net/pf/pf_ioctl.c
448
return (tag->tag);
sys/net/pf/pf_ioctl.c
460
p->tag == new_tagid; p = TAILQ_NEXT(p, entries))
sys/net/pf/pf_ioctl.c
461
new_tagid = p->tag + 1;
sys/net/pf/pf_ioctl.c
467
tag = kmalloc(sizeof(*tag), M_TEMP, M_WAITOK);
sys/net/pf/pf_ioctl.c
468
strlcpy(tag->name, tagname, sizeof(tag->name));
sys/net/pf/pf_ioctl.c
469
tag->tag = new_tagid;
sys/net/pf/pf_ioctl.c
470
tag->ref++;
sys/net/pf/pf_ioctl.c
473
TAILQ_INSERT_BEFORE(p, tag, entries);
sys/net/pf/pf_ioctl.c
475
TAILQ_INSERT_TAIL(head, tag, entries);
sys/net/pf/pf_ioctl.c
477
return (tag->tag);
sys/net/pf/pf_ioctl.c
483
struct pf_tagname *tag;
sys/net/pf/pf_ioctl.c
485
TAILQ_FOREACH(tag, head, entries)
sys/net/pf/pf_ioctl.c
486
if (tag->tag == tagid) {
sys/net/pf/pf_ioctl.c
487
strlcpy(p, tag->name, PF_TAG_NAME_SIZE);
sys/net/pf/pf_ioctl.c
493
tag_unref(struct pf_tags *head, u_int16_t tag)
sys/net/pf/pf_ioctl.c
497
if (tag == 0)
sys/net/pf/pf_ioctl.c
502
if (tag == p->tag) {
sys/net/pf/pf_ioctl.c
525
pf_tag_ref(u_int16_t tag)
sys/net/pf/pf_ioctl.c
530
if (t->tag == tag)
sys/net/pf/pf_ioctl.c
537
pf_tag_unref(u_int16_t tag)
sys/net/pf/pf_ioctl.c
539
tag_unref(&pf_tags, tag);
sys/net/pf/pf_norm.c
874
int tag = -1;
sys/net/pf/pf_norm.c
896
else if (r->match_tag && !pf_match_tag(m, r, &tag))
sys/net/pf/pfvar.h
1474
u_int16_t tag;
sys/net/pf/pfvar.h
629
u_int16_t tag;
sys/net/pf/pfvar.h
840
u_int16_t tag;
sys/net/vlan/if_vlan_var.h
44
#define EVL_VLANOFTAG(tag) ((tag) & 4095)
sys/net/vlan/if_vlan_var.h
45
#define EVL_PRIOFTAG(tag) (((tag) >> 13) & 7)
sys/netgraph/pppoe/ng_pppoe.c
1040
if ((tag = get_tag(ph, PTT_AC_COOKIE)))
sys/netgraph/pppoe/ng_pppoe.c
1041
insert_tag(sp, tag); /* return cookie */
sys/netgraph/pppoe/ng_pppoe.c
1042
if ((tag = get_tag(ph, PTT_AC_NAME))) {
sys/netgraph/pppoe/ng_pppoe.c
1043
insert_tag(sp, tag); /* return it */
sys/netgraph/pppoe/ng_pppoe.c
1044
send_acname(sp, tag);
sys/netgraph/pppoe/ng_pppoe.c
1104
if ((tag = get_tag(ph, PTT_SRV_NAME)))
sys/netgraph/pppoe/ng_pppoe.c
1105
insert_tag(sp, tag);/* return service */
sys/netgraph/pppoe/ng_pppoe.c
1106
if ((tag = get_tag(ph, PTT_HOST_UNIQ)))
sys/netgraph/pppoe/ng_pppoe.c
1107
insert_tag(sp, tag); /* return it */
sys/netgraph/pppoe/ng_pppoe.c
1340
if ((tag = get_tag(ph, PTT_SRV_NAME)))
sys/netgraph/pppoe/ng_pppoe.c
1341
insert_tag(sp, tag); /* return service */
sys/netgraph/pppoe/ng_pppoe.c
1349
if (((tag == NULL) || (tag->tag_len == 0))
sys/netgraph/pppoe/ng_pppoe.c
1353
if ((tag = get_tag(ph, PTT_HOST_UNIQ)))
sys/netgraph/pppoe/ng_pppoe.c
1354
insert_tag(sp, tag); /* returned hostunique */
sys/netgraph/pppoe/ng_pppoe.c
1447
struct pppoe_tag *tag;
sys/netgraph/pppoe/ng_pppoe.c
1474
tag = wh->ph.tag;
sys/netgraph/pppoe/ng_pppoe.c
1475
tag->tag_type = PTT_GEN_ERR;
sys/netgraph/pppoe/ng_pppoe.c
1476
tag->tag_len = htons((u_int16_t)msglen);
sys/netgraph/pppoe/ng_pppoe.c
1477
strncpy(tag->tag_data, SIGNOFF, msglen);
sys/netgraph/pppoe/ng_pppoe.c
1478
m->m_pkthdr.len = (m->m_len += sizeof(*tag) +
sys/netgraph/pppoe/ng_pppoe.c
1480
wh->ph.length = htons(sizeof(*tag) + msglen);
sys/netgraph/pppoe/ng_pppoe.c
1626
const struct pppoe_tag *pt = &ph->tag[0];
sys/netgraph/pppoe/ng_pppoe.c
274
return (const struct pppoe_tag*)(((const char*)&ph->tag[0])
sys/netgraph/pppoe/ng_pppoe.c
288
const struct pppoe_tag *pt = &ph->tag[0];
sys/netgraph/pppoe/ng_pppoe.c
356
const struct pppoe_tag **tag;
sys/netgraph/pppoe/ng_pppoe.c
366
dp = (char *)wh->ph.tag;
sys/netgraph/pppoe/ng_pppoe.c
367
for (count = 0, tag = sp->neg->tags;
sys/netgraph/pppoe/ng_pppoe.c
369
tag++, count++) {
sys/netgraph/pppoe/ng_pppoe.c
370
tlen = ntohs((*tag)->tag_len) + sizeof(**tag);
sys/netgraph/pppoe/ng_pppoe.c
376
bcopy(*tag, dp, tlen);
sys/netgraph/pppoe/ng_pppoe.c
478
pppoe_finduniq(node_p node, const struct pppoe_tag *tag)
sys/netgraph/pppoe/ng_pppoe.c
485
bcopy(tag->tag_data, uniq.bytes, sizeof(void *));
sys/netgraph/pppoe/ng_pppoe.c
838
send_acname(sessp sp, const struct pppoe_tag *tag)
sys/netgraph/pppoe/ng_pppoe.c
850
tlen = min(NG_HOOKSIZ - 1, ntohs(tag->tag_len));
sys/netgraph/pppoe/ng_pppoe.c
851
strncpy(sts->hook, tag->tag_data, tlen);
sys/netgraph/pppoe/ng_pppoe.c
891
const struct pppoe_tag *utag = NULL, *tag = NULL;
sys/netgraph/pppoe/ng_pppoe.c
980
tag = get_tag(ph, PTT_SRV_NAME);
sys/netgraph/pppoe/ng_pppoe.c
981
if (tag == NULL) {
sys/netgraph/pppoe/ng_pppoe.c
986
tag->tag_data, ntohs(tag->tag_len),
sys/netgraph/pppoe/ng_pppoe.h
189
struct pppoe_tag tag[0];
sys/netgraph7/ksocket/ng_ksocket.c
1123
m_tag_prepend(sio.sb_mb, &stag->tag);
sys/netgraph7/ksocket/ng_ksocket.h
103
struct m_tag tag;
sys/netgraph7/lmi/ng_lmi.c
337
m_tag_prepend(m, &ptag->tag);
sys/netgraph7/netgraph.h
1169
struct m_tag tag;
sys/netgraph7/ng_tag.c
253
NETGRAPH_INIT(tag, &typestruct);
sys/netgraph7/ng_tag.c
505
struct m_tag *tag = NULL;
sys/netgraph7/ng_tag.c
535
tag = m_tag_locate(m, cookie, type, NULL);
sys/netgraph7/ng_tag.c
536
while (tag != NULL) {
sys/netgraph7/ng_tag.c
537
if (memcmp((void *)(tag + 1),
sys/netgraph7/ng_tag.c
542
tag = m_tag_locate(m, cookie, type, tag);
sys/netgraph7/ng_tag.c
553
m_tag_delete(m, tag);
sys/netgraph7/ng_tag.c
575
tag = m_tag_alloc(cookie, type, tag_len, M_NOWAIT);
sys/netgraph7/ng_tag.c
577
if (tag != NULL) {
sys/netgraph7/ng_tag.c
580
memcpy((void *)(tag + 1),
sys/netgraph7/ng_tag.c
583
m_tag_prepend(m, tag);
sys/netgraph7/pppoe/ng_pppoe.c
1087
send_acname(sessp sp, const struct pppoe_tag *tag)
sys/netgraph7/pppoe/ng_pppoe.c
1101
tlen = min(NG_HOOKSIZ - 1, ntohs(tag->tag_len));
sys/netgraph7/pppoe/ng_pppoe.c
1102
strncpy(sts->hook, tag->tag_data, tlen);
sys/netgraph7/pppoe/ng_pppoe.c
1181
const struct pppoe_tag *tag;
sys/netgraph7/pppoe/ng_pppoe.c
1231
if ((tag = get_tag(ph, PTT_SRV_NAME)))
sys/netgraph7/pppoe/ng_pppoe.c
1232
insert_tag(sp, tag); /* return service */
sys/netgraph7/pppoe/ng_pppoe.c
1240
if (((tag == NULL) || (tag->tag_len == 0)) &&
sys/netgraph7/pppoe/ng_pppoe.c
1244
if ((tag = get_tag(ph, PTT_HOST_UNIQ)))
sys/netgraph7/pppoe/ng_pppoe.c
1245
insert_tag(sp, tag); /* returned hostunique */
sys/netgraph7/pppoe/ng_pppoe.c
1284
const struct pppoe_tag *utag = NULL, *tag = NULL;
sys/netgraph7/pppoe/ng_pppoe.c
1373
tag = get_tag(ph, PTT_SRV_NAME);
sys/netgraph7/pppoe/ng_pppoe.c
1374
if (tag == NULL) {
sys/netgraph7/pppoe/ng_pppoe.c
1386
sendhook = pppoe_match_svc(node, tag);
sys/netgraph7/pppoe/ng_pppoe.c
1390
ntohs(tag->tag_len) == 0)
sys/netgraph7/pppoe/ng_pppoe.c
1434
tag = get_tag(ph, PTT_AC_NAME);
sys/netgraph7/pppoe/ng_pppoe.c
1435
if (!tag) {
sys/netgraph7/pppoe/ng_pppoe.c
1439
if (neg->ac_name_len != htons(tag->tag_len) ||
sys/netgraph7/pppoe/ng_pppoe.c
1440
strncmp(neg->ac_name.data, tag->tag_data,
sys/netgraph7/pppoe/ng_pppoe.c
1461
if ((tag = get_tag(ph, PTT_AC_COOKIE)))
sys/netgraph7/pppoe/ng_pppoe.c
1462
insert_tag(sp, tag); /* return cookie */
sys/netgraph7/pppoe/ng_pppoe.c
1463
if ((tag = get_tag(ph, PTT_AC_NAME))) {
sys/netgraph7/pppoe/ng_pppoe.c
1464
insert_tag(sp, tag); /* return it */
sys/netgraph7/pppoe/ng_pppoe.c
1465
send_acname(sp, tag);
sys/netgraph7/pppoe/ng_pppoe.c
1523
if ((tag = get_tag(ph, PTT_SRV_NAME)))
sys/netgraph7/pppoe/ng_pppoe.c
1524
insert_tag(sp, tag);/* return service */
sys/netgraph7/pppoe/ng_pppoe.c
1525
if ((tag = get_tag(ph, PTT_HOST_UNIQ)))
sys/netgraph7/pppoe/ng_pppoe.c
1526
insert_tag(sp, tag); /* return it */
sys/netgraph7/pppoe/ng_pppoe.c
1745
struct pppoe_tag *tag;
sys/netgraph7/pppoe/ng_pppoe.c
1769
tag = wh->ph.tag;
sys/netgraph7/pppoe/ng_pppoe.c
1770
tag->tag_type = PTT_GEN_ERR;
sys/netgraph7/pppoe/ng_pppoe.c
1771
tag->tag_len = htons((u_int16_t)msglen);
sys/netgraph7/pppoe/ng_pppoe.c
1772
strncpy(tag->tag_data, SIGNOFF, msglen);
sys/netgraph7/pppoe/ng_pppoe.c
1773
m->m_pkthdr.len = (m->m_len += sizeof(*tag) +
sys/netgraph7/pppoe/ng_pppoe.c
1775
wh->ph.length = htons(sizeof(*tag) + msglen);
sys/netgraph7/pppoe/ng_pppoe.c
1861
const struct pppoe_tag *pt = &ph->tag[0];
sys/netgraph7/pppoe/ng_pppoe.c
292
return (const struct pppoe_tag*)(((const char*)&ph->tag[0])
sys/netgraph7/pppoe/ng_pppoe.c
305
const struct pppoe_tag *pt = &ph->tag[0];
sys/netgraph7/pppoe/ng_pppoe.c
373
const struct pppoe_tag **tag;
sys/netgraph7/pppoe/ng_pppoe.c
383
dp = (char *)wh->ph.tag;
sys/netgraph7/pppoe/ng_pppoe.c
384
for (count = 0, tag = sp->neg->tags;
sys/netgraph7/pppoe/ng_pppoe.c
386
tag++, count++) {
sys/netgraph7/pppoe/ng_pppoe.c
387
tlen = ntohs((*tag)->tag_len) + sizeof(**tag);
sys/netgraph7/pppoe/ng_pppoe.c
393
bcopy(*tag, dp, tlen);
sys/netgraph7/pppoe/ng_pppoe.c
416
pppoe_match_svc(node_p node, const struct pppoe_tag *tag)
sys/netgraph7/pppoe/ng_pppoe.c
433
if (neg->service_len != ntohs(tag->tag_len))
sys/netgraph7/pppoe/ng_pppoe.c
436
if (strncmp(tag->tag_data, neg->service.data,
sys/netgraph7/pppoe/ng_pppoe.c
437
ntohs(tag->tag_len)) == 0)
sys/netgraph7/pppoe/ng_pppoe.c
441
sp?sp->hook:NULL, tag->tag_data);
sys/netgraph7/pppoe/ng_pppoe.c
580
pppoe_finduniq(node_p node, const struct pppoe_tag *tag)
sys/netgraph7/pppoe/ng_pppoe.c
585
bcopy(tag->tag_data, uniq.bytes, sizeof(void *));
sys/netgraph7/pppoe/ng_pppoe.h
214
struct pppoe_tag tag[];
sys/netinet/icmp6.h
683
#define icmp6_ifstat_inc(ifp, tag) \
sys/netinet/icmp6.h
686
((struct in6_ifextra *)((ifp)->if_afdata[AF_INET6]))->icmp6_ifstat->tag++; \
sys/netinet/ip_encap.c
482
struct m_tag *tag;
sys/netinet/ip_encap.c
484
tag = m_tag_get(PACKET_TAG_ENCAP, sizeof(void *), M_NOWAIT);
sys/netinet/ip_encap.c
485
if (tag != NULL) {
sys/netinet/ip_encap.c
486
*(void **)m_tag_data(tag) = ep->arg;
sys/netinet/ip_encap.c
487
m_tag_prepend(m, tag);
sys/netinet/ip_encap.c
495
struct m_tag *tag;
sys/netinet/ip_encap.c
497
tag = m_tag_find(m, PACKET_TAG_ENCAP, NULL);
sys/netinet/ip_encap.c
498
if (tag != NULL) {
sys/netinet/ip_encap.c
499
p = *(void **)m_tag_data(tag);
sys/netinet/ip_encap.c
500
m_tag_delete(m, tag);
sys/netinet6/in6_var.h
483
#define in6_ifstat_inc(ifp, tag) \
sys/netinet6/in6_var.h
487
xtra->in6_ifstat->tag++; \
sys/netproto/802_11/ieee80211_input.h
56
void ieee80211_ssid_mismatch(struct ieee80211vap *, const char *tag,
sys/netproto/802_11/wlan/ieee80211_ddb.c
695
_db_show_node_table(const char *tag, const struct ieee80211_node_table *nt)
sys/netproto/802_11/wlan/ieee80211_ddb.c
699
db_printf("%s%s@%p:\n", tag, nt->nt_name, nt);
sys/netproto/802_11/wlan/ieee80211_ddb.c
700
db_printf("%s nodelock %p", tag, &nt->nt_nodelock);
sys/netproto/802_11/wlan/ieee80211_ddb.c
705
tag, nt->nt_keyixmax, nt->nt_keyixmap);
sys/netproto/802_11/wlan/ieee80211_ddb.c
709
db_printf("%s [%3u] %p %s\n", tag, i, ni,
sys/netproto/802_11/wlan/ieee80211_ddb.c
715
_db_show_channel(const char *tag, const struct ieee80211_channel *c)
sys/netproto/802_11/wlan/ieee80211_ddb.c
717
db_printf("%s ", tag);
sys/netproto/802_11/wlan/ieee80211_ddb.c
731
_db_show_ssid(const char *tag, int ix, int len, const uint8_t *ssid)
sys/netproto/802_11/wlan/ieee80211_ddb.c
736
db_printf(tag, ix);
sys/netproto/802_11/wlan/ieee80211_ddb.c
75
static void _db_show_node_table(const char *tag,
sys/netproto/802_11/wlan/ieee80211_ddb.c
758
_db_show_appie(const char *tag, const struct ieee80211_appie *ie)
sys/netproto/802_11/wlan/ieee80211_ddb.c
765
db_printf("%s [0x", tag);
sys/netproto/802_11/wlan/ieee80211_ddb.c
77
static void _db_show_channel(const char *tag, const struct ieee80211_channel *);
sys/netproto/802_11/wlan/ieee80211_ddb.c
772
_db_show_key(const char *tag, int ix, const struct ieee80211_key *wk)
sys/netproto/802_11/wlan/ieee80211_ddb.c
778
db_printf(tag, ix);
sys/netproto/802_11/wlan/ieee80211_ddb.c
78
static void _db_show_ssid(const char *tag, int ix, int len, const uint8_t *);
sys/netproto/802_11/wlan/ieee80211_ddb.c
79
static void _db_show_appie(const char *tag, const struct ieee80211_appie *);
sys/netproto/802_11/wlan/ieee80211_ddb.c
80
static void _db_show_key(const char *tag, int ix, const struct ieee80211_key *);
sys/netproto/802_11/wlan/ieee80211_ddb.c
81
static void _db_show_roamparams(const char *tag, const void *arg,
sys/netproto/802_11/wlan/ieee80211_ddb.c
829
printrate(const char *tag, int v)
sys/netproto/802_11/wlan/ieee80211_ddb.c
83
static void _db_show_txparams(const char *tag, const void *arg,
sys/netproto/802_11/wlan/ieee80211_ddb.c
832
db_printf(" %s <none>", tag);
sys/netproto/802_11/wlan/ieee80211_ddb.c
834
db_printf(" %s 5.5", tag);
sys/netproto/802_11/wlan/ieee80211_ddb.c
836
db_printf(" %s MCS%d", tag, v &~ IEEE80211_RATE_MCS);
sys/netproto/802_11/wlan/ieee80211_ddb.c
838
db_printf(" %s %d", tag, v/2);
sys/netproto/802_11/wlan/ieee80211_ddb.c
842
_db_show_roamparams(const char *tag, const void *arg,
sys/netproto/802_11/wlan/ieee80211_ddb.c
846
db_printf(tag, arg);
sys/netproto/802_11/wlan/ieee80211_ddb.c
85
static void _db_show_ageq(const char *tag, const struct ieee80211_ageq *q);
sys/netproto/802_11/wlan/ieee80211_ddb.c
855
_db_show_txparams(const char *tag, const void *arg,
sys/netproto/802_11/wlan/ieee80211_ddb.c
859
db_printf(tag, arg);
sys/netproto/802_11/wlan/ieee80211_ddb.c
867
_db_show_ageq(const char *tag, const struct ieee80211_ageq *q)
sys/netproto/802_11/wlan/ieee80211_ddb.c
872
tag, &q->aq_lock, q->aq_len, q->aq_maxlen, q->aq_drops,
sys/netproto/802_11/wlan/ieee80211_ddb.c
875
db_printf("%s %p (len %d, %pb%i)\n", tag, m, m->m_len,
sys/netproto/802_11/wlan/ieee80211_hostap.c
1602
int reassoc, int resp, const char *tag, int rate)
sys/netproto/802_11/wlan/ieee80211_hostap.c
1606
reassoc ? "reassoc" : "assoc", tag, rate & IEEE80211_RATE_VAL);
sys/netproto/802_11/wlan/ieee80211_hostap.c
1613
int reassoc, int resp, const char *tag, int capinfo)
sys/netproto/802_11/wlan/ieee80211_hostap.c
1619
reassoc ? "reassoc" : "assoc", tag, capinfo);
sys/netproto/802_11/wlan/ieee80211_input.c
876
ieee80211_ssid_mismatch(struct ieee80211vap *vap, const char *tag,
sys/netproto/802_11/wlan/ieee80211_input.c
880
ether_sprintf(mac), tag);
sys/platform/pc64/x86_64/busdma_machdep.c
197
bus_dma_tag_lock(bus_dma_tag_t tag, bus_dma_segment_t *cache)
sys/platform/pc64/x86_64/busdma_machdep.c
199
if (tag->flags & BUS_DMA_PROTECTED)
sys/platform/pc64/x86_64/busdma_machdep.c
200
return(tag->segments);
sys/platform/pc64/x86_64/busdma_machdep.c
202
if (tag->nsegments <= BUS_DMA_CACHE_SEGMENTS)
sys/platform/pc64/x86_64/busdma_machdep.c
204
spin_lock(&tag->spin);
sys/platform/pc64/x86_64/busdma_machdep.c
205
return(tag->segments);
sys/platform/pc64/x86_64/busdma_machdep.c
210
bus_dma_tag_unlock(bus_dma_tag_t tag)
sys/platform/pc64/x86_64/busdma_machdep.c
212
if (tag->flags & BUS_DMA_PROTECTED)
sys/platform/pc64/x86_64/busdma_machdep.c
215
if (tag->nsegments > BUS_DMA_CACHE_SEGMENTS)
sys/platform/pc64/x86_64/busdma_machdep.c
216
spin_unlock(&tag->spin);
sys/platform/pc64/x86_64/busdma_machdep.c
349
bus_dma_tag_getmaxsize(bus_dma_tag_t tag)
sys/platform/pc64/x86_64/busdma_machdep.c
351
return(tag->maxsize);
sys/sys/bus_dma.h
180
bus_size_t bus_dma_tag_getmaxsize(bus_dma_tag_t tag);
sys/sys/cpputil.h
107
#define __GENSTRUCT8(tag, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) struct tag { \
sys/sys/cpputil.h
117
#define __GENSTRUCT9(tag, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) struct tag { \
sys/sys/cpputil.h
128
#define __GENSTRUCT10(tag, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) struct tag { \
sys/sys/cpputil.h
140
#define __GENSTRUCT11(tag, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) struct tag { \
sys/sys/cpputil.h
153
#define __GENSTRUCT12(tag, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12) struct tag { \
sys/sys/cpputil.h
167
#define __GENSTRUCT13(tag, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13) struct tag { \
sys/sys/cpputil.h
182
#define __GENSTRUCT14(tag, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14) struct tag { \
sys/sys/cpputil.h
198
#define __GENSTRUCT15(tag, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) struct tag { \
sys/sys/cpputil.h
215
#define __GENSTRUCT16(tag, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) struct tag { \
sys/sys/cpputil.h
233
#define __GENSTRUCT17(tag, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17) struct tag { \
sys/sys/cpputil.h
252
#define __GENSTRUCT18(tag, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18)struct tag { \
sys/sys/cpputil.h
272
#define __GENSTRUCT19(tag, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19) struct tag { \
sys/sys/cpputil.h
61
#define __GENSTRUCT(tag, args...)\
sys/sys/cpputil.h
62
__CONCAT(__GENSTRUCT,VA_NARGS(args))(tag, args)
sys/sys/cpputil.h
65
#define __GENSTRUCT1(tag, arg1) struct tag { \
sys/sys/cpputil.h
68
#define __GENSTRUCT2(tag, arg1, arg2) struct tag { \
sys/sys/cpputil.h
72
#define __GENSTRUCT3(tag, arg1, arg2, arg3) struct tag { \
sys/sys/cpputil.h
77
#define __GENSTRUCT4(tag, arg1, arg2, arg3, arg4) struct tag { \
sys/sys/cpputil.h
83
#define __GENSTRUCT5(tag, arg1, arg2, arg3, arg4, arg5) struct tag { \
sys/sys/cpputil.h
90
#define __GENSTRUCT6(tag, arg1, arg2, arg3, arg4, arg5, arg6) struct tag { \
sys/sys/cpputil.h
98
#define __GENSTRUCT7(tag, arg1, arg2, arg3, arg4, arg5, arg6, arg7) struct tag { \
sys/sys/eventhandler.h
131
#define EVENTHANDLER_DEREGISTER(name, tag) \
sys/sys/eventhandler.h
136
eventhandler_deregister(_el, tag); \
sys/sys/eventhandler.h
95
#define EVENTHANDLER_FAST_DEREGISTER(name, tag) \
sys/sys/eventhandler.h
96
eventhandler_deregister(Xeventhandler_list ## name, tag)
sys/sys/mbuf.h
116
uint16_t tag; /* tag id */
sys/sys/mbuf.h
716
m_tag_data(struct m_tag *tag)
sys/sys/mbuf.h
718
return ((void *)(tag + 1));
sys/sys/vnode.h
436
int getnewvnode (enum vtagtype tag, struct mount *mp,
sys/sys/vnode.h
438
int getspecialvnode (enum vtagtype tag, struct mount *mp,
sys/vfs/nfs/bootp_subr.c
1265
unsigned char *start, int len, int tag)
sys/vfs/nfs/bootp_subr.c
1288
if (code == tag) {
sys/vfs/nfs/bootp_subr.c
1309
int len, int tag)
sys/vfs/nfs/bootp_subr.c
1321
(unsigned char *) bp + len - &bp->vend[4], tag);
sys/vfs/nfs/bootp_subr.c
1327
tag);
sys/vfs/nfs/bootp_subr.c
1332
tag);
sys/vfs/nfs/bootp_subr.c
1386
p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
sys/vfs/nfs/bootp_subr.c
1389
if (gctx->tag.taglen != 4)
sys/vfs/nfs/bootp_subr.c
1391
gctx->tag.taglen);
sys/vfs/nfs/bootp_subr.c
1399
p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
sys/vfs/nfs/bootp_subr.c
1403
if (gctx->tag.taglen % 4)
sys/vfs/nfs/bootp_subr.c
1404
panic("bootpc: Router Len is %d", gctx->tag.taglen);
sys/vfs/nfs/bootp_subr.c
1405
if (gctx->tag.taglen > 0) {
sys/vfs/nfs/bootp_subr.c
1415
p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
sys/vfs/nfs/bootp_subr.c
1427
p = bootpc_tag(&gctx->tag, &ifctx->reply,
sys/vfs/nfs/bootp_subr.c
1438
p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
sys/vfs/nfs/bootp_subr.c
1449
p = bootpc_tag(&gctx->tag, &ifctx->reply,
sys/vfs/nfs/bootp_subr.c
1458
p = bootpc_tag(&gctx->tag, &ifctx->reply,
sys/vfs/nfs/bootp_subr.c
1463
if (gctx->tag.taglen != 4)
sys/vfs/nfs/bootp_subr.c
1467
gctx->tag.taglen);
sys/vfs/nfs/bootp_subr.c
1477
p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
sys/vfs/nfs/bootp_subr.c
1480
if (gctx->tag.taglen >= MAXHOSTNAMELEN)
sys/vfs/nfs/bootp_subr.c
1492
p = bootpc_tag(&gctx->tag, &ifctx->reply, ifctx->replylen,
sys/vfs/nfs/bootp_subr.c
169
struct bootpc_tagcontext tag;
sys/vfs/nfs/bootp_subr.c
229
struct bootp_packet *bp, int len, int tag);
sys/vfs/nfs/bootp_subr.c
231
unsigned char *start, int len, int tag);
sys/vfs/udf/ecma167-udf.h
147
struct desc_tag tag;
sys/vfs/udf/ecma167-udf.h
154
struct desc_tag tag;
sys/vfs/udf/ecma167-udf.h
161
struct desc_tag tag;
sys/vfs/udf/ecma167-udf.h
187
struct desc_tag tag;
sys/vfs/udf/ecma167-udf.h
264
struct desc_tag tag;
sys/vfs/udf/ecma167-udf.h
274
struct desc_tag tag;
sys/vfs/udf/ecma167-udf.h
290
struct desc_tag tag;
sys/vfs/udf/ecma167-udf.h
313
struct desc_tag tag;
sys/vfs/udf/ecma167-udf.h
330
struct desc_tag tag;
sys/vfs/udf/ecma167-udf.h
358
struct desc_tag tag;
sys/vfs/udf/udf_vfsops.c
206
udf_checktag(struct desc_tag *tag, uint16_t id)
sys/vfs/udf/udf_vfsops.c
211
itag = (uint8_t *)tag;
sys/vfs/udf/udf_vfsops.c
213
if (tag->id != id)
sys/vfs/udf/udf_vfsops.c
220
if (cksum == tag->cksum)
sys/vfs/udf/udf_vfsops.c
305
if (!udf_checktag(&lvd->tag, TAGID_LOGVOL)) {
sys/vfs/udf/udf_vfsops.c
316
if (!udf_checktag(&pd->tag, TAGID_PARTITION)) {
sys/vfs/udf/udf_vfsops.c
352
if (!udf_checktag(&fsd->tag, TAGID_FSD)) {
sys/vfs/udf/udf_vfsops.c
380
if ((error = udf_checktag(&root_fentry->tag, TAGID_FENTRY))) {
sys/vfs/udf/udf_vfsops.c
521
if (udf_checktag(&fe->tag, TAGID_FENTRY)) {
sys/vfs/udf/udf_vfsops.c
684
if (udf_checktag(&udfmp->s_table->tag, 0)) {
sys/vfs/udf/udf_vnops.c
1071
struct icb_tag *tag;
sys/vfs/udf/udf_vnops.c
1079
tag = &fentry->icbtag;
sys/vfs/udf/udf_vnops.c
1081
switch (tag->strat_type) {
sys/vfs/udf/udf_vnops.c
1090
kprintf("Unknown strategy type %d\n", tag->strat_type);
sys/vfs/udf/udf_vnops.c
1094
switch (tag->flags & 0x7) {
sys/vfs/udf/udf_vnops.c
1156
tag->flags & 0x7);
sys/vfs/udf/udf_vnops.c
681
if (udf_checktag(&fid->tag, TAGID_FID)) {
sys/vfs/udf/udf_vnops.c
912
if (udf_checktag(&fid->tag, TAGID_FID)) {
test/stress/fsstress/fsstress.c
741
i = sprintf(buf, "%c%x", flp->tag, fep->id);
test/stress/fsstress/fsstress.c
782
len = sprintf(buf, "%c%x", flp->tag, id = nameseq++);
test/stress/fsstress/fsstress.c
99
int tag;
tools/tools/ath/athstats/main.c
53
const char *tag;
tools/tools/ath/athstats/main.c
68
getfmt(const char *tag)
tools/tools/ath/athstats/main.c
73
if (strcasecmp(tags[i].tag, tag) == 0)
tools/tools/ath/athstats/main.c
75
return tag;
tools/tools/net80211/wlanstats/main.c
52
const char *tag;
tools/tools/net80211/wlanstats/main.c
65
getfmt(const char *tag)
tools/tools/net80211/wlanstats/main.c
70
if (strcasecmp(tags[i].tag, tag) == 0)
tools/tools/net80211/wlanstats/main.c
72
return tag;
usr.bin/dsynth/pkglist.c
798
char *tag;
usr.bin/dsynth/pkglist.c
850
tag = strchr(dep, ':');
usr.bin/dsynth/pkglist.c
851
if (tag)
usr.bin/dsynth/pkglist.c
852
*tag++ = 0;
usr.bin/dsynth/pkglist.c
920
if (tag)
usr.bin/dsynth/pkglist.c
921
flavor = strrchr(tag, '@');
usr.bin/logger/logger.c
114
tag = optarg;
usr.bin/logger/logger.c
124
openlog(tag ? tag : getlogin(), logflags, 0);
usr.bin/logger/logger.c
77
char *tag, *host, buf[1024];
usr.bin/logger/logger.c
79
tag = NULL;
usr.bin/quota/quota.c
377
heading(int type, u_long id, const char *name, const char *tag)
usr.bin/quota/quota.c
381
name, *qfextension[type], id, tag);
usr.bin/quota/quota.c
382
if (!qflag && tag[0] == '\0') {
usr.bin/top/color.c
148
ce->tag = (char *)malloc(len + 1);
usr.bin/top/color.c
149
strncpy(ce->tag, p, len);
usr.bin/top/color.c
150
ce->tag[len] = '\0';
usr.bin/top/color.c
184
color_tag(char *tag)
usr.bin/top/color.c
191
if (tag == NULL || *tag == '\0')
usr.bin/top/color.c
196
dprintf("color_tag(%s)\n", tag);
usr.bin/top/color.c
221
if (strcmp(entryp->tag, tag) == 0)
usr.bin/top/color.c
231
bytag_names[tagcnt] = strdup(tag);
usr.bin/top/color.c
323
fprintf(f, " %s (%d-", ep->tag, ep->min);
usr.bin/top/color.c
349
ep->tag, ep->min, ep->max, ep->color, color_ansi[(int)ep->color],
usr.bin/top/color.c
67
char *tag;
usr.bin/top/color.h
45
int color_tag(char *tag);
usr.bin/top/utils.c
615
register char tag = 'K';
usr.bin/top/utils.c
623
tag = 'M';
usr.bin/top/utils.c
627
tag = 'G';
usr.bin/top/utils.c
631
snprintf(ret, sizeof(retarray[index])-1, "%ld%c", amt, tag);
usr.sbin/btconfig/btconfig.c
249
tag(NULL);
usr.sbin/btconfig/btconfig.c
612
tag(btr.btr_name);
usr.sbin/btconfig/btconfig.c
654
if (val & HCI_INQUIRY_SCAN_ENABLE) tag("iscan");
usr.sbin/btconfig/btconfig.c
655
else if (level > 0) tag("-iscan");
usr.sbin/btconfig/btconfig.c
657
if (val & HCI_PAGE_SCAN_ENABLE) tag("pscan");
usr.sbin/btconfig/btconfig.c
658
else if (level > 0) tag("-pscan");
usr.sbin/btconfig/btconfig.c
661
if (val) tag("auth");
usr.sbin/btconfig/btconfig.c
662
else if (level > 0) tag("-auth");
usr.sbin/btconfig/btconfig.c
665
if (val) tag("encrypt");
usr.sbin/btconfig/btconfig.c
666
else if (level > 0) tag("-encrypt");
usr.sbin/btconfig/btconfig.c
669
if (val & HCI_LINK_POLICY_ENABLE_ROLE_SWITCH) tag("switch");
usr.sbin/btconfig/btconfig.c
670
else if (level > 0) tag("-switch");
usr.sbin/btconfig/btconfig.c
671
if (val & HCI_LINK_POLICY_ENABLE_HOLD_MODE) tag("hold");
usr.sbin/btconfig/btconfig.c
672
else if (level > 0) tag("-hold");
usr.sbin/btconfig/btconfig.c
673
if (val & HCI_LINK_POLICY_ENABLE_SNIFF_MODE) tag("sniff");
usr.sbin/btconfig/btconfig.c
674
else if (level > 0) tag("-sniff");
usr.sbin/btconfig/btconfig.c
675
if (val & HCI_LINK_POLICY_ENABLE_PARK_MODE) tag("park");
usr.sbin/btconfig/btconfig.c
676
else if (level > 0) tag("-park");
usr.sbin/btconfig/btconfig.c
679
if (val) tag("rssi");
usr.sbin/btconfig/btconfig.c
680
else if (level > 0) tag("-rssi");
usr.sbin/btconfig/btconfig.c
682
tag(NULL);
usr.sbin/btconfig/btconfig.c
689
if (ptype & HCI_PKT_DM1) tag("DM1");
usr.sbin/btconfig/btconfig.c
690
if (ptype & HCI_PKT_DH1) tag("DH1");
usr.sbin/btconfig/btconfig.c
691
if (ptype & HCI_PKT_DM3) tag("DM3");
usr.sbin/btconfig/btconfig.c
692
if (ptype & HCI_PKT_DH3) tag("DH3");
usr.sbin/btconfig/btconfig.c
693
if (ptype & HCI_PKT_DM5) tag("DM5");
usr.sbin/btconfig/btconfig.c
694
if (ptype & HCI_PKT_DH5) tag("DH5");
usr.sbin/btconfig/btconfig.c
695
if ((ptype & HCI_PKT_2MBPS_DH1) == 0) tag("2-DH1");
usr.sbin/btconfig/btconfig.c
696
if ((ptype & HCI_PKT_3MBPS_DH1) == 0) tag("3-DH1");
usr.sbin/btconfig/btconfig.c
697
if ((ptype & HCI_PKT_2MBPS_DH3) == 0) tag("2-DH3");
usr.sbin/btconfig/btconfig.c
698
if ((ptype & HCI_PKT_3MBPS_DH3) == 0) tag("3-DH3");
usr.sbin/btconfig/btconfig.c
699
if ((ptype & HCI_PKT_2MBPS_DH5) == 0) tag("2-DH5");
usr.sbin/btconfig/btconfig.c
700
if ((ptype & HCI_PKT_3MBPS_DH5) == 0) tag("3-DH5");
usr.sbin/btconfig/btconfig.c
701
tag(NULL);
usr.sbin/btconfig/btconfig.c
71
static void tag(const char *);
usr.sbin/btconfig/btconfig.c
745
if (*f & HCI_LMP_3SLOT) tag("<3 slot>");
usr.sbin/btconfig/btconfig.c
746
if (*f & HCI_LMP_5SLOT) tag("<5 slot>");
usr.sbin/btconfig/btconfig.c
747
if (*f & HCI_LMP_ENCRYPTION) tag("<encryption>");
usr.sbin/btconfig/btconfig.c
748
if (*f & HCI_LMP_SLOT_OFFSET) tag("<slot offset>");
usr.sbin/btconfig/btconfig.c
749
if (*f & HCI_LMP_TIMIACCURACY) tag("<timing accuracy>");
usr.sbin/btconfig/btconfig.c
750
if (*f & HCI_LMP_ROLE_SWITCH) tag("<role switch>");
usr.sbin/btconfig/btconfig.c
751
if (*f & HCI_LMP_HOLD_MODE) tag("<hold mode>");
usr.sbin/btconfig/btconfig.c
752
if (*f & HCI_LMP_SNIFF_MODE) tag("<sniff mode>");
usr.sbin/btconfig/btconfig.c
756
if (*f & HCI_LMP_PARK_MODE) tag("<park mode>");
usr.sbin/btconfig/btconfig.c
757
if (*f & HCI_LMP_RSSI) tag("<RSSI>");
usr.sbin/btconfig/btconfig.c
758
if (*f & HCI_LMP_CHANNEL_QUALITY) tag("<channel quality>");
usr.sbin/btconfig/btconfig.c
759
if (*f & HCI_LMP_SCO_LINK) tag("<SCO link>");
usr.sbin/btconfig/btconfig.c
760
if (*f & HCI_LMP_HV2_PKT) tag("<HV2>");
usr.sbin/btconfig/btconfig.c
761
if (*f & HCI_LMP_HV3_PKT) tag("<HV3>");
usr.sbin/btconfig/btconfig.c
762
if (*f & HCI_LMP_ULAW_LOG) tag("<u-Law log>");
usr.sbin/btconfig/btconfig.c
763
if (*f & HCI_LMP_ALAW_LOG) tag("<A-Law log>");
usr.sbin/btconfig/btconfig.c
767
if (*f & HCI_LMP_CVSD) tag("<CVSD data>");
usr.sbin/btconfig/btconfig.c
768
if (*f & HCI_LMP_PAGISCHEME) tag("<paging parameter>");
usr.sbin/btconfig/btconfig.c
769
if (*f & HCI_LMP_POWER_CONTROL) tag("<power control>");
usr.sbin/btconfig/btconfig.c
770
if (*f & HCI_LMP_TRANSPARENT_SCO) tag("<transparent SCO>");
usr.sbin/btconfig/btconfig.c
771
if (*f & HCI_LMP_FLOW_CONTROL_LAG0) tag("<flow control lag 0>");
usr.sbin/btconfig/btconfig.c
772
if (*f & HCI_LMP_FLOW_CONTROL_LAG1) tag("<flow control lag 1>");
usr.sbin/btconfig/btconfig.c
773
if (*f & HCI_LMP_FLOW_CONTROL_LAG2) tag("<flow control lag 2>");
usr.sbin/btconfig/btconfig.c
774
if (*f & HCI_LMP_BC_ENCRYPTION) tag("<broadcast encryption>");
usr.sbin/btconfig/btconfig.c
778
if (*f & HCI_LMP_EDR_ACL_2MBPS) tag("<EDR ACL 2Mbps>");
usr.sbin/btconfig/btconfig.c
779
if (*f & HCI_LMP_EDR_ACL_3MBPS) tag("<EDR ACL 3Mbps>");
usr.sbin/btconfig/btconfig.c
780
if (*f & HCI_LMP_ENHANCED_ISCAN) tag("<enhanced inquiry scan>");
usr.sbin/btconfig/btconfig.c
781
if (*f & HCI_LMP_INTERLACED_ISCAN) tag("<interlaced inquiry scan>");
usr.sbin/btconfig/btconfig.c
782
if (*f & HCI_LMP_INTERLACED_PSCAN) tag("<interlaced page scan>");
usr.sbin/btconfig/btconfig.c
783
if (*f & HCI_LMP_RSSI_INQUIRY) tag("<RSSI with inquiry result>");
usr.sbin/btconfig/btconfig.c
784
if (*f & HCI_LMP_EV3_PKT) tag("<EV3 packets>");
usr.sbin/btconfig/btconfig.c
788
if (*f & HCI_LMP_EV4_PKT) tag("<EV4 packets>");
usr.sbin/btconfig/btconfig.c
789
if (*f & HCI_LMP_EV5_PKT) tag("<EV5 packets>");
usr.sbin/btconfig/btconfig.c
790
if (*f & HCI_LMP_AFH_CAPABLE_SLAVE) tag("<AFH capable slave>");
usr.sbin/btconfig/btconfig.c
791
if (*f & HCI_LMP_AFH_CLASS_SLAVE) tag("<AFH class slave>");
usr.sbin/btconfig/btconfig.c
792
if (*f & HCI_LMP_3SLOT_EDR_ACL) tag("<3 slot EDR ACL>");
usr.sbin/btconfig/btconfig.c
796
if (*f & HCI_LMP_5SLOT_EDR_ACL) tag("<5 slot EDR ACL>");
usr.sbin/btconfig/btconfig.c
797
if (*f & HCI_LMP_AFH_CAPABLE_MASTER)tag("<AFH capable master>");
usr.sbin/btconfig/btconfig.c
798
if (*f & HCI_LMP_AFH_CLASS_MASTER) tag("<AFH class master>");
usr.sbin/btconfig/btconfig.c
799
if (*f & HCI_LMP_EDR_eSCO_2MBPS) tag("<EDR eSCO 2Mbps>");
usr.sbin/btconfig/btconfig.c
800
if (*f & HCI_LMP_EDR_eSCO_3MBPS) tag("<EDR eSCO 3Mbps>");
usr.sbin/btconfig/btconfig.c
801
if (*f & HCI_LMP_3SLOT_EDR_eSCO) tag("<3 slot EDR eSCO>");
usr.sbin/btconfig/btconfig.c
808
if (*f & HCI_LMP_EXTENDED_FEATURES) tag("<extended features>");
usr.sbin/btconfig/btconfig.c
810
tag(NULL);
usr.sbin/btconfig/btconfig.c
826
case 1: tag("Desktop"); break;
usr.sbin/btconfig/btconfig.c
827
case 2: tag("Server"); break;
usr.sbin/btconfig/btconfig.c
828
case 3: tag("Laptop"); break;
usr.sbin/btconfig/btconfig.c
829
case 4: tag("Handheld"); break;
usr.sbin/btconfig/btconfig.c
830
case 5: tag("Palm Sized"); break;
usr.sbin/btconfig/btconfig.c
831
case 6: tag("Wearable"); break;
usr.sbin/btconfig/btconfig.c
833
tag("Computer");
usr.sbin/btconfig/btconfig.c
838
case 1: tag("Cellular Phone"); break;
usr.sbin/btconfig/btconfig.c
839
case 2: tag("Cordless Phone"); break;
usr.sbin/btconfig/btconfig.c
840
case 3: tag("Smart Phone"); break;
usr.sbin/btconfig/btconfig.c
841
case 4: tag("Wired Modem/Phone Gateway"); break;
usr.sbin/btconfig/btconfig.c
842
case 5: tag("Common ISDN"); break;
usr.sbin/btconfig/btconfig.c
843
default:tag("Phone"); break;
usr.sbin/btconfig/btconfig.c
848
tag("LAN");
usr.sbin/btconfig/btconfig.c
850
case 0: tag("[Fully available]"); break;
usr.sbin/btconfig/btconfig.c
851
case 1: tag("[1-17% utilised]"); break;
usr.sbin/btconfig/btconfig.c
852
case 2: tag("[17-33% utilised]"); break;
usr.sbin/btconfig/btconfig.c
853
case 3: tag("[33-50% utilised]"); break;
usr.sbin/btconfig/btconfig.c
854
case 4: tag("[50-67% utilised]"); break;
usr.sbin/btconfig/btconfig.c
855
case 5: tag("[67-83% utilised]"); break;
usr.sbin/btconfig/btconfig.c
856
case 6: tag("[83-99% utilised]"); break;
usr.sbin/btconfig/btconfig.c
857
case 7: tag("[No service available]"); break;
usr.sbin/btconfig/btconfig.c
863
case 1: tag("Wearable Headset"); break;
usr.sbin/btconfig/btconfig.c
864
case 2: tag("Hands-free Audio"); break;
usr.sbin/btconfig/btconfig.c
865
case 4: tag("Microphone"); break;
usr.sbin/btconfig/btconfig.c
866
case 5: tag("Loudspeaker"); break;
usr.sbin/btconfig/btconfig.c
867
case 6: tag("Headphones"); break;
usr.sbin/btconfig/btconfig.c
868
case 7: tag("Portable Audio"); break;
usr.sbin/btconfig/btconfig.c
869
case 8: tag("Car Audio"); break;
usr.sbin/btconfig/btconfig.c
870
case 9: tag("Set-top Box"); break;
usr.sbin/btconfig/btconfig.c
871
case 10: tag("HiFi Audio"); break;
usr.sbin/btconfig/btconfig.c
872
case 11: tag("VCR"); break;
usr.sbin/btconfig/btconfig.c
873
case 12: tag("Video Camera"); break;
usr.sbin/btconfig/btconfig.c
874
case 13: tag("Camcorder"); break;
usr.sbin/btconfig/btconfig.c
875
case 14: tag("Video Monitor"); break;
usr.sbin/btconfig/btconfig.c
876
case 15: tag("Video Display and Loudspeaker"); break;
usr.sbin/btconfig/btconfig.c
877
case 16: tag("Video Conferencing"); break;
usr.sbin/btconfig/btconfig.c
878
case 18: tag("A/V [Gaming/Toy]"); break;
usr.sbin/btconfig/btconfig.c
879
default: tag("Audio/Visual"); break;
usr.sbin/btconfig/btconfig.c
885
case 1: tag("Joystick"); break;
usr.sbin/btconfig/btconfig.c
886
case 2: tag("Gamepad"); break;
usr.sbin/btconfig/btconfig.c
887
case 3: tag("Remote Control"); break;
usr.sbin/btconfig/btconfig.c
888
case 4: tag("Sensing Device"); break;
usr.sbin/btconfig/btconfig.c
889
case 5: tag("Digitiser Tablet"); break;
usr.sbin/btconfig/btconfig.c
890
case 6: tag("Card Reader"); break;
usr.sbin/btconfig/btconfig.c
891
default: tag("Peripheral"); break;
usr.sbin/btconfig/btconfig.c
894
if (minor & 0x10) tag("Keyboard");
usr.sbin/btconfig/btconfig.c
895
if (minor & 0x20) tag("Mouse");
usr.sbin/btconfig/btconfig.c
899
if (minor & 0x20) tag("Printer");
usr.sbin/btconfig/btconfig.c
900
if (minor & 0x10) tag("Scanner");
usr.sbin/btconfig/btconfig.c
901
if (minor & 0x08) tag("Camera");
usr.sbin/btconfig/btconfig.c
902
if (minor & 0x04) tag("Display");
usr.sbin/btconfig/btconfig.c
903
if ((minor & 0x3c) == 0) tag("Imaging");
usr.sbin/btconfig/btconfig.c
908
case 1: tag("Wrist Watch"); break;
usr.sbin/btconfig/btconfig.c
909
case 2: tag("Pager"); break;
usr.sbin/btconfig/btconfig.c
910
case 3: tag("Jacket"); break;
usr.sbin/btconfig/btconfig.c
911
case 4: tag("Helmet"); break;
usr.sbin/btconfig/btconfig.c
912
case 5: tag("Glasses"); break;
usr.sbin/btconfig/btconfig.c
913
default: tag("Wearable"); break;
usr.sbin/btconfig/btconfig.c
919
case 1: tag("Robot"); break;
usr.sbin/btconfig/btconfig.c
920
case 2: tag("Vehicle"); break;
usr.sbin/btconfig/btconfig.c
921
case 3: tag("Doll / Action Figure"); break;
usr.sbin/btconfig/btconfig.c
922
case 4: tag("Controller"); break;
usr.sbin/btconfig/btconfig.c
923
case 5: tag("Game"); break;
usr.sbin/btconfig/btconfig.c
924
default: tag("Toy"); break;
usr.sbin/btconfig/btconfig.c
932
if (class & 0x002000) tag("<Limited Discoverable>");
usr.sbin/btconfig/btconfig.c
933
if (class & 0x010000) tag("<Positioning>");
usr.sbin/btconfig/btconfig.c
934
if (class & 0x020000) tag("<Networking>");
usr.sbin/btconfig/btconfig.c
935
if (class & 0x040000) tag("<Rendering>");
usr.sbin/btconfig/btconfig.c
936
if (class & 0x080000) tag("<Capturing>");
usr.sbin/btconfig/btconfig.c
937
if (class & 0x100000) tag("<Object Transfer>");
usr.sbin/btconfig/btconfig.c
938
if (class & 0x200000) tag("<Audio>");
usr.sbin/btconfig/btconfig.c
939
if (class & 0x400000) tag("<Telephony>");
usr.sbin/btconfig/btconfig.c
940
if (class & 0x800000) tag("<Information>");
usr.sbin/btconfig/btconfig.c
941
tag(NULL);
usr.sbin/fwcontrol/fwdv.c
122
isoreq.tag = (ich >> 6) & 3;
usr.sbin/fwcontrol/fwdv.c
280
isoreq.tag = (ich >> 6) & 3;
usr.sbin/installer/libinstaller/commands.c
182
if (cmd->tag != NULL)
usr.sbin/installer/libinstaller/commands.c
183
free(cmd->tag);
usr.sbin/installer/libinstaller/commands.c
186
vasprintf(&cmd->tag, fmt, args);
usr.sbin/installer/libinstaller/commands.c
211
return(cmd->tag);
usr.sbin/installer/libinstaller/commands.c
566
if (cmd->tag != NULL)
usr.sbin/installer/libinstaller/commands.c
567
free(cmd->tag);
usr.sbin/installer/libinstaller/commands.c
95
cmd->tag = NULL;
usr.sbin/installer/libinstaller/commands.h
69
char *tag; /* tag which is recorded on failure */
usr.sbin/makefs/hammer2/hammer2_compat.h
561
getnewvnode(enum vtagtype tag, struct mount *mp, struct m_vnode **vpp,
usr.sbin/mfiutil/mfiutil.c
174
display_firmware(struct mfi_info_component *comp, const char *tag)
usr.sbin/mfiutil/mfiutil.c
179
fw_time_width, comp->build_time, tag);
usr.sbin/mfiutil/mfiutil.h
118
void display_firmware(struct mfi_info_component *comp, const char *tag);
usr.sbin/pfctl/parse.y
235
char *tag;
usr.sbin/pfctl/parse.y
2399
filter_opts.tag = $2;
usr.sbin/pfctl/parse.y
3904
natrule : nataction interface af proto fromto tag tagged rtable
usr.sbin/pfctl/parse.y
4063
binatrule : no BINAT natpasslog interface af proto FROM host toipspec tag
usr.sbin/pfctl/parse.y
4230
tag : /* empty */ { $$ = NULL; }
usr.sbin/pfctl/parse.y
487
%type <v.string> label stringall tag anchorname
usr.sbin/pfctl/pfctl_optimize.c
194
PF_RULE_FIELD(tag, DC),
usr.sbin/ppp/route.c
655
route_ShowSticky(struct prompt *p, struct sticky_route *r, const char *tag,
usr.sbin/ppp/route.c
658
int tlen = strlen(tag);
usr.sbin/ppp/route.c
661
prompt_Printf(p, "%s:\n%*s", tag, indent, "");
usr.sbin/ppp/route.c
663
prompt_Printf(p, "%s:%*s", tag, indent - tlen - 1, "");