Symbol: match
bin/csh/glob.c
372
int nonomatch = adrof(STRnonomatch) != 0, magic = 0, match = 0;
bin/csh/glob.c
398
match |= (globv.gl_matchc != 0);
bin/csh/glob.c
405
vl = (globv.gl_pathc == 0 || (magic && !match && !nonomatch)) ?
bin/csh/glob.c
799
int match, negate_range;
bin/csh/glob.c
820
match = 0;
bin/csh/glob.c
826
if (match)
bin/csh/glob.c
829
match = (stringc <= (*pattern & TRIM) &&
bin/csh/glob.c
834
match = (stringc == (rangec & TRIM));
bin/csh/glob.c
838
if (match == negate_range)
bin/csh/proc.c
1179
goto match;
bin/csh/proc.c
1183
match:
bin/ksh/lex.c
199
char match[200] = { 0 }, *str = match;
bin/ksh/lex.c
221
} while (str < &match[sizeof(match)-1]);
bin/ksh/lex.c
225
int h = findhistrel(match);
bin/ksh/lex.c
229
int h = findhist(-1, 0, match, true);
bin/ksh/lex.c
253
} else if (*match != '\0') {
bin/ksh/lex.c
255
mlen = strlen(match);
bin/ksh/lex.c
257
ungetsc(match[i]);
bin/ksh/vi.c
2125
char *match;
bin/ksh/vi.c
2172
match = words[count] +
bin/ksh/vi.c
2178
NULL), match) == 0) {
bin/ksh/vi.c
2179
match = words[count];
bin/ksh/vi.c
2183
match = words[count];
bin/ksh/vi.c
2184
match_len = strlen(match);
bin/ksh/vi.c
2188
match = words[0];
bin/ksh/vi.c
2200
rval = x_escape(match, match_len, x_vi_putbuf);
bin/ksh/vi.c
2209
if (match_len > 0 && match[match_len - 1] != '/')
games/monop/getinp.c
49
int i, n_match, match;
games/monop/getinp.c
61
for (i = 0, match = 18; list[i]; i++) {
games/monop/getinp.c
62
if ((match += (n_match = strlen(list[i]))) > LINE) {
games/monop/getinp.c
64
match = n_match + 8;
games/monop/getinp.c
67
match += 8;
games/monop/getinp.c
76
match += 2;
games/monop/getinp.c
88
match = i;
games/monop/getinp.c
91
return match;
lib/libc/asr/getaddrinfo_async.c
52
static const struct match matches[] = {
lib/libc/gdtoa/gdtoaimp.h
598
extern int match ANSI((CONST char**, char*));
lib/libc/gdtoa/smisc.c
122
match
lib/libc/gdtoa/strtod.c
301
if (match(&s,"nf")) {
lib/libc/gdtoa/strtod.c
303
if (!match(&s,"inity"))
lib/libc/gdtoa/strtod.c
312
if (match(&s, "an")) {
lib/libc/gdtoa/strtodg.c
522
if (match(&s,"nf")) {
lib/libc/gdtoa/strtodg.c
524
if (!match(&s,"inity"))
lib/libc/gdtoa/strtodg.c
532
if (match(&s, "an")) {
lib/libc/gen/glob.c
161
static int match(Char *, Char *, Char *);
lib/libc/gen/glob.c
753
if (!match(pathend, pattern, restpattern)) {
lib/libc/locale/_wcstod.h
68
goto match;
lib/libc/locale/_wcstod.h
79
goto match;
lib/libc/locale/_wcstod.h
95
match:
lib/libc/regex/engine.c
109
static void print(struct match *, const char *, states, int, FILE *);
lib/libc/regex/engine.c
112
static void at(struct match *, const char *, const char *, const char *,
lib/libc/regex/engine.c
139
struct match mv;
lib/libc/regex/engine.c
140
struct match *m = &mv;
lib/libc/regex/engine.c
295
dissect(struct match *m, const char *start, const char *stop, sopno startst,
lib/libc/regex/engine.c
477
backref(struct match *m, const char *start, const char *stop, sopno startst,
lib/libc/regex/engine.c
674
fast(struct match *m, const char *start, const char *stop, sopno startst,
lib/libc/regex/engine.c
763
slow(struct match *m, const char *start, const char *stop, sopno startst,
lib/libc/regex/engine.c
88
static const char *dissect(struct match *, const char *, const char *, sopno,
lib/libc/regex/engine.c
90
static const char *backref(struct match *, const char *, const char *, sopno,
lib/libc/regex/engine.c
92
static const char *fast(struct match *, const char *, const char *, sopno,
lib/libc/regex/engine.c
94
static const char *slow(struct match *, const char *, const char *, sopno,
lib/libc/regex/engine.c
965
print(struct match *m, const char *caption, states st, int ch, FILE *d)
lib/libc/regex/engine.c
989
at(struct match *m, const char *title, const char *start, const char *stop,
lib/libc/stdlib/getopt_long.c
169
int i, match, exact_match, second_partial_match;
lib/libc/stdlib/getopt_long.c
172
match = -1;
lib/libc/stdlib/getopt_long.c
193
match = i;
lib/libc/stdlib/getopt_long.c
204
if (match == -1) /* first partial match */
lib/libc/stdlib/getopt_long.c
205
match = i;
lib/libc/stdlib/getopt_long.c
207
long_options[i].has_arg != long_options[match].has_arg ||
lib/libc/stdlib/getopt_long.c
208
long_options[i].flag != long_options[match].flag ||
lib/libc/stdlib/getopt_long.c
209
long_options[i].val != long_options[match].val)
lib/libc/stdlib/getopt_long.c
219
if (match != -1) { /* option found */
lib/libc/stdlib/getopt_long.c
220
if (long_options[match].has_arg == no_argument
lib/libc/stdlib/getopt_long.c
228
if (long_options[match].flag == NULL)
lib/libc/stdlib/getopt_long.c
229
optopt = long_options[match].val;
lib/libc/stdlib/getopt_long.c
234
if (long_options[match].has_arg == required_argument ||
lib/libc/stdlib/getopt_long.c
235
long_options[match].has_arg == optional_argument) {
lib/libc/stdlib/getopt_long.c
238
else if (long_options[match].has_arg ==
lib/libc/stdlib/getopt_long.c
246
if ((long_options[match].has_arg == required_argument)
lib/libc/stdlib/getopt_long.c
258
if (long_options[match].flag == NULL)
lib/libc/stdlib/getopt_long.c
259
optopt = long_options[match].val;
lib/libc/stdlib/getopt_long.c
276
*idx = match;
lib/libc/stdlib/getopt_long.c
277
if (long_options[match].flag) {
lib/libc/stdlib/getopt_long.c
278
*long_options[match].flag = long_options[match].val;
lib/libc/stdlib/getopt_long.c
281
return (long_options[match].val);
lib/libcrypto/x509/x509_ncons.c
369
int i, r, match = 0;
lib/libcrypto/x509/x509_ncons.c
382
if (match == 2)
lib/libcrypto/x509/x509_ncons.c
384
if (match == 0)
lib/libcrypto/x509/x509_ncons.c
385
match = 1;
lib/libcrypto/x509/x509_ncons.c
388
match = 2;
lib/libcrypto/x509/x509_ncons.c
393
if (match == 1)
lib/libcrypto/x509/x509_verify.c
261
X509 *match = NULL;
lib/libcrypto/x509/x509_verify.c
281
if ((match = x509_vfy_lookup_cert_match(ctx->xsc,
lib/libcrypto/x509/x509_verify.c
283
X509_free(match);
lib/libedit/readline.c
2148
char **list, *match, *a, *b;
lib/libedit/readline.c
2155
while ((match = (*fun)(str, (int)(len - 1))) != NULL) {
lib/libedit/readline.c
2156
list[len++] = match;
lib/libform/fty_regex.c
337
bool match = FALSE;
lib/libform/fty_regex.c
343
match = (regexec(ap->pRegExp, field_buffer(field, 0), 0, NULL, 0)
lib/libform/fty_regex.c
350
match = (step(field_buffer(field, 0), ap->compiled_expression)
lib/libform/fty_regex.c
354
return match;
lib/libtls/tls_client.c
457
int match, ssl_ret;
lib/libtls/tls_client.c
486
if (tls_check_name(ctx, cert, ctx->servername, &match) == -1)
lib/libtls/tls_client.c
488
if (!match) {
lib/libtls/tls_internal.h
245
int *match);
lib/libtls/tls_peer.c
66
int match;
lib/libtls/tls_peer.c
71
if (tls_check_name(ctx, ctx->ssl_peer_cert, name, &match) == -1)
lib/libtls/tls_peer.c
74
return (match);
lib/libtls/tls_server.c
121
&match) == -1)
lib/libtls/tls_server.c
123
if (match) {
lib/libtls/tls_server.c
89
int match;
lib/libtls/tls_verify.c
376
tls_check_name(struct tls *ctx, X509 *cert, const char *name, int *match)
lib/libtls/tls_verify.c
380
*match = 0;
lib/libtls/tls_verify.c
382
if (tls_check_subject_altname(ctx, cert, name, match,
lib/libtls/tls_verify.c
390
if (*match || alt_exists)
lib/libtls/tls_verify.c
393
return tls_check_common_name(ctx, cert, name, match);
lib/libz/deflate.c
1388
Bytef *match; /* matched string */
lib/libz/deflate.c
1432
match = s->window + cur_match;
lib/libz/deflate.c
1446
if (*(ushf*)(match + best_len - 1) != scan_end ||
lib/libz/deflate.c
1447
*(ushf*)match != scan_start) continue;
lib/libz/deflate.c
1458
Assert(scan[2] == match[2], "scan[2]?");
lib/libz/deflate.c
1459
scan++, match++;
lib/libz/deflate.c
1461
} while (*(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
lib/libz/deflate.c
1462
*(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
lib/libz/deflate.c
1463
*(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
lib/libz/deflate.c
1464
*(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
lib/libz/deflate.c
1471
if (*scan == *match) scan++;
lib/libz/deflate.c
1478
if (match[best_len] != scan_end ||
lib/libz/deflate.c
1479
match[best_len - 1] != scan_end1 ||
lib/libz/deflate.c
1480
*match != *scan ||
lib/libz/deflate.c
1481
*++match != scan[1]) continue;
lib/libz/deflate.c
1489
scan += 2, match++;
lib/libz/deflate.c
1490
Assert(*scan == *match, "match[2]?");
lib/libz/deflate.c
1496
} while (*++scan == *++match && *++scan == *++match &&
lib/libz/deflate.c
1497
*++scan == *++match && *++scan == *++match &&
lib/libz/deflate.c
1498
*++scan == *++match && *++scan == *++match &&
lib/libz/deflate.c
1499
*++scan == *++match && *++scan == *++match &&
lib/libz/deflate.c
1535
Bytef *match; /* matched string */
lib/libz/deflate.c
1549
match = s->window + cur_match;
lib/libz/deflate.c
1553
if (match[0] != scan[0] || match[1] != scan[1]) return MIN_MATCH-1;
lib/libz/deflate.c
1561
scan += 2, match += 2;
lib/libz/deflate.c
1562
Assert(*scan == *match, "match[2]?");
lib/libz/deflate.c
1568
} while (*++scan == *++match && *++scan == *++match &&
lib/libz/deflate.c
1569
*++scan == *++match && *++scan == *++match &&
lib/libz/deflate.c
1570
*++scan == *++match && *++scan == *++match &&
lib/libz/deflate.c
1571
*++scan == *++match && *++scan == *++match &&
lib/libz/deflate.c
1594
local void check_match(deflate_state *s, IPos start, IPos match, int length) {
lib/libz/deflate.c
1596
Bytef *back = s->window + (int)match, *here = s->window + start;
lib/libz/deflate.c
1598
if (match == (IPos)-1) {
lib/libz/deflate.c
1607
start, (int)match, length);
lib/libz/deflate.c
1614
fprintf(stderr,"\\[%d,%d]", start - match, length);
lib/libz/deflate.c
1619
# define check_match(s, start, match, length)
lib/libz/inftrees.c
190
match = 20;
lib/libz/inftrees.c
195
match = 257;
lib/libz/inftrees.c
222
if (work[sym] + 1U < match) {
lib/libz/inftrees.c
226
else if (work[sym] >= match) {
lib/libz/inftrees.c
227
here.op = (unsigned char)(extra[work[sym] - match]);
lib/libz/inftrees.c
228
here.val = base[work[sym] - match];
lib/libz/inftrees.c
64
unsigned match = 0; /* use base and extra for symbol >= match */
libexec/ld.so/library_subr.c
106
int match;
libexec/ld.so/library_subr.c
108
match = 1;
libexec/ld.so/library_subr.c
114
match = 0;
libexec/ld.so/library_subr.c
120
return match;
libexec/ld.so/library_subr.c
130
int match, len;
libexec/ld.so/library_subr.c
174
match = 0;
libexec/ld.so/library_subr.c
186
if (!match ||
libexec/ld.so/library_subr.c
193
match = 1;
libexec/ld.so/library_subr.c
212
if (match) {
libexec/ld.so/library_subr.c
62
int match;
libexec/ld.so/library_subr.c
78
match = 0;
libexec/ld.so/library_subr.c
84
match = 1;
libexec/ld.so/library_subr.c
91
return match;
libexec/ld.so/trace.c
159
int match;
libexec/ld.so/trace.c
165
match = 0;
libexec/ld.so/trace.c
195
match = 1;
libexec/ld.so/trace.c
205
return spec->inverse ? !match : match;
libexec/spamd/spamd.c
1002
if (match(cp->ibuf, "NOOP"))
libexec/spamd/spamd.c
1050
else if (verbose && (match(p, "FROM:") ||
libexec/spamd/spamd.c
1051
match(p, "TO:") || match(p, "SUBJECT:")))
libexec/spamd/spamd.c
107
int match(const char *, const char *);
libexec/spamd/spamd.c
803
if (match(cp->ibuf, "QUIT") && cp->state < 99) {
libexec/spamd/spamd.c
813
if (match(cp->ibuf, "RSET") && cp->state > 2 && cp->state < 50) {
libexec/spamd/spamd.c
835
if (match(cp->ibuf, "HELO") ||
libexec/spamd/spamd.c
836
match(cp->ibuf, "EHLO")) {
libexec/spamd/spamd.c
847
match(cp->ibuf, "EHLO")) {
libexec/spamd/spamd.c
879
if (match(cp->ibuf, "MAIL")) {
libexec/spamd/spamd.c
902
if (match(cp->ibuf, "RCPT")) {
libexec/spamd/spamd.c
955
cp->cctx == NULL && match(cp->ibuf, "STARTTLS")) {
libexec/spamd/spamd.c
981
if (match(cp->ibuf, "DATA")) {
regress/lib/libagentx/main.c
611
int match;
regress/lib/libagentx/main.c
628
match = 0;
regress/lib/libagentx/main.c
637
match = 1;
regress/lib/libagentx/main.c
646
if (!match)
regress/lib/libagentx/main.c
655
match = 0;
regress/lib/libagentx/main.c
659
match = 0;
regress/lib/libagentx/main.c
661
if (!match) {
regress/lib/libagentx/main.c
666
if (AGENTX_REQUEST_TYPE_GETNEXT && match)
regress/lib/libcrypto/mlkem/mlkem_tests.c
319
.match = "fail",
regress/lib/libcrypto/mlkem/mlkem_tests.c
70
.match = "fail",
regress/lib/libcrypto/mlkem/parse_test_file.c
282
return parse_state(p)->match;
regress/lib/libcrypto/mlkem/parse_test_file.c
551
string_matches = parse_get_string_cbs(p, match(p));
regress/lib/libcrypto/mlkem/parse_test_file.h
43
const char *match; /* only for LINE_STRING_MATCH */
regress/lib/libtls/verify/verifytest.c
26
int *match);
regress/lib/libtls/verify/verifytest.c
468
int match;
regress/lib/libtls/verify/verifytest.c
492
match = 1;
regress/lib/libtls/verify/verifytest.c
494
if (tls_check_name(tls, cert, vt->name, &match) != vt->want_return) {
regress/lib/libtls/verify/verifytest.c
499
if (match != vt->want_match) {
regress/sys/crypto/aes/aestest.c
151
} else if (!match(result, ciphertext, textlen)) {
regress/sys/crypto/aes/aestest.c
160
} else if (!match(result, plaintext, textlen)) {
regress/sys/crypto/aesctr/aesctr.c
246
fail = !match(data[TST_CIPHER], p, len);
regress/sys/crypto/aesxts/aes_xts.c
1793
if (!match(result, tv->ciphertext, tv->text_len)) {
regress/sys/crypto/aesxts/aes_xts.c
1806
if (!match(result, tv->plaintext, tv->text_len)) {
regress/sys/crypto/chachapoly/chachapoly_test.c
411
fail = !match(data[TST_CIPHER], data[TST_PLAIN],
regress/sys/crypto/chachapoly/chachapoly_test.c
420
fail = !match(data[TST_TAG], tag, POLY1305_TAGLEN);
regress/sys/crypto/enc/des3.c
151
if (!match(b1, b2, sizeof(b1)))
regress/sys/crypto/enc/des3.c
166
if (!match(b1, b2, sizeof(b1)))
regress/sys/crypto/gmac/gmac_test.c
733
fail = !match(data[TST_TAG], tag, GMAC_DIGEST_LEN);
regress/usr.bin/ssh/unittests/hostkeys/test_iterate.c
101
ASSERT_U_INT_EQ(l->match, expected_match);
regress/usr.bin/ssh/unittests/hostkeys/test_iterate.c
77
expected_match = expected->l.match;
regress/usr.sbin/bgpd/unittests/rde_community_test.c
151
if (f->match != -1) {
regress/usr.sbin/bgpd/unittests/rde_community_test.c
152
r = community_match(&comm, &filters[f->match], p);
regress/usr.sbin/bgpd/unittests/rde_community_test.h
1002
.match = 30,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
1008
.match = 30,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
1014
.match = 30,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
1020
.match = 30,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
1026
.match = 30,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
1032
.match = 30,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
1038
.match = 42,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
1046
.match = 43,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
1054
.match = 44,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
1062
.match = 44,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
1068
.match = 45,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
1076
.match = 45,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
591
int match;
regress/usr.sbin/bgpd/unittests/rde_community_test.h
600
.match = 1,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
606
.match = 2,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
612
.match = 20,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
618
.match = 5,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
624
.match = 5,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
630
.match = 20,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
636
.match = 21,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
642
.match = 22,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
648
.match = 22,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
654
.match = 18,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
660
.match = 23,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
666
.match = 23,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
672
.match = 24,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
678
.match = 24,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
684
.match = 25,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
690
.match = 26,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
696
.match = 0,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
702
.match = 21,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
711
.match = -1,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
719
.match = -1,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
727
.match = -1,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
735
.match = 28,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
742
.match = 28,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
749
.match = 28,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
755
.match = 28,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
761
.match = 28,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
767
.match = 28,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
773
.match = 28,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
779
.match = 28,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
785
.match = 28,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
791
.match = 28,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
797
.match = 28,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
803
.match = 28,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
809
.match = 28,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
815
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
822
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
829
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
836
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
843
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
849
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
855
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
861
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
867
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
873
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
879
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
885
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
891
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
897
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
903
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
909
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
915
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
921
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
927
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
933
.match = 29,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
939
.match = 30,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
946
.match = 30,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
953
.match = 30,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
960
.match = 30,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
966
.match = 30,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
972
.match = 30,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
978
.match = 30,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
984
.match = 30,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
990
.match = 30,
regress/usr.sbin/bgpd/unittests/rde_community_test.h
996
.match = 30,
regress/usr.sbin/snmpd/agentx.c
2475
size_t sublen, i, j, match;
regress/usr.sbin/snmpd/agentx.c
2518
match = (size_t)-1;
regress/usr.sbin/snmpd/agentx.c
2522
match = j;
regress/usr.sbin/snmpd/agentx.c
2528
if (match == (size_t)-1)
regress/usr.sbin/snmpd/agentx.c
2529
match = j;
regress/usr.sbin/snmpd/agentx.c
2532
&pool[match].name) < 0)
regress/usr.sbin/snmpd/agentx.c
2533
match = j;
regress/usr.sbin/snmpd/agentx.c
2536
if (match == (size_t)-1)
regress/usr.sbin/snmpd/agentx.c
2542
if (oid_cmp(&searchrange[match].start, &start) != 0 ||
regress/usr.sbin/snmpd/agentx.c
2543
oid_cmp(&searchrange[match].end, &end) != 0 ||
regress/usr.sbin/snmpd/agentx.c
2544
searchrange[match].end.include != end.include ||
regress/usr.sbin/snmpd/agentx.c
2545
searchrange[match].start.include != start.include)
regress/usr.sbin/snmpd/agentx.c
2550
oid_print(&searchrange[match].start, oid3,
regress/usr.sbin/snmpd/agentx.c
2552
oid_print(&searchrange[match].end, oid4,
regress/usr.sbin/snmpd/agentx.c
2556
varbind[i] = pool[match];
regress/usr.sbin/snmpd/agentx.c
2557
pool[match].name.n_subid = 0;
regress/usr.sbin/snmpd/agentx.c
2577
size_t sublen, i, j, match;
regress/usr.sbin/snmpd/agentx.c
2631
match = (size_t)-1;
regress/usr.sbin/snmpd/agentx.c
2635
match = j;
regress/usr.sbin/snmpd/agentx.c
2641
if (match == (size_t)-1)
regress/usr.sbin/snmpd/agentx.c
2642
match = j;
regress/usr.sbin/snmpd/agentx.c
2645
&varbind[match].name) < 0)
regress/usr.sbin/snmpd/agentx.c
2646
match = j;
regress/usr.sbin/snmpd/agentx.c
2649
if (match == (size_t)-1)
regress/usr.sbin/snmpd/agentx.c
2654
outvarbind[nout++] = varbind[match];
regress/usr.sbin/snmpd/agentx.c
2655
varbind[match] = varbind[--nvarbind];
sbin/iked/policy.c
1004
struct iked_transform *match[IKEV2_XFORMTYPE_MAX];
sbin/iked/policy.c
1022
bzero(match, sizeof(match));
sbin/iked/policy.c
1023
score = proposals_match(plocal, ppeer, match,
sbin/iked/policy.c
1029
if ((valid[i] = match[i]))
sbin/iked/policy.c
1030
memcpy(&chosen[i], match[i],
sbin/ipsecctl/ipsecctl.c
264
int match = 0;
sbin/ipsecctl/ipsecctl.c
294
match = 1;
sbin/ipsecctl/ipsecctl.c
300
match = 1;
sbin/ipsecctl/ipsecctl.c
303
if (!match)
sbin/isakmpd/sa.c
1019
sa_validate_proto_xf(struct proto *match, struct payload *xf, int phase)
sbin/isakmpd/sa.c
1027
if (!match->xf_cnt)
sbin/isakmpd/sa.c
1030
if (match->proto != GET_ISAKMP_PROP_PROTO(xf->context->p)) {
sbin/isakmpd/sa.c
1032
"protocol mismatch", match, match->no));
sbin/isakmpd/sa.c
1051
for (pa = TAILQ_FIRST(&match->xfs); pa && !found;
sbin/isakmpd/sa.c
1063
"xf %p proto %p pa %p found %d", xf, match, pa, found));
sbin/isakmpd/sa.c
1077
"xf %p proto %p pa %p found %d", xf, match, pa, found));
sbin/pfctl/parse.y
5344
r->nr = pf->astack[pf->asd]->match++;
sbin/pfctl/parse.y
6109
dst->anchor->match++;
sbin/pfctl/parse.y
6111
src->anchor->match = 0;
sbin/pfctl/parse.y
963
if (r.anchor->match) {
sbin/pfctl/pfctl.c
2040
if (r->anchor->match) {
sbin/scsi/scsi.c
453
int match, next, found, c;
sbin/scsi/scsi.c
483
match = 1;
sbin/scsi/scsi.c
484
while (match != 0) {
sbin/scsi/scsi.c
490
match++;
sbin/scsi/scsi.c
493
match--;
sbin/scsi/scsi.c
494
if (match == 0)
sbin/unwind/libunbound/services/authzone.c
3066
struct auth_data* match;
sbin/unwind/libunbound/services/authzone.c
3067
match = az_nsec3_find_exact(z, qname, qname_len, algo,
sbin/unwind/libunbound/services/authzone.c
3069
if(match) {
sbin/unwind/libunbound/services/authzone.c
3070
if(!az_nsec3_insert(z, region, msg, match))
sbin/unwind/libunbound/services/authzone.c
7930
struct auth_data* match;
sbin/unwind/libunbound/services/authzone.c
7941
match = az_nsec3_find_exact(z, z->name, z->namelen, algo,
sbin/unwind/libunbound/services/authzone.c
7943
if(!match) {
sbin/unwind/libunbound/services/authzone.c
7947
nsec3 = az_domain_rrset(match, LDNS_RR_TYPE_NSEC3);
sbin/unwind/libunbound/services/authzone.c
7953
if(!zonemd_dnssec_verify_rrset(z, env, mods, dnskey, match,
sbin/unwind/libunbound/services/localzone.c
1050
int match = 0; /* number of labels match count */
sbin/unwind/libunbound/services/localzone.c
1103
match = labs;
sbin/unwind/libunbound/services/localzone.c
1118
if(m < match)
sbin/unwind/libunbound/services/localzone.c
1119
match = m;
sbin/unwind/libunbound/services/localzone.c
1131
dname_remove_labels(&n2, &nmlen, nmlabs - match);
sbin/unwind/libunbound/services/localzone.c
1144
lz_enter_zone_dname(zones, n2, nmlen, match,
sbin/unwind/libunbound/services/localzone.c
2016
set_kiddo_parents(struct local_zone* z, struct local_zone* match,
sbin/unwind/libunbound/services/localzone.c
2033
if(p->parent == match)
sbin/unwind/libunbound/services/rpz.c
2108
struct matched_delegation_point const* match, struct auth_zone* az)
sbin/unwind/libunbound/services/rpz.c
2114
if(match->dname == NULL) { return NULL; }
sbin/unwind/libunbound/services/rpz.c
2117
key.name = match->dname;
sbin/unwind/libunbound/services/rpz.c
2118
key.namelen = match->dname_len;
sbin/unwind/libunbound/services/rpz.c
2119
key.namelabs = dname_count_labels(match->dname);
sbin/unwind/libunbound/services/rpz.c
2369
struct matched_delegation_point const* match, struct auth_zone* az)
sbin/unwind/libunbound/services/rpz.c
2401
ret = rpz_synthesize_nsdname_localdata(r, ms, qchase, z, match, az);
sbin/unwind/libunbound/services/rpz.c
2420
log_rpz_apply("nsdname", match->dname, NULL,
sbin/unwind/libunbound/services/rpz.c
2432
struct matched_delegation_point* match)
sbin/unwind/libunbound/services/rpz.c
2445
match->dname = nameserver->name;
sbin/unwind/libunbound/services/rpz.c
2446
match->dname_len = nameserver->namelen;
sbin/unwind/libunbound/services/rpz.c
2450
dname_str(match->dname, nm);
sbin/unwind/libunbound/services/rpz.c
2474
struct matched_delegation_point match = {0};
sbin/unwind/libunbound/services/rpz.c
2512
is->qchase.qclass, &match);
sbin/unwind/libunbound/services/rpz.c
2537
return rpz_apply_nsdname_trigger(ms, &is->qchase, r, z, &match, a);
sbin/unwind/libunbound/util/data/msgencode.c
112
int labs, struct compress_tree_node** match, int* matchlabels,
sbin/unwind/libunbound/util/data/msgencode.c
123
*match = p;
sbin/unwind/libunbound/util/data/msgencode.c
138
*match = close;
sbin/unwind/libunbound/util/net_help.c
821
int match = 0;
sbin/unwind/libunbound/util/net_help.c
835
match += 8;
sbin/unwind/libunbound/util/net_help.c
840
match++;
sbin/unwind/libunbound/util/net_help.c
846
if(match > min) match = min;
sbin/unwind/libunbound/util/net_help.c
847
return match;
sys/arch/alpha/isa/mcclock_isa.c
66
mcclock_isa_match(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/apecs.c
108
apecsmatch(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/cia.c
144
ciamatch(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/irongate.c
108
irongate_match(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/lca.c
110
lcamatch(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/pci_machdep.c
69
int match;
sys/arch/alpha/pci/pci_machdep.c
83
match = 0;
sys/arch/alpha/pci/pci_machdep.c
88
if (nmatch > match) {
sys/arch/alpha/pci/pci_machdep.c
89
match = nmatch;
sys/arch/alpha/pci/pci_machdep.c
95
if (nmatch > match) {
sys/arch/alpha/pci/pci_machdep.c
96
match = nmatch;
sys/arch/alpha/pci/sio.c
105
siomatch(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/sio.c
129
pcebmatch(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/tsc.c
170
tspmatch(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/tsc.c
92
tscmatch(struct device *parent, void *match, void *aux)
sys/arch/alpha/pci/tsciic.c
95
tsciic_match(struct device *parent, void *match, void *aux)
sys/arch/alpha/tc/mcclock_ioasic.c
69
mcclock_ioasic_match(struct device *parent, void *match, void *aux)
sys/arch/amd64/amd64/acpi_machdep.c
241
acpi_probe(struct device *parent, struct cfdata *match,
sys/arch/amd64/amd64/acpi_machdep.c
75
acpi_match(struct device *parent, void *match, void *aux)
sys/arch/amd64/amd64/acpi_machdep.c
78
struct cfdata *cf = match;
sys/arch/amd64/amd64/bios.c
72
bios_match(struct device *parent, void *match , void *aux)
sys/arch/amd64/amd64/cpu.c
477
cpu_match(struct device *parent, void *match, void *aux)
sys/arch/amd64/amd64/cpu.c
479
struct cfdata *cf = match;
sys/arch/amd64/amd64/efi_machdep.c
47
efi_match(struct device *parent, void *match, void *aux)
sys/arch/amd64/amd64/efi_machdep.c
50
struct cfdata *cf = match;
sys/arch/amd64/amd64/ioapic.c
234
struct cfdata *match = v;
sys/arch/amd64/amd64/ioapic.c
236
if (strcmp(aaa->aaa_name, match->cf_driver->cd_name) == 0)
sys/arch/amd64/amd64/mainbus.c
138
mainbus_match(struct device *parent, void *match, void *aux)
sys/arch/amd64/amd64/mpbios.c
201
mpbios_match(struct device *parent, void *match, void *aux)
sys/arch/amd64/amd64/mpbios.c
203
struct cfdata *cf = match;
sys/arch/amd64/amd64/vmm_machdep.c
276
vmm_probe_machdep(struct device *parent, void *match, void *aux)
sys/arch/amd64/pci/aapic.c
43
aapic_match(struct device *parent, void *match, void *aux)
sys/arch/amd64/pci/acpipci.c
93
acpipci_match(struct device *parent, void *match, void *aux)
sys/arch/amd64/pci/acpipci.c
96
struct cfdata *cf = match;
sys/arch/amd64/pci/pchb.c
133
pchbmatch(struct device *parent, void *match, void *aux)
sys/arch/amd64/pci/pcib.c
61
pcibmatch(struct device *parent, void *match, void *aux)
sys/arch/arm/mainbus/mainbus.c
219
mainbus_match_status(struct device *parent, void *match, void *aux)
sys/arch/arm/mainbus/mainbus.c
223
struct cfdata *cf = match;
sys/arch/arm/mainbus/mainbus.c
229
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/arm/mainbus/mainbus.c
234
mainbus_attach_cpus(struct device *self, cfmatch_t match)
sys/arch/arm/mainbus/mainbus.c
249
mainbus_attach_node(self, node, match);
sys/arch/arm/mainbus/mainbus.c
256
mainbus_match_primary(struct device *parent, void *match, void *aux)
sys/arch/arm/mainbus/mainbus.c
259
struct cfdata *cf = match;
sys/arch/arm/mainbus/mainbus.c
267
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/arm/mainbus/mainbus.c
271
mainbus_match_secondary(struct device *parent, void *match, void *aux)
sys/arch/arm/mainbus/mainbus.c
274
struct cfdata *cf = match;
sys/arch/arm/mainbus/mainbus.c
282
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/arm/simplebus/simplebus.c
132
simplebus_submatch(struct device *self, void *match, void *aux)
sys/arch/arm/simplebus/simplebus.c
135
struct cfdata *cf = match;
sys/arch/arm/simplebus/simplebus.c
138
return (*cf->cf_attach->ca_match)(self, match, aux);
sys/arch/arm64/arm64/acpi_machdep.c
49
acpi_fdt_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/acpicpu.c
78
acpicpu_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/acpicpu.c
81
struct cfdata *cf = match;
sys/arch/arm64/dev/acpiiort.c
43
acpiiort_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/acpipci.c
133
acpipci_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/acpipci.c
136
struct cfdata *cf = match;
sys/arch/arm64/dev/ampchwm.c
101
ampchwm_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/ampchwm.c
104
struct cfdata *cf = match;
sys/arch/arm64/dev/aplaudio.c
94
aplaudio_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplcpu.c
106
aplcpu_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/apldart.c
245
apldart_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/apldc.c
1176
apldckbd_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/apldc.c
119
apldc_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/apldc.c
1373
apldcms_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/apldma.c
127
apldma_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/apldog.c
71
apldog_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplefuse.c
52
aplefuse_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplhidev.c
189
aplhidev_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplhidev.c
603
aplkbd_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplhidev.c
807
aplms_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/apliic.c
95
apliic_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplintc.c
197
aplintc_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplmbox.c
80
aplmbox_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplmca.c
167
aplmca_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplnco.c
77
aplnco_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplns.c
170
nvme_ans_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplns.c
99
aplns_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplpcie.c
176
aplpcie_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplpinctrl.c
113
aplpinctrl_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplpmgr.c
82
aplpmgr_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplpmu.c
85
aplpmu_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplpwm.c
69
aplpwm_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplrtk.c
65
aplrtk_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplsart.c
76
aplsart_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplsmc.c
216
aplsmc_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplspi.c
113
aplspi_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/aplspmi.c
71
aplspmi_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/apm.c
125
apmmatch(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/bcm2712_mip.c
82
bcmmip_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/efi_machdep.c
66
efi_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/mainbus.c
297
mainbus_match_status(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/mainbus.c
301
struct cfdata *cf = match;
sys/arch/arm64/dev/mainbus.c
307
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/arm64/dev/mainbus.c
313
mainbus_attach_cpus(struct device *self, cfmatch_t match)
sys/arch/arm64/dev/mainbus.c
334
mainbus_attach_node(self, node, match);
sys/arch/arm64/dev/mainbus.c
342
mainbus_match_primary(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/mainbus.c
345
struct cfdata *cf = match;
sys/arch/arm64/dev/mainbus.c
351
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/arm64/dev/mainbus.c
355
mainbus_match_secondary(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/mainbus.c
358
struct cfdata *cf = match;
sys/arch/arm64/dev/mainbus.c
364
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/arm64/dev/rpiclock.c
195
rpiclock_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/rpigpio.c
146
rpigpio_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/rpipwm.c
77
rpipwm_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/rpirtc.c
51
rpirtc_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/rpone.c
92
rpone_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/simplebus.c
149
simplebus_submatch(struct device *self, void *match, void *aux)
sys/arch/arm64/dev/simplebus.c
152
struct cfdata *cf = match;
sys/arch/arm64/dev/simplebus.c
155
return (*cf->cf_attach->ca_match)(self, match, aux);
sys/arch/arm64/dev/smbios.c
64
smbios_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/smmu_acpi.c
64
smmu_acpi_match(struct device *parent, void *match, void *aux)
sys/arch/arm64/dev/smmu_fdt.c
68
smmu_fdt_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/crosec.c
52
cros_ec_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/exclock.c
114
exclock_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/exdwusb.c
44
exdwusb_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/exehci.c
103
exehci_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/exgpio.c
134
exgpio_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/exiic.c
112
exiic_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/exmct.c
58
exmct_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/expower.c
58
expower_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/exynos/tps65090.c
94
tps65090_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/imx/imxahci.c
111
imxahci_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/imx/imxtemp.c
101
imxtemp_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/marvell/mvahci.c
101
mvahci_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/marvell/mvortc.c
74
mvortc_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/marvell/mvpcie.c
173
mvpcie_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/marvell/mvpxa.c
102
mvpxa_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/marvell/mvxhci.c
99
mvxhci_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/edma.c
96
edma_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/if_cpsw.c
322
cpsw_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/intc.c
123
intc_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/nxphdmi.c
297
nxphdmi_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/omclock.c
72
omclock_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/omdog.c
76
omdog_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/omehci.c
99
omehci_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/omgpio.c
238
omgpio_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/ommmc.c
285
ommmc_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/omohci.c
118
omohci_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/omrng.c
86
omrng_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/omwugen.c
43
omwugen_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/omap/ti_iic.c
151
ti_iic_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/sunxi/sxiahci.c
82
sxiahci_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/sunxi/sxie.c
197
sxie_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/sunxi/sxiintc.c
163
sxiintc_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/sunxi/sxitimer.c
139
sxitimer_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/vexpress/pciecam.c
115
pciecam_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/vexpress/sysreg.c
70
sysreg_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/xilinx/zqclock.c
106
zqclock_match(struct device *parent, void *match, void *aux)
sys/arch/armv7/xilinx/zqreset.c
62
zqreset_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/com_dino.c
69
com_dino_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/com_ssio.c
42
com_ssio_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/com_ssio.c
44
struct cfdata *cf = match;
sys/arch/hppa/dev/gecko.c
51
gecko_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/lcd.c
65
lcd_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/lpt_ssio.c
38
lpt_ssio_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/lpt_ssio.c
40
struct cfdata *cf = match;
sys/arch/hppa/dev/siop_sgc.c
61
siop_sgc_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/ssio.c
133
ssio_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/dev/sti_sgc.c
101
struct cfdata *cf = match;
sys/arch/hppa/dev/sti_sgc.c
99
sti_sgc_probe(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/arcofi_gsc.c
46
arcofi_gsc_match(struct device *parent, void *match, void *vaa)
sys/arch/hppa/gsc/com_gsc.c
59
com_gsc_probe(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/fdc_gsc.c
53
fdc_gsc_probe(parent, match, aux)
sys/arch/hppa/gsc/fdc_gsc.c
55
void *match, *aux;
sys/arch/hppa/gsc/gsckbc.c
163
gsckbc_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/gsckbc.c
478
pckbc_submatch(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/gsckbc.c
480
struct cfdata *cf = match;
sys/arch/hppa/gsc/harmony.c
113
harmony_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/hil_gsc.c
59
hil_gsc_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/if_ie_gsc.c
254
ie_gsc_probe(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/lpt_gsc.c
100
lpt_gsc_probe(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/oosiop_gsc.c
90
oosiop_gsc_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/osiop_gsc.c
91
osiop_gsc_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/gsc/siop_gsc.c
61
siop_gsc_match(struct device *parent, void *match, void *aux)
sys/arch/hppa/hppa/mainbus.c
1268
mbsubmatch(struct device *parent, void *match, void *aux)
sys/arch/hppa/hppa/mainbus.c
1270
struct cfdata *cf = match;
sys/arch/hppa/hppa/mainbus.c
1282
if ((ret = (*cf->cf_attach->ca_match)(parent, match, aux)))
sys/arch/i386/i386/acpi_machdep.c
185
acpi_probe(struct device *parent, struct cfdata *match,
sys/arch/i386/i386/acpi_machdep.c
78
acpi_match(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/acpi_machdep.c
81
struct cfdata *cf = match;
sys/arch/i386/i386/amdmsr.c
84
amdmsr_match(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/apm.c
690
apmprobe(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/bios.c
133
biosprobe(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/cpu.c
215
cpu_match(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/cpu.c
217
struct cfdata *cf = match;
sys/arch/i386/i386/esm.c
208
esm_match(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/ioapic.c
246
struct cfdata *match = v;
sys/arch/i386/i386/ioapic.c
248
if (strcmp(aaa->aaa_name, match->cf_driver->cd_name) == 0)
sys/arch/i386/i386/mainbus.c
127
mainbus_match(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/mpbios.c
204
mpbios_match(struct device *parent, void *match, void *aux)
sys/arch/i386/i386/mpbios.c
206
struct cfdata *cf = match;
sys/arch/i386/isa/ahc_isa.c
286
ahc_isa_probe(struct device *parent, void *match, void *aux)
sys/arch/i386/isa/joy_isa.c
60
joy_isa_probe(struct device *parent, void *match, void *aux)
sys/arch/i386/isa/joy_isapnp.c
53
joy_isapnp_probe(struct device *parent, void *match, void *aux)
sys/arch/i386/isa/lms.c
79
lmsprobe(struct device *parent, void *match, void *aux)
sys/arch/i386/isa/mms.c
76
mmsprobe(struct device *parent, void *match, void *aux)
sys/arch/i386/isa/npx.c
263
npxprobe(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/geodesc.c
73
geodesc_match(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/glxsb.c
211
glxsb_match(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/gscpcib.c
70
gscpcib_match(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/gscpm.c
77
gscpm_match(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/ichpcib.c
109
ichpcib_match(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/pchb.c
145
pchbmatch(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/pcib.c
65
pcibmatch(struct device *parent, void *match, void *aux)
sys/arch/i386/pci/pcibios.c
141
pcibiosprobe(struct device *parent, void *match, void *aux)
sys/arch/landisk/dev/power.c
57
power_match(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/apm.c
124
apmmatch(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/com_leioc.c
50
com_leioc_match(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/gdiumiic.c
130
gdiumiic_match(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/gdiumiic.c
132
struct cfdata *cf = match;
sys/arch/loongson/dev/glxclk.c
92
glxclk_match(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/glxclk.c
95
struct cfdata *cf = match;
sys/arch/loongson/dev/htb.c
154
htb_match(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/kb3310.c
131
ykbec_match(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/mcclock_isa.c
67
mcclock_isa_match(struct device *parent, void *match, void *aux)
sys/arch/loongson/dev/pcib.c
74
pcibmatch(struct device *parent, void *match, void *aux)
sys/arch/luna88k/cbus/i82365_cbus.c
165
pcic_cbus_probe(parent, match, aux)
sys/arch/luna88k/cbus/i82365_cbus.c
167
void *match, *aux;
sys/arch/luna88k/cbus/i82365_cbus.c
169
struct cfdata *cf = match;
sys/arch/luna88k/cbus/if_ne_cbus.c
109
ne_cbus_match(struct device *parent, void *match, void *aux)
sys/arch/luna88k/cbus/if_ne_cbus.c
111
struct ne_cbus_softc *csc = match;
sys/arch/luna88k/cbus/if_ne_cbus.c
119
struct cfdata *cf = match;
sys/arch/luna88k/dev/lunaws.c
150
wsmatch(struct device *parent, void *match, void *aux)
sys/arch/luna88k/dev/lunaws.c
209
ws_submatch_kbd(struct device *parent, void *match, void *aux)
sys/arch/luna88k/dev/lunaws.c
211
struct cfdata *cf = match;
sys/arch/luna88k/dev/lunaws.c
221
ws_submatch_mouse(struct device *parent, void *match, void *aux)
sys/arch/luna88k/dev/lunaws.c
223
struct cfdata *cf = match;
sys/arch/luna88k/dev/timekeeper.c
89
clock_match(struct device *parent, void *match, void *aux)
sys/arch/m88k/m88k/db_disasm.c
1058
if ((inst & p->mask) == p->match) {
sys/arch/m88k/m88k/db_disasm.c
534
u_int32_t match = (inst >> 21) & 0x1f;
sys/arch/m88k/m88k/db_disasm.c
540
if (bcnd && condname[match] == NULL)
sys/arch/m88k/m88k/db_disasm.c
551
db_printf("%s0", condname[match]);
sys/arch/m88k/m88k/db_disasm.c
553
printcmp(cpu, match);
sys/arch/m88k/m88k/db_disasm.c
566
u_int32_t match = (inst >> 21) & 0x1f;
sys/arch/m88k/m88k/db_disasm.c
571
if (tcnd && condname[match] == NULL)
sys/arch/m88k/m88k/db_disasm.c
576
db_printf("%s0", condname[match]);
sys/arch/m88k/m88k/db_disasm.c
578
printcmp(cpu, match);
sys/arch/m88k/m88k/db_disasm.c
843
u_int32_t mask, match;
sys/arch/macppc/dev/aoa.c
85
aoa_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/apm.c
115
apmmatch(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/asms.c
81
asms_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/awacs.c
241
awacs_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/daca.c
96
daca_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/if_wi_obio.c
92
wi_obio_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/kiic.c
71
kiic_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/onyx.c
104
onyx_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/snapper.c
420
snapper_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/tumbler.c
241
tumbler_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/wdc_obio.c
106
wdc_obio_probe(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/zs.c
163
zs_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/dev/zs.c
166
struct cfdata *cf = match;
sys/arch/macppc/include/pci_machdep.h
103
int (*match)(struct pci_attach_args *),
sys/arch/macppc/pci/hpb.c
84
hpb_match(struct device *parent, void *match, void *aux)
sys/arch/macppc/pci/kauaiata.c
55
int kauaiatamatch(struct device *parent, void *match, void *aux);
sys/arch/macppc/pci/kauaiata.c
69
kauaiatamatch(struct device *parent, void *match, void *aux)
sys/arch/macppc/pci/mpcpcibus.c
113
mpcpcibrmatch(struct device *parent, void *match, void *aux)
sys/arch/macppc/pci/pci_machdep.c
245
int (*match)(struct pci_attach_args *), struct pci_attach_args *pap)
sys/arch/macppc/pci/pci_machdep.c
264
ret = pci_probe_device(sc, tag, match, pap);
sys/arch/macppc/pci/pci_machdep.c
265
if (match != NULL && ret != 0)
sys/arch/macppc/pci/pci_machdep.c
295
ret = pci_probe_device(sc, tag, match, pap);
sys/arch/macppc/pci/pci_machdep.c
296
if (match != NULL && ret != 0)
sys/arch/macppc/pci/pci_machdep.c
323
ret = pci_probe_device(sc, tag, match, pap);
sys/arch/macppc/pci/pci_machdep.c
324
if (match != NULL && ret != 0)
sys/arch/macppc/pci/vgafb.c
111
vgafb_match(struct device *parent, void *match, void *aux)
sys/arch/mips64/mips64/cpu.c
65
cpumatch(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/amdcf.c
211
amdcf_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/amdcf.c
214
struct cfdata *cf = match;
sys/arch/octeon/dev/cn30xxgmx.c
161
cn30xxgmx_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/cn30xxgmx.c
163
struct cfdata *cf = (struct cfdata *)match;
sys/arch/octeon/dev/cn30xxsmi.c
62
cn30xxsmi_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/cn30xxuart.c
96
cn30xxuart_probe(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/if_cnmac.c
231
cnmac_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/if_cnmac.c
233
struct cfdata *cf = (struct cfdata *)match;
sys/arch/octeon/dev/if_ogx.c
357
ogx_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octcf.c
160
octcfprobe(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octcib.c
95
octcib_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octcit.c
134
octcit_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octciu.c
140
octciu_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octcrypto.c
230
octcrypto_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octdwctwo.c
124
octdwctwo_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octehci.c
57
octehci_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octeon_iobus.c
136
iobusmatch(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octgpio.c
77
octgpio_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octiic.c
135
octiic_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octmmc.c
163
octmmc_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octohci.c
58
octohci_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octpcie.c
266
octpcie_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octpip.c
48
octpip_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octrng.c
70
octrng_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octrng.c
73
struct cfdata *cf = match;
sys/arch/octeon/dev/octrtc.c
94
octrtc_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octrtc.c
97
struct cfdata *cf = match;
sys/arch/octeon/dev/octsctl.c
58
octsctl_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octuctl.c
109
octuctl_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/octxctl.c
89
octxctl_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/ogxnexus.c
60
ogxnexus_match(struct device *parent, void *match, void *aux)
sys/arch/octeon/dev/simplebus.c
114
simplebus_submatch(struct device *self, void *match, void *aux)
sys/arch/octeon/dev/simplebus.c
117
struct cfdata *cf = match;
sys/arch/octeon/dev/simplebus.c
120
return (*cf->cf_attach->ca_match)(self, match, aux);
sys/arch/powerpc64/dev/ipmi_opal.c
69
ipmi_opal_match(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/mainbus.c
294
mainbus_match_status(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/mainbus.c
298
struct cfdata *cf = match;
sys/arch/powerpc64/dev/mainbus.c
306
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/powerpc64/dev/mainbus.c
312
mainbus_attach_cpus(struct device *self, cfmatch_t match)
sys/arch/powerpc64/dev/mainbus.c
333
mainbus_attach_node(self, node, match);
sys/arch/powerpc64/dev/mainbus.c
341
mainbus_match_primary(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/mainbus.c
344
struct cfdata *cf = match;
sys/arch/powerpc64/dev/mainbus.c
349
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/powerpc64/dev/mainbus.c
353
mainbus_match_secondary(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/mainbus.c
356
struct cfdata *cf = match;
sys/arch/powerpc64/dev/mainbus.c
361
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/powerpc64/dev/opal.c
90
opal_match(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/opalcons.c
61
opalcons_match(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/opalsens.c
51
opalsens_match(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/phb.c
139
phb_match(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/xicp.c
106
xicp_match(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/xics.c
54
xics_match(struct device *parent, void *match, void *aux)
sys/arch/powerpc64/dev/xive.c
159
xive_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/mainbus.c
282
mainbus_match_status(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/mainbus.c
286
struct cfdata *cf = match;
sys/arch/riscv64/dev/mainbus.c
294
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/riscv64/dev/mainbus.c
300
mainbus_attach_cpus(struct device *self, cfmatch_t match)
sys/arch/riscv64/dev/mainbus.c
325
mainbus_attach_node(self, node, match);
sys/arch/riscv64/dev/mainbus.c
333
mainbus_match_primary(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/mainbus.c
336
struct cfdata *cf = match;
sys/arch/riscv64/dev/mainbus.c
341
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/riscv64/dev/mainbus.c
345
mainbus_match_secondary(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/mainbus.c
348
struct cfdata *cf = match;
sys/arch/riscv64/dev/mainbus.c
353
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/arch/riscv64/dev/mpfclock.c
116
mpfclock_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/mpfgpio.c
91
mpfgpio_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/mpfiic.c
127
mpfiic_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/riscv_cpu_intc.c
59
riscv_intc_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/sfcc.c
58
sfcc_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/sfclock.c
83
sfclock_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/sfgpio.c
106
sfgpio_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/sfuart.c
137
sfuart_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/sgmsi.c
67
sgmsi_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/simplebus.c
125
simplebus_submatch(struct device *self, void *match, void *aux)
sys/arch/riscv64/dev/simplebus.c
128
struct cfdata *cf = match;
sys/arch/riscv64/dev/simplebus.c
131
return (*cf->cf_attach->ca_match)(self, match, aux);
sys/arch/riscv64/dev/smtclock.c
269
smtclock_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/smtcomphy.c
117
smtcomphy_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/smtgpio.c
69
smtgpio_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/smtiic.c
105
smtiic_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/smtpinctrl.c
67
smtpinctrl_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/smtpmic.c
90
smtpmic_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/stfclock.c
234
stfclock_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/stfpcie.c
186
stfpcie_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/stfpciephy.c
65
stfpciephy_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/stfpinctrl.c
93
stfpinctrl_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/stfrng.c
77
stfrng_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/stftemp.c
70
stftemp_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/dev/sxitimer.c
84
sxitimer_match(struct device *parent, void *match, void *aux)
sys/arch/riscv64/riscv64/db_disasm.c
82
int match;
sys/arch/riscv64/riscv64/db_disasm.c
91
if (((insn ^ op->match) & op->mask) == 0)
sys/arch/sparc64/dev/beep.c
95
beep_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/beeper.c
85
beeper_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/cbus.c
63
cbus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/central.c
63
central_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/clkbrd.c
60
clkbrd_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/cmp.c
39
cmp_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/com_ebus.c
84
com_ebus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/comkbd_ebus.c
134
comkbd_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/comms_ebus.c
158
comms_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/core.c
39
core_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/creator.c
86
creator_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/ebus.c
105
ebus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/ebus_mainbus.c
71
ebus_mainbus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/fd.c
316
fdcmatch_sbus(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/fd.c
361
fdcmatch_ebus(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/fd.c
554
fdmatch(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/fhc_central.c
52
fhc_central_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/fhc_mainbus.c
50
fhc_mainbus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/gfb.c
58
gfb_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/lom.c
222
lom_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/lpt_ebus.c
59
lpt_ebus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/mgiic.c
103
mgiic_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/pcf8591_envctrl.c
71
ecadc_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/pcf8591_ofw.c
57
pcfadc_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/pcfiic_ebus.c
61
pcfiic_ebus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/pci_machdep.c
254
int (*match)(struct pci_attach_args *), struct pci_attach_args *pap)
sys/arch/sparc64/dev/pci_machdep.c
336
ret = pci_probe_device(sc, tag, match, pap);
sys/arch/sparc64/dev/pci_machdep.c
337
if (match != NULL && ret != 0)
sys/arch/sparc64/dev/pckbc_ebus.c
75
pckbc_ebus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/pcons.c
149
pconsmatch(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/power.c
74
power_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/ppm.c
72
ppm_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/prtc.c
62
prtc_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/psycho.c
208
psycho_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/pyro.c
167
pyro_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/sab.c
212
sab_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/sab.c
369
sabtty_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/sbbc.c
171
sbbc_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/schizo.c
113
schizo_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/schizo.c
179
u_int64_t match, reg;
sys/arch/sparc64/dev/schizo.c
213
match = schizo_read(sc, busa ? SCZ_PCIA_IO_MATCH : SCZ_PCIB_IO_MATCH);
sys/arch/sparc64/dev/schizo.c
214
pbm->sp_confpaddr = match & ~0x8000000000000000UL;
sys/arch/sparc64/dev/ssm.c
40
ssm_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/stp_sbus.c
71
stpmatch(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/tda.c
80
tda_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/upa.c
82
upa_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/uperf_ebus.c
112
uperf_ebus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vbus.c
59
vbus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vcc.c
56
vcc_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vcctty.c
93
vcctty_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vcons.c
69
vcons_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vds.c
56
vds_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vdsk.c
220
vdsk_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vdsp.c
317
vdsp_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vldc.c
56
vldc_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vldcp.c
113
vldcp_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vnet.c
238
vnet_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vpci.c
146
vpci_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vrng.c
67
vrng_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vrtc.c
47
vrtc_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/vsw.c
56
vsw_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/dev/wbsd_ebus.c
46
wbsd_ebus_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/include/pci_machdep.h
124
int (*match)(struct pci_attach_args *),
sys/arch/sparc64/sparc64/cpu.c
199
cpu_match(struct device *parent, void *match, void *aux)
sys/arch/sparc64/sparc64/db_disasm.c
117
unsigned int match;
sys/arch/sparc64/sparc64/db_disasm.c
897
bitmask= (i_ptr->match);
sys/dev/acpi/abl.c
85
abl_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/abl.c
88
struct cfdata *cf = match;
sys/dev/acpi/acpi.c
1383
acpi_submatch(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpi.c
1386
struct cfdata *cf = match;
sys/dev/acpi/acpi.c
1390
return ((*cf->cf_attach->ca_match)(parent, match, aux));
sys/dev/acpi/acpiac.c
60
acpiac_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpiac.c
63
struct cfdata *cf = match;
sys/dev/acpi/acpials.c
78
acpials_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpials.c
81
struct cfdata *cf = match;
sys/dev/acpi/acpiasus.c
104
acpiasus_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpiasus.c
107
struct cfdata *cf = match;
sys/dev/acpi/acpibat.c
61
acpibat_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpibat.c
64
struct cfdata *cf = match;
sys/dev/acpi/acpibtn.c
150
acpibtn_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpibtn.c
153
struct cfdata *cf = match;
sys/dev/acpi/acpicbkbd.c
73
acpicbkbd_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpicbkbd.c
76
struct cfdata *cf = match;
sys/dev/acpi/acpicmos.c
53
acpicmos_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpicmos.c
56
struct cfdata *cf = match;
sys/dev/acpi/acpicpu_x86.c
651
acpicpu_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpicpu_x86.c
654
struct cfdata *cf = match;
sys/dev/acpi/acpidmar.c
3543
acpidmar_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpidock.c
57
acpidock_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpidock.c
60
struct cfdata *cf = match;
sys/dev/acpi/acpiec.c
255
acpiec_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpiec.c
258
struct cfdata *cf = match;
sys/dev/acpi/acpige.c
63
acpige_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpige.c
66
struct cfdata *cf = match;
sys/dev/acpi/acpihid.c
80
acpihid_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpihid.c
83
struct cfdata *cf = match;
sys/dev/acpi/acpihpet.c
182
acpihpet_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpihve.c
49
acpihve_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpimadt.c
59
acpimadt_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpimcfg.c
38
acpimcfg_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpiprt.c
88
acpiprt_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpiprt.c
91
struct cfdata *cf = match;
sys/dev/acpi/acpipwrres.c
81
acpipwrres_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpipwrres.c
84
struct cfdata *cf = match;
sys/dev/acpi/acpisbs.c
157
acpisbs_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpisbs.c
160
struct cfdata *cf = match;
sys/dev/acpi/acpisectwo.c
53
acpisectwo_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpisectwo.c
56
struct cfdata *cf = match;
sys/dev/acpi/acpisony.c
88
acpisony_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpisony.c
91
struct cfdata *cf = match;
sys/dev/acpi/acpisurface.c
79
surface_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpisurface.c
82
struct cfdata *cf = match;
sys/dev/acpi/acpithinkpad.c
226
thinkpad_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpithinkpad.c
229
struct cfdata *cf = match;
sys/dev/acpi/acpitimer.c
62
acpitimermatch(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpitimer.c
65
struct cfdata *cf = match;
sys/dev/acpi/acpitoshiba.c
203
toshiba_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpitoshiba.c
206
struct cfdata *cf = match;
sys/dev/acpi/acpitz.c
167
acpitz_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpitz.c
170
struct cfdata *cf = match;
sys/dev/acpi/acpivideo.c
69
acpivideo_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpivideo.c
72
struct cfdata *cf = match;
sys/dev/acpi/acpivout.c
86
acpivout_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpivout.c
89
struct cfdata *cf = match;
sys/dev/acpi/acpiwmi.c
76
acpiwmi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/acpiwmi.c
79
struct cfdata *cf = match;
sys/dev/acpi/ahci_acpi.c
48
ahci_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/amdgpio.c
107
amdgpio_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/amdgpio.c
110
struct cfdata *cf = match;
sys/dev/acpi/amdpmc.c
182
amdpmc_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/amdpmc.c
185
struct cfdata *cf = match;
sys/dev/acpi/aplgpio.c
85
aplgpio_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/aplgpio.c
88
struct cfdata *cf = match;
sys/dev/acpi/asmc.c
240
asmc_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/asmc.c
243
struct cfdata *cf = match;
sys/dev/acpi/atk0110.c
130
aibs_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/atk0110.c
133
struct cfdata *cf = match;
sys/dev/acpi/bytgpio.c
112
bytgpio_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/bytgpio.c
115
struct cfdata *cf = match;
sys/dev/acpi/ccp_acpi.c
48
ccp_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/ccp_acpi.c
51
struct cfdata *cf = match;
sys/dev/acpi/ccpmic.c
99
ccpmic_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/chvgpio.c
156
chvgpio_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/chvgpio.c
159
struct cfdata *cf = match;
sys/dev/acpi/com_acpi.c
63
com_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/com_acpi.c
66
struct cfdata *cf = match;
sys/dev/acpi/dwgpio.c
101
struct cfdata *cf = match;
sys/dev/acpi/dwgpio.c
98
dwgpio_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/dwiic_acpi.c
156
dwiic_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/dwiic_acpi.c
159
struct cfdata *cf = match;
sys/dev/acpi/ehci_acpi.c
61
ehci_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/ehci_acpi.c
64
struct cfdata *cf = match;
sys/dev/acpi/glkgpio.c
85
glkgpio_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/glkgpio.c
88
struct cfdata *cf = match;
sys/dev/acpi/if_bse_acpi.c
58
bse_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/if_bse_acpi.c
61
struct cfdata *cf = match;
sys/dev/acpi/imxiic_acpi.c
65
imxiic_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/imxiic_acpi.c
68
struct cfdata *cf = match;
sys/dev/acpi/intelpmc.c
90
intelpmc_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/intelpmc.c
93
struct cfdata *cf = match;
sys/dev/acpi/inthid.c
152
inthid_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/inthid.c
155
struct cfdata *cf = match;
sys/dev/acpi/iosf_acpi.c
62
iosf_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/iosf_acpi.c
65
struct cfdata *cf = match;
sys/dev/acpi/ipmi_acpi.c
64
ipmi_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/ipmi_acpi.c
67
struct cfdata *cf = match;
sys/dev/acpi/ispi_acpi.c
62
ispi_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/ispi_acpi.c
65
struct cfdata *cf = match;
sys/dev/acpi/ohci_acpi.c
57
ohci_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/pchgpio.c
477
pchgpio_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/pchgpio.c
480
struct cfdata *cf = match;
sys/dev/acpi/pckbc_acpi.c
112
pckbc_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/pckbc_acpi.c
116
return pckbc_acpi_match_kbd(parent, match, aux);
sys/dev/acpi/pckbc_acpi.c
118
return pckbc_acpi_match_mouse(parent, match, aux, sc);
sys/dev/acpi/pckbc_acpi.c
144
pckbc_acpi_match_kbd(struct device *parent, void *match, void *aux)
sys/dev/acpi/pckbc_acpi.c
147
struct cfdata *cf = match;
sys/dev/acpi/pckbc_acpi.c
195
pckbc_acpi_match_mouse(struct device *parent, void *match, void *aux,
sys/dev/acpi/pckbc_acpi.c
199
struct cfdata *cf = match;
sys/dev/acpi/pluart_acpi.c
56
pluart_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/pluart_acpi.c
59
struct cfdata *cf = match;
sys/dev/acpi/qcgpio.c
282
qcgpio_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/qcgpio.c
285
struct cfdata *cf = match;
sys/dev/acpi/qciic.c
116
qciic_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/qciic.c
119
struct cfdata *cf = match;
sys/dev/acpi/qcscm_acpi.c
45
qcscm_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/qcscm_acpi.c
48
struct cfdata *cf = match;
sys/dev/acpi/qcuart_acpi.c
52
qcuart_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/qcuart_acpi.c
55
struct cfdata *cf = match;
sys/dev/acpi/sdhc_acpi.c
77
sdhc_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/sdhc_acpi.c
80
struct cfdata *cf = match;
sys/dev/acpi/tipmic.c
110
tipmic_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/tpm.c
250
tpm_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/tpm.c
253
struct cfdata *cf = match;
sys/dev/acpi/ufshci_acpi.c
58
ufshci_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/ufshci_acpi.c
61
struct cfdata *cf = match;
sys/dev/acpi/xhci_acpi.c
74
xhci_acpi_match(struct device *parent, void *match, void *aux)
sys/dev/acpi/xhci_acpi.c
77
struct cfdata *cf = match;
sys/dev/ata/wd.c
150
struct cfdata *match = match_;
sys/dev/ata/wd.c
157
if (match->cf_loc[0] != -1 &&
sys/dev/ata/wd.c
158
match->cf_loc[0] != aa_link->aa_channel)
sys/dev/ata/wd.c
161
if (match->cf_loc[1] != -1 &&
sys/dev/ata/wd.c
162
match->cf_loc[1] != aa_link->aa_drv_data->drive)
sys/dev/atapiscsi/atapiscsi.c
167
atapiscsi_match(struct device *parent, void *match, void *aux)
sys/dev/atapiscsi/atapiscsi.c
170
struct cfdata *cf = match;
sys/dev/audio.c
1190
audio_match(struct device *parent, void *match, void *aux)
sys/dev/audio.c
1434
audio_submatch(struct device *parent, void *match, void *aux)
sys/dev/audio.c
1436
struct cfdata *cf = match;
sys/dev/cardbus/cardbus.c
552
cardbussubmatch(struct device *parent, void *match, void *aux)
sys/dev/cardbus/cardbus.c
554
struct cfdata *cf = match;
sys/dev/cardbus/cardbus.c
91
cardbusmatch(struct device *parent, void *match, void *aux)
sys/dev/cardbus/cardbus.c
93
struct cfdata *cf = match;
sys/dev/cardbus/cardslot.c
163
cardslot_16_submatch(struct device *parent, void *match, void *aux)
sys/dev/cardbus/cardslot.c
165
struct cfdata *cf = match;
sys/dev/cardbus/cardslot.c
76
cardslotmatch(struct device *parent, void *match, void *aux)
sys/dev/cardbus/com_cardbus.c
148
com_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/ehci_cardbus.c
71
ehci_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_acx_cardbus.c
96
acx_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_ath_cardbus.c
98
ath_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_athn_cardbus.c
100
athn_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_atw_cardbus.c
111
atw_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_bwi_cardbus.c
88
bwi_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_dc_cardbus.c
105
dc_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_fxp_cardbus.c
96
fxp_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_malo_cardbus.c
58
int malo_cardbus_match(struct device *parent, void *match, void *aux);
sys/dev/cardbus/if_malo_cardbus.c
78
malo_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_pgt_cardbus.c
82
pgt_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_ral_cardbus.c
144
ral_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_re_cardbus.c
85
re_cardbus_probe(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_rl_cardbus.c
115
rl_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_rtw_cardbus.c
150
rtw_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/if_xl_cardbus.c
163
xl_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/ohci_cardbus.c
78
ohci_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/puc_cardbus.c
52
puc_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/cardbus/uhci_cardbus.c
68
uhci_cardbus_match(struct device *parent, void *match, void *aux)
sys/dev/eisa/ahc_eisa.c
104
ahc_eisa_match(struct device *parent, void *match, void *aux)
sys/dev/eisa/cac_eisa.c
121
cac_eisa_match(struct device *parent, void *match, void *aux)
sys/dev/eisa/eisa.c
104
return ((*cf->cf_attach->ca_match)(parent, match, aux));
sys/dev/eisa/eisa.c
232
int match;
sys/dev/eisa/eisa.c
247
match = !strncmp(edp->id, id, 3);
sys/dev/eisa/eisa.c
249
match = !strcmp(edp->id, id);
sys/dev/eisa/eisa.c
250
if (match) {
sys/dev/eisa/eisa.c
68
eisamatch(struct device *parent, void *match, void *aux)
sys/dev/eisa/eisa.c
70
struct cfdata *cf = match;
sys/dev/eisa/eisa.c
96
eisasubmatch(struct device *parent, void *match, void *aux)
sys/dev/eisa/eisa.c
98
struct cfdata *cf = match;
sys/dev/eisa/if_ep_eisa.c
85
ep_eisa_match(struct device *parent, void *match, void *aux)
sys/dev/eisa/uha_eisa.c
75
uha_eisa_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/acrtc.c
89
acrtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ahci_fdt.c
53
ahci_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlclock.c
165
amlclock_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amldwusb.c
135
amldwusb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amliic.c
95
amliic_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlmmc.c
198
amlmmc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlpciephy.c
78
amlpciephy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlpinctrl.c
373
amlpinctrl_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlpwm.c
84
amlpwm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlpwrc.c
81
amlpwrc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlreset.c
66
amlreset_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlrng.c
57
amlrng_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlsm.c
65
amlsm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amltemp.c
88
amltemp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amluart.c
131
amluart_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/amlusbphy.c
114
amlusbphy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/axppmic.c
444
axppmic_i2c_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/axppmic.c
521
axppmic_rsb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2711_pcie.c
215
bcmpcie_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2711_rng.c
64
bcmirng_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2711_tmon.c
67
bcmtmon_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_aux.c
64
bcmaux_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_bsc.c
98
bcmbsc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_clock.c
98
bcmclock_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_dmac.c
128
bcmdmac_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_dwctwo.c
89
bcm_dwctwo_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_gpio.c
100
bcmgpio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_mbox.c
102
bcmmbox_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_rng.c
63
bcmrng_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_sdhost.c
197
bcmsdhost_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcm2835_temp.c
66
bcmtemp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcmstbgpio.c
101
bcmstbgpio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcmstbintc.c
86
bcmstbintc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcmstbpinctrl.c
125
bcmstbpinctrl_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcmstbrescal.c
69
bcmstbrescal_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bcmstbreset.c
63
bcmstbreset_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/bd718x7.c
74
bdpmic_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ccp_fdt.c
43
ccp_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/cdpcie.c
106
cdpcie_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/cdsdhc.c
86
cdsdhc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/cduart.c
188
cduart_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/com_fdt.c
95
com_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/cwfg.c
132
cwfg_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/dapmic.c
120
dapmic_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/dwdog.c
70
dwdog_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/dwiic_fdt.c
56
dwiic_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/dwmmc.c
274
dwmmc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/dwmshc.c
228
dwmshc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/dwpcie.c
311
dwpcie_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ehci_fdt.c
68
ehci_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/es8316ac.c
150
escodec_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/exrtc.c
68
exrtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/fanpwr.c
91
fanpwr_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/fusbtc.c
249
fusbtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/gfrtc.c
90
gfrtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/gpiobl.c
62
gpiobl_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/gpiocharger.c
57
gpiocharger_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/gpiokeys.c
97
gpiokeys_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/gpioleds.c
50
gpioleds_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/gpiorestart.c
54
gpiorestart_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/graphaudio.c
93
graphaudio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/hiclock.c
114
hiclock_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/hidwusb.c
54
hidwusb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/hireset.c
52
hireset_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/hitemp.c
88
hitemp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/if_bse_fdt.c
44
bse_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/if_cad.c
376
cad_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/if_fec.c
281
fec_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/if_mvpp.c
3966
int match, tid;
sys/dev/fdt/if_mvpp.c
3979
match = mvpp2_prs_tcam_data_cmp(pe, 0, swap16(tpid));
sys/dev/fdt/if_mvpp.c
3980
if (!match)
sys/dev/fdt/if_mvpp.c
4079
int match, tid;
sys/dev/fdt/if_mvpp.c
4093
match = mvpp2_prs_tcam_data_cmp(pe, 0, swap16(tpid1)) &&
sys/dev/fdt/if_mvpp.c
4095
if (!match)
sys/dev/fdt/iicmux.c
76
iicmux_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxanatop.c
141
imxanatop_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxccm.c
269
imxccm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxdog.c
67
imxdog_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxdwusb.c
55
imxdwusb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxehci.c
109
imxehci_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxesdhc.c
283
imxesdhc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxgpc.c
55
imxgpc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxgpio.c
99
imxgpio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxiic_fdt.c
48
imxiic_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxiomuxc.c
63
imxiomuxc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxpciephy.c
47
imxpciephy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxpwm.c
87
imxpwm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxrtc.c
66
imxrtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxspi.c
140
imxspi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxsrc.c
123
imxsrc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxtmu.c
89
imxtmu_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/imxuart.c
146
imxuart_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ipmi_fdt.c
39
ipmi_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/moxtet.c
68
moxtet_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mtintc.c
59
mtintc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mtrng.c
58
mtrng_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mtxhci.c
95
mtxhci_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvclock.c
70
mvclock_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvgicp.c
64
mvgicp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvgpio.c
70
mvgpio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvicu.c
102
mvicu_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mviic.c
102
mviic_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvkpcie.c
219
mvkpcie_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvpinctrl.c
137
mvpinctrl_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvrng.c
79
mvrng_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvrtc.c
73
mvrtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvspi.c
99
mvspi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvsw.c
103
mvsw_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvtemp.c
112
mvtemp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/mvuart.c
147
mvuart_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ociic.c
115
ociic_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ohci_fdt.c
64
ohci_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/pciecam.c
132
pciecam_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/pinctrl.c
65
pinctrl_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/plgpio.c
67
plgpio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/plrtc.c
87
plrtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/psci.c
81
psci_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/pwmbl.c
67
pwmbl_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/pwmfan.c
59
pwmfan_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/pwmleds.c
62
pwmleds_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/pwmreg.c
58
pwmreg_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcaoss.c
83
qcaoss_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qccpu.c
95
qccpu_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qccpucp.c
82
qccpucp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcdpc.c
95
qcdpc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcdrm.c
66
qcdrm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcdwusb.c
48
qcdwusb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcgpio_fdt.c
108
qcgpio_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qciic_fdt.c
88
qciic_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcipcc.c
97
qcipcc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcmtx.c
62
qcmtx_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcpas.c
146
qcpas_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcpdc.c
90
qcpdc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcpmic.c
66
qcpmic_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcpmicgpio.c
92
qcpmicgpio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcpon.c
63
qcpon_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcpwm.c
106
qcpwm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcrng.c
58
qcrng_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcrtc.c
67
qcrtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcscm.c
170
qcscm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcsdam.c
55
qcsdam_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcsmem.c
146
qcsmem_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcsmptp.c
127
qcsmptp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcspmi.c
186
qcspmi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qctsens.c
77
qctsens_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/qcuart_fdt.c
53
qcuart_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkanxdp.c
90
rkanxdp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkclock.c
434
rkclock_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkcomphy.c
136
rkcomphy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkdrm.c
87
rkdrm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkdwhdmi.c
113
rkdwhdmi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkdwusb.c
46
rkdwusb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkemmcphy.c
89
rkemmcphy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkgpio.c
132
rkgpio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkgrf.c
50
rkgrf_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkiic.c
109
rkiic_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkiis.c
222
rkiis_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkiovd.c
76
rkiovd_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkpcie.c
125
rkpcie_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkpciephy.c
84
rkpciephy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkpinctrl.c
158
rkpinctrl_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkpmic.c
429
rkpmic_i2c_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkpmic.c
456
rkpmic_spi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkpwm.c
77
rkpwm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkrng.c
153
rkrng_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkspi.c
137
rkspi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rktcphy.c
140
rktcphy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rktemp.c
307
rktemp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkusbdpphy.c
88
rkusbdpphy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkusbphy.c
307
rkusbphy_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/rkvop.c
197
rkvop_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/scmi.c
171
scmi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sdhc_fdt.c
126
sdhc_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sfp.c
64
sfp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/simpleamp.c
63
simpleamp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/simpleaudio.c
95
simpleaudio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/simplefb.c
116
simplefb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/simplepanel.c
73
simplepanel_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sncodec.c
117
sncodec_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ssdfb.c
184
ssdfb_i2c_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ssdfb.c
220
ssdfb_spi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxiccmu.c
122
sxiccmu_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxidog.c
79
sxidog_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sximmc.c
292
sximmc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxipio.c
220
sxipio_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxipwm.c
94
sxipwm_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxirintc.c
61
sxirintc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxirsb.c
95
sxirsb_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxirtc.c
81
sxirtc_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxisid.c
67
sxisid_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxisyscon.c
47
sxisyscon_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxitemp.c
104
sxitemp_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxits.c
80
sxits_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sxitwi.c
169
sxitwi_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/sypwr.c
62
sypwr_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/syscon.c
62
syscon_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/tascodec.c
109
tascodec_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/tcpci.c
207
tcpci_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/tipd.c
89
tipd_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/ufshci_fdt.c
45
ufshci_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/fdt/xhci_fdt.c
74
xhci_fdt_match(struct device *parent, void *match, void *aux)
sys/dev/gpio/gpio.c
70
gpio_match(struct device *parent, void *match, void *aux)
sys/dev/gpio/gpio.c
72
struct cfdata *cf = match;
sys/dev/gpio/gpio.c
79
gpio_submatch(struct device *parent, void *match, void *aux)
sys/dev/gpio/gpio.c
81
struct cfdata *cf = match;
sys/dev/gpio/gpio.c
87
return ((*cf->cf_attach->ca_match)(parent, match, aux));
sys/dev/gpio/gpiodcf.c
118
gpiodcf_match(struct device *parent, void *match, void *aux)
sys/dev/gpio/gpiodcf.c
120
struct cfdata *cf = match;
sys/dev/gpio/gpioiic.c
96
gpioiic_match(struct device *parent, void *match, void *aux)
sys/dev/gpio/gpioiic.c
98
struct cfdata *cf = match;
sys/dev/gpio/gpioow.c
82
gpioow_match(struct device *parent, void *match, void *aux)
sys/dev/gpio/gpioow.c
84
struct cfdata *cf = match;
sys/dev/gpio/gpiosim.c
66
gpiosim_match(struct device *parent, void *match, void *aux)
sys/dev/hil/hilid.c
61
hilidprobe(struct device *parent, void *match, void *aux)
sys/dev/hil/hilkbd.c
128
hilkbdprobe(struct device *parent, void *match, void *aux)
sys/dev/hil/hilms.c
82
hilmsprobe(struct device *parent, void *match, void *aux)
sys/dev/i2c/abx80x.c
93
abcrtc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ad741x.c
68
adc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adm1021.c
66
admtemp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adm1024.c
83
admlc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adm1025.c
83
admtm_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adm1026.c
99
admcts_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adm1030.c
62
admtmp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adm1031.c
67
admtt_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adt7460.c
142
adt_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/adt7462.c
89
adtfsm_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/asb100.c
129
asbtm_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/asc7611.c
97
andl_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/asc7621.c
135
adl_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/bmc150.c
73
bgw_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ds1631.c
60
maxds_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ds3231.c
69
dsxrtc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/fcu.c
71
fcu_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/fintek.c
87
fintek_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/gl518sm.c
81
glenv_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/iasuskbd.c
79
iasuskbd_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/iatp.c
234
iatp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/icc.c
55
icc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ietp.c
128
ietp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ihidev.c
103
ihidev_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ihidev.c
824
ihidev_submatch(struct device *parent, void *match, void *aux)
sys/dev/i2c/ihidev.c
827
struct cfdata *cf = match;
sys/dev/i2c/ikbd.c
82
ikbd_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ims.c
68
ims_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/imt.c
76
imt_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/ipmi_i2c.c
67
ipmi_i2c_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/isl1208.c
68
islrtc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/lis331dl.c
72
lisa_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/lm75.c
138
lmtemp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/lm78_i2c.c
43
lm_i2c_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/lm87.c
84
lmenv_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/lm93.c
143
lmn_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/maxim6690.c
74
maxtmp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/mcp794xx.c
73
mcprtc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/pca9548.c
107
pcamux_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/pca9554.c
89
pcagpio_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/sdtemp.c
55
sdtemp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/spdmem_i2c.c
76
spdmem_iic_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/thmc50.c
59
thmc_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/tmp451.c
63
titmp_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/tsl2560.c
62
tsl_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/w83793g.c
98
wbng_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/w83795g.c
104
nvt_match(struct device *parent, void *match, void *aux)
sys/dev/i2c/w83l784r.c
148
wbenv_match(struct device *parent, void *match, void *aux)
sys/dev/ic/aic79xx.c
6950
int match;
sys/dev/ic/aic79xx.c
6952
match = ((chan == channel) || (channel == ALL_CHANNELS));
sys/dev/ic/aic79xx.c
6953
if (match != 0)
sys/dev/ic/aic79xx.c
6954
match = ((targ == target) || (target == CAM_TARGET_WILDCARD));
sys/dev/ic/aic79xx.c
6955
if (match != 0)
sys/dev/ic/aic79xx.c
6956
match = ((lun == slun) || (lun == CAM_LUN_WILDCARD));
sys/dev/ic/aic79xx.c
6957
if (match != 0) {
sys/dev/ic/aic79xx.c
6963
match = (group != XPT_FC_GROUP_TMODE)
sys/dev/ic/aic79xx.c
6967
match = (group == XPT_FC_GROUP_TMODE)
sys/dev/ic/aic79xx.c
6972
match = ((tag == SCB_GET_TAG(scb)) || (tag == SCB_LIST_NULL));
sys/dev/ic/aic79xx.c
6976
return match;
sys/dev/ic/aic7xxx.c
5007
int targ, slun, match;
sys/dev/ic/aic7xxx.c
5016
match = ((chan == channel) || (channel == ALL_CHANNELS));
sys/dev/ic/aic7xxx.c
5017
if (match != 0)
sys/dev/ic/aic7xxx.c
5018
match = ((targ == target) || (target == CAM_TARGET_WILDCARD));
sys/dev/ic/aic7xxx.c
5019
if (match != 0)
sys/dev/ic/aic7xxx.c
5020
match = ((lun == slun) || (lun == CAM_LUN_WILDCARD));
sys/dev/ic/aic7xxx.c
5021
if (match != 0) {
sys/dev/ic/aic7xxx.c
5027
match = (group != XPT_FC_GROUP_TMODE)
sys/dev/ic/aic7xxx.c
5031
match = (group == XPT_FC_GROUP_TMODE)
sys/dev/ic/aic7xxx.c
5036
match = ((tag == scb->hscb->tag) || (tag == SCB_LIST_NULL));
sys/dev/ic/aic7xxx.c
5040
return match;
sys/dev/ic/dwhdmi.c
404
const uint8_t match[] = { 5, 6, 7, 10, 11, 20, 21, 22 };
sys/dev/ic/dwhdmi.c
407
for (n = 0; n < nitems(match); n++)
sys/dev/ic/dwhdmi.c
408
if (match[n] == vic)
sys/dev/ic/i82365.c
550
pcic_submatch(struct device *parent, void *match, void *aux)
sys/dev/ic/i82365.c
552
struct cfdata *cf = match;
sys/dev/ic/pckbc.c
243
pckbc_submatch_locators(struct device *parent, void *match, void *aux)
sys/dev/ic/pckbc.c
245
struct cfdata *cf = match;
sys/dev/ic/pckbc.c
255
pckbc_submatch(struct device *parent, void *match, void *aux)
sys/dev/ic/pckbc.c
257
struct cfdata *cf = match;
sys/dev/ic/pckbc.c
259
if (pckbc_submatch_locators(parent, match, aux) == 0)
sys/dev/ic/psp.c
111
psp_match(struct device *parent, void *match, void *aux)
sys/dev/ic/psp.c
966
pspsubmatch(struct device *parent, void *match, void *aux)
sys/dev/ic/psp.c
969
struct cfdata *cf = match;
sys/dev/ic/qla.c
1492
qla_get_port_name_list(struct qla_softc *sc, u_int32_t match)
sys/dev/ic/qla.c
1500
if (match & QLA_LOCATION_FABRIC)
sys/dev/ic/qla.c
1540
if (match & loc) {
sys/dev/ic/tcic2.c
524
tcic_submatch(struct device *parent, void *match, void *aux)
sys/dev/ic/tcic2.c
526
struct cfdata *cf = match;
sys/dev/ipmi.c
1885
ipmi_match(struct device *parent, void *match, void *aux)
sys/dev/ipmi.c
1889
struct cfdata *cf = match;
sys/dev/isa/aic_isa.c
91
aic_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/aic_isapnp.c
66
aic_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/aps.c
240
aps_match(struct device *parent, void *match, void *aux)
sys/dev/isa/com_commulti.c
83
com_commulti_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/com_commulti.c
86
struct cfdata *cf = match;
sys/dev/isa/com_isa.c
83
com_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/com_isapnp.c
83
com_isapnp_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/cy_isa.c
60
cy_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/cy_isa.c
62
int card = ((struct device *)match)->dv_unit;
sys/dev/isa/ess_isapnp.c
61
ess_isapnp_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/fd.c
184
fdprobe(struct device *parent, void *match, void *aux)
sys/dev/isa/fd.c
187
struct cfdata *cf = match;
sys/dev/isa/fdc.c
97
fdcprobe(struct device *parent, void *match, void *aux)
sys/dev/isa/fins.c
211
fins_match(struct device *parent, void *match, void *aux)
sys/dev/isa/gscsio.c
115
gscsio_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/gus_isa.c
133
gus_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/gus_isapnp.c
132
gus_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/i82365_isa.c
87
pcic_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/i82365_isapnp.c
93
pcic_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_an_isapnp.c
61
an_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ec.c
131
ec_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ef_isapnp.c
136
ef_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_eg.c
280
egprobe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_eg.c
282
struct eg_softc *sc = match;
sys/dev/isa/if_el.c
100
elprobe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_el.c
102
struct el_softc *sc = match;
sys/dev/isa/if_ep_isa.c
131
ep_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ep_isapnp.c
90
ep_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ex.c
169
ex_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ex.c
171
struct ex_softc *sc = match;
sys/dev/isa/if_ie.c
356
ieprobe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ie.c
358
struct ie_softc *sc = match;
sys/dev/isa/if_lc_isa.c
169
lemac_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_lc_isa.c
172
struct cfdata *cf = ((struct device *)match)->dv_cfdata;
sys/dev/isa/if_le_isa.c
85
le_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_le_isa.c
87
struct le_softc *lesc = match;
sys/dev/isa/if_le_isapnp.c
77
le_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ne_isa.c
84
ne_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_ne_isa.c
86
struct ne_isa_softc *isc = match;
sys/dev/isa/if_ne_isapnp.c
86
ne_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_sm_isa.c
82
sm_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_we.c
181
we_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/if_we.c
183
struct cfdata *cf = ((struct device *)match)->dv_cfdata;
sys/dev/isa/if_we.c
189
we_match(struct device *parent, void *match, void *aux)
sys/dev/isa/if_we.c
192
struct cfdata *cf = match;
sys/dev/isa/isa.c
198
isascan(struct device *parent, void *match)
sys/dev/isa/isa.c
201
struct device *dev = match;
sys/dev/isa/isa.c
92
isamatch(struct device *parent, void *match, void *aux)
sys/dev/isa/isa.c
94
struct cfdata *cf = match;
sys/dev/isa/isadma.c
96
isadmamatch(struct device *parent, void *match, void *aux)
sys/dev/isa/isagpio.c
72
isagpio_match(struct device *parent, void *match, void *aux)
sys/dev/isa/isapnp.c
539
isapnp_com_submatch(struct device *parent, void *match, void *aux)
sys/dev/isa/isapnp.c
541
struct cfdata *cf = match;
sys/dev/isa/isapnp.c
553
return ((*cf->cf_attach->ca_match)(parent, match, ipa));
sys/dev/isa/isapnp.c
562
isapnp_submatch(struct device *parent, void *match, void *aux)
sys/dev/isa/isapnp.c
564
struct cfdata *cf = match;
sys/dev/isa/isapnp.c
588
return ((*cf->cf_attach->ca_match)(parent, match, ipa));
sys/dev/isa/isapnp.c
800
isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/isapnp.c
834
void *match;
sys/dev/isa/isapnp.c
898
if ((match = config_search(isapnp_submatch,
sys/dev/isa/isapnp.c
900
config_attach(self, match, lpa, isapnp_print);
sys/dev/isa/isapnp.c
901
else if ((match = config_search(isapnp_com_submatch,
sys/dev/isa/isapnp.c
903
config_attach(self, match, lpa, isapnp_print);
sys/dev/isa/isavar.h
385
void isascan(struct device *parent, void *match);
sys/dev/isa/it.c
131
it_match(struct device *parent, void *match, void *aux)
sys/dev/isa/lm78_isa.c
115
lm_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/lm78_isa.c
68
lm_wbsio_match(struct device *parent, void *match, void *aux)
sys/dev/isa/lpt_isa.c
96
lpt_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/mpu_isa.c
117
mpu_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/mpu_isapnp.c
39
mpu_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/nsclpcsio_isa.c
246
nsclpcsio_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/pas.c
238
pasprobe(struct device *parent, void *match, void *aux)
sys/dev/isa/pas.c
240
struct pas_softc *sc = match;
sys/dev/isa/pcdisplay.c
212
pcdisplay_match(struct device *parent, void *match, void *aux)
sys/dev/isa/pckbc_isa.c
52
pckbc_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/pcppi.c
85
pcppi_match(struct device *parent, void *match, void *aux)
sys/dev/isa/sb_isa.c
76
sb_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/sb_isa.c
81
sc->sc_dev.dv_cfdata = ((struct device *)match)->dv_cfdata;
sys/dev/isa/sb_isapnp.c
72
sb_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/sch311x.c
224
schsio_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/skgpio.c
84
skgpio_match(struct device *parent, void *match, void *aux)
sys/dev/isa/spkr.c
388
spkrprobe(struct device *parent, void *match, void *aux)
sys/dev/isa/tcic2_isa.c
140
tcic_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/uguru.c
656
uguru_match(struct device *parent, void *match, void *aux)
sys/dev/isa/uha_isa.c
74
uha_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/vga_isa.c
64
vga_isa_match(struct device *parent, void *match, void *aux)
sys/dev/isa/viasio.c
143
viasio_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/wbsio.c
88
wbsio_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/wdc_isa.c
81
wdc_isa_probe(struct device *parent, void *match, void *aux)
sys/dev/isa/wdc_isa.c
85
struct cfdata *cf = ((struct device *)match)->dv_cfdata;
sys/dev/isa/wdc_isapnp.c
65
wdc_isapnp_match(struct device *parent, void *match, void *aux)
sys/dev/isa/wds.c
221
wdsprobe(struct device *parent, void *match, void *aux)
sys/dev/midi.c
490
midiprobe(struct device *parent, void *match, void *aux)
sys/dev/mii/acphy.c
90
acphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/amphy.c
93
amphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/atphy.c
105
atphy_match(struct device *parent, void *match, void *aux)
sys/dev/mii/bmtphy.c
83
bmtphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/brgphy.c
196
brgphy_probe(struct device *parent, void *match, void *aux)
sys/dev/mii/brswphy.c
184
brswphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/ciphy.c
99
ciphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/dcphy.c
105
dcphy_match(struct device *parent, void *match, void *aux)
sys/dev/mii/eephy.c
135
eephy_match(struct device *parent, void *match, void *aux)
sys/dev/mii/etphy.c
141
etphy_match(struct device *parent, void *match, void *aux)
sys/dev/mii/exphy.c
94
exphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/gentbi.c
99
gentbimatch(struct device *parent, void *match, void *aux)
sys/dev/mii/icsphy.c
112
icsphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/inphy.c
112
inphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/iophy.c
107
iophymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/ipgphy.c
90
ipgphy_probe(struct device *parent, void *match, void *aux)
sys/dev/mii/jmphy.c
81
jmphy_match(struct device *parent, void *match, void *aux)
sys/dev/mii/luphy.c
83
luphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/lxtphy.c
113
lxtphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/mii.c
194
mii_submatch(struct device *parent, void *match, void *aux)
sys/dev/mii/mii.c
196
struct cfdata *cf = match;
sys/dev/mii/mlphy.c
150
mlphy_probe(struct device *parent, void *match, void *aux)
sys/dev/mii/mtdphy.c
74
mtdphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/nsgphy.c
99
nsgphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/nsphy.c
107
nsphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/nsphyter.c
111
nsphytermatch(struct device *parent, void *match, void *aux)
sys/dev/mii/qsphy.c
106
qsphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/rdcphy.c
121
rdcphy_match(struct device *parent, void *match, void *aux)
sys/dev/mii/rgephy.c
101
rgephymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/rlphy.c
88
rlphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/sqphy.c
109
sqphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/tlphy.c
122
tlphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/tqphy.c
106
tqphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/txphy.c
74
txphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/ukphy.c
93
ukphymatch(struct device *parent, void *match, void *aux)
sys/dev/mii/urlphy.c
80
urlphy_match(struct device *parent, void *match, void *aux)
sys/dev/mii/xmphy.c
89
xmphy_probe(struct device *parent, void *match, void *aux)
sys/dev/mii/ytphy.c
112
ytphy_match(struct device *parent, void *match, void *aux)
sys/dev/onewire/onewire.c
87
onewire_match(struct device *parent, void *match, void *aux)
sys/dev/onewire/onewire.c
89
struct cfdata *cf = match;
sys/dev/onewire/owctr.c
90
owctr_match(struct device *parent, void *match, void *aux)
sys/dev/onewire/owid.c
66
owid_match(struct device *parent, void *match, void *aux)
sys/dev/onewire/owsbm.c
99
owsbm_match(struct device *parent, void *match, void *aux)
sys/dev/onewire/owtemp.c
86
owtemp_match(struct device *parent, void *match, void *aux)
sys/dev/pci/aac_pci.c
201
aac_pci_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/adv_pci.c
103
adv_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/adw_pci.c
89
adw_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/agp.c
98
agp_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/agp_ali.c
84
agp_ali_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/agp_amd.c
155
agp_amd_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/agp_apple.c
70
agp_apple_match(struct device *parent, void *match, void *aux)
sys/dev/pci/agp_i810.c
213
agp_i810_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/agp_intel.c
96
agp_intel_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/agp_sis.c
82
agp_sis_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/agp_via.c
94
agp_via_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/ahc_pci.c
680
ahc_pci_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/ahci_pci.c
307
ahci_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ahd_pci.c
325
ahd_pci_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/alipm.c
127
alipm_match(struct device *parent, void *match, void *aux)
sys/dev/pci/amas.c
141
amas_match(struct device *parent, void *match, void *aux)
sys/dev/pci/amdiic.c
127
amdiic_match(struct device *parent, void *match, void *aux)
sys/dev/pci/amdpcib.c
99
amdpcib_match(struct device *parent, void *match, void *aux)
sys/dev/pci/amdpm.c
204
amdpm_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ami_pci.c
157
ami_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/arc.c
760
arc_match(struct device *parent, void *match, void *aux)
sys/dev/pci/auacer.c
202
auacer_match(struct device *parent, void *match, void *aux)
sys/dev/pci/auglx.c
273
auglx_match(struct device *parent, void *match, void *aux)
sys/dev/pci/auich.c
343
auich_match(struct device *parent, void *match, void *aux)
sys/dev/pci/auixp.c
900
auixp_match(struct device *dev, void *match, void *aux)
sys/dev/pci/autri.c
439
autri_match(struct device *parent, void *match, void *aux)
sys/dev/pci/auvia.c
213
auvia_match(struct device *parent, void *match, void *aux)
sys/dev/pci/azalia.c
519
azalia_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/berkwdt.c
171
berkwdt_match(struct device *parent, void *match, void *aux)
sys/dev/pci/bktr/bktr_os.c
134
bktr_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/cac_pci.c
145
cac_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ccp_pci.c
57
ccp_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ciss_pci.c
124
ciss_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/cmpci.c
327
cmpci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/com_pci.c
71
com_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/cs4281.c
237
cs4281_match(struct device *parent, void *match, void *aux)
sys/dev/pci/cy_pci.c
83
cy_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/cz.c
269
cz_match(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/amd/amdgpu/amdgpu_drv.c
3288
amdgpu_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/apple/apldcp.c
54
apldcp_match(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/apple/apldrm.c
74
apldrm_match(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/apple/apple_drv.c
600
struct component_match *match = NULL;
sys/dev/pci/drm/apple/apple_drv.c
604
num_dcp = add_dcp_components(mdev, &match);
sys/dev/pci/drm/apple/apple_drv.c
608
return component_master_add_with_match(mdev, &apple_drm_ops, match);
sys/dev/pci/drm/drm_drv.c
1449
drmsubmatch(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/drm_drv.c
1452
struct cfdata *cf = match;
sys/dev/pci/drm/drm_drv.c
1456
return ((*cf->cf_attach->ca_match)(parent, match, aux));
sys/dev/pci/drm/drm_drv.c
1474
drm_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/drm_drv.c
1476
struct cfdata *cf = match;
sys/dev/pci/drm/drm_linux.c
3572
struct component_match_entry match[4];
sys/dev/pci/drm/drm_linux.c
3578
const struct component_master_ops *ops, struct component_match *match)
sys/dev/pci/drm/drm_linux.c
3585
for (i = 0; i < match->nmatches; i++) {
sys/dev/pci/drm/drm_linux.c
3586
struct component_match_entry *m = &match->match[i];
sys/dev/pci/drm/drm_linux.c
3922
int child, match;
sys/dev/pci/drm/drm_linux.c
3926
match = find_matching_node(child, id);
sys/dev/pci/drm/drm_linux.c
3927
if (match)
sys/dev/pci/drm/drm_linux.c
3928
return match;
sys/dev/pci/drm/drm_linux.c
3943
int match;
sys/dev/pci/drm/drm_linux.c
3948
match = find_matching_node(node, id);
sys/dev/pci/drm/drm_linux.c
3949
if (match)
sys/dev/pci/drm/drm_linux.c
3950
return (struct device_node *)(uintptr_t)match;
sys/dev/pci/drm/drm_linux.c
4048
struct component_match *match = *matchptr;
sys/dev/pci/drm/drm_linux.c
4050
if (match == NULL) {
sys/dev/pci/drm/drm_linux.c
4051
match = malloc(sizeof(struct component_match),
sys/dev/pci/drm/drm_linux.c
4053
*matchptr = match;
sys/dev/pci/drm/drm_linux.c
4056
KASSERT(match->nmatches < nitems(match->match));
sys/dev/pci/drm/drm_linux.c
4057
match->match[match->nmatches].compare = compare;
sys/dev/pci/drm/drm_linux.c
4058
match->match[match->nmatches].data = np;
sys/dev/pci/drm/drm_linux.c
4059
match->nmatches++;
sys/dev/pci/drm/drm_mipi_dsi.c
99
.match = mipi_dsi_device_match,
sys/dev/pci/drm/drm_panel_orientation_quirks.c
566
const struct dmi_system_id *match;
sys/dev/pci/drm/drm_panel_orientation_quirks.c
571
for (match = dmi_first_match(orientation_data);
sys/dev/pci/drm/drm_panel_orientation_quirks.c
572
match;
sys/dev/pci/drm/drm_panel_orientation_quirks.c
573
match = dmi_first_match(match + 1)) {
sys/dev/pci/drm/drm_panel_orientation_quirks.c
574
data = match->driver_data;
sys/dev/pci/drm/drm_privacy_screen.c
123
int match, best = -1;
sys/dev/pci/drm/drm_privacy_screen.c
144
match = 0;
sys/dev/pci/drm/drm_privacy_screen.c
150
match += 2;
sys/dev/pci/drm/drm_privacy_screen.c
157
match += 1;
sys/dev/pci/drm/drm_privacy_screen.c
160
if (match > best) {
sys/dev/pci/drm/drm_privacy_screen.c
162
best = match;
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
1364
const struct __guc_mmio_reg_descr_group *match;
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
1372
match = guc_capture_get_one_list(reglists, owner, type, id);
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
1373
if (!match)
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
1376
for (j = 0; j < match->num_regs; ++j) {
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
1377
if (offset == match->list[j].reg.reg)
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
1378
return match->list[j].regname;
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
418
const struct __guc_mmio_reg_descr_group *match;
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
424
match = guc_capture_get_one_list(reglists, owner, type, classid);
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
425
if (!match)
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
428
for (i = 0; i < num_entries && i < match->num_regs; ++i) {
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
429
ptr[i].offset = match->list[i].reg.reg;
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
431
ptr[i].flags = match->list[i].flags;
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
432
ptr[i].mask = match->list[i].mask;
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
437
for (i = match->num_regs, j = 0; i < num_entries &&
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
438
i < (match->num_regs + matchext->num_regs) &&
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
455
const struct __guc_mmio_reg_descr_group *match;
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
459
match = guc_capture_get_one_list(gc->reglists, owner, type, classid);
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
460
if (!match)
sys/dev/pci/drm/i915/gt/uc/intel_guc_capture.c
463
num_regs = match->num_regs;
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
5196
bool match = intel_guc_capture_is_matching_engine(gt, ce, e);
sys/dev/pci/drm/i915/gt/uc/intel_guc_submission.c
5198
if (match) {
sys/dev/pci/drm/i915/i915_active.c
789
goto match;
sys/dev/pci/drm/i915/i915_active.c
799
goto match;
sys/dev/pci/drm/i915/i915_active.c
826
goto match;
sys/dev/pci/drm/i915/i915_active.c
839
goto match;
sys/dev/pci/drm/i915/i915_active.c
844
match:
sys/dev/pci/drm/i915/i915_driver.c
1897
intagpsubmatch(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/i915/i915_driver.c
1900
struct cfdata *cf = match;
sys/dev/pci/drm/i915/i915_driver.c
1904
return ((*cf->cf_attach->ca_match)(parent, match, aux));
sys/dev/pci/drm/i915/i915_driver.c
2219
inteldrm_match(struct device *parent, void *match, void *aux)
sys/dev/pci/drm/radeon/mkregtable.c
193
regmatch_t match[4];
sys/dev/pci/drm/radeon/mkregtable.c
239
r = regexec(&mask_rex, buf, 4, match, 0);
sys/dev/pci/drm/radeon/mkregtable.c
248
buf[match[0].rm_eo] = 0;
sys/dev/pci/drm/radeon/mkregtable.c
249
buf[match[1].rm_eo] = 0;
sys/dev/pci/drm/radeon/mkregtable.c
250
buf[match[2].rm_eo] = 0;
sys/dev/pci/drm/radeon/mkregtable.c
251
o = strtol(&buf[match[1].rm_so], NULL, 16);
sys/dev/pci/drm/radeon/radeon_drv.c
700
radeondrm_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/dwiic_pci.c
205
dwiic_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/eap.c
246
eap_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ehci_pci.c
87
ehci_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/emuxki.c
402
emuxki_match(struct device *parent, void *match, void *aux)
sys/dev/pci/envy.c
1692
envymatch(struct device *parent, void *match, void *aux)
sys/dev/pci/esa.c
903
esa_match(struct device *dev, void *match, void *aux)
sys/dev/pci/eso.c
173
eso_match(struct device *parent, void *match, void *aux)
sys/dev/pci/fms.c
122
fms_match(struct device *parent, void *match, void *aux)
sys/dev/pci/gcu.c
49
gcu_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/gdt_pci.c
148
gdt_pci_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/glxpcib.c
259
glxpcib_match(struct device *parent, void *match, void *aux)
sys/dev/pci/i82365_pci.c
85
pcic_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ichiic.c
150
ichiic_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ichwdt.c
88
ichwdt_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_acx_pci.c
89
acx_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_age.c
125
age_match(struct device *dev, void *match, void *aux)
sys/dev/pci/if_alc.c
531
alc_match(struct device *dev, void *match, void *aux)
sys/dev/pci/if_ale.c
261
ale_match(struct device *dev, void *match, void *aux)
sys/dev/pci/if_an_pci.c
98
an_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_aq_pci.c
1242
aq_match(struct device *dev, void *match, void *aux)
sys/dev/pci/if_ath_pci.c
92
ath_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_athn_pci.c
99
athn_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_atw_pci.c
93
atw_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_bce.c
176
bce_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_bge.c
2580
bge_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_bnx.c
412
bnx_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_bnxt.c
514
bnxt_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_bwfm_pci.c
350
bwfm_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_bwi_pci.c
90
bwi_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_dc_pci.c
120
dc_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_de.c
118
int tulip_probe(struct device *parent, void *match, void *aux);
sys/dev/pci/if_de.c
4328
tulip_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_em.c
358
em_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_em_hw.c
6016
boolean_t match = FALSE;
sys/dev/pci/if_em_hw.c
6035
match = TRUE;
sys/dev/pci/if_em_hw.c
6039
match = TRUE;
sys/dev/pci/if_em_hw.c
6047
match = TRUE;
sys/dev/pci/if_em_hw.c
6054
match = TRUE;
sys/dev/pci/if_em_hw.c
6058
match = TRUE;
sys/dev/pci/if_em_hw.c
6062
match = TRUE;
sys/dev/pci/if_em_hw.c
6067
match = TRUE;
sys/dev/pci/if_em_hw.c
6069
match = TRUE;
sys/dev/pci/if_em_hw.c
6071
match = TRUE;
sys/dev/pci/if_em_hw.c
6093
match = TRUE;
sys/dev/pci/if_em_hw.c
6098
match = TRUE;
sys/dev/pci/if_em_hw.c
6106
match = TRUE;
sys/dev/pci/if_em_hw.c
6108
match = TRUE;
sys/dev/pci/if_em_hw.c
6110
match = TRUE;
sys/dev/pci/if_em_hw.c
6112
match = TRUE;
sys/dev/pci/if_em_hw.c
6114
match = TRUE;
sys/dev/pci/if_em_hw.c
6116
match = TRUE;
sys/dev/pci/if_em_hw.c
6118
match = TRUE;
sys/dev/pci/if_em_hw.c
6120
match = TRUE;
sys/dev/pci/if_em_hw.c
6128
match = TRUE;
sys/dev/pci/if_em_hw.c
6132
match = TRUE;
sys/dev/pci/if_em_hw.c
6134
match = TRUE;
sys/dev/pci/if_em_hw.c
6142
if ((match) && (phy_init_status == E1000_SUCCESS)) {
sys/dev/pci/if_ep_pci.c
79
ep_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_epic_pci.c
117
epic_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_et.c
166
et_match(struct device *dev, void *match, void *aux)
sys/dev/pci/if_fxp_pci.c
130
fxp_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_iavf.c
827
iavf_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ice.c
153
ice_match(struct device *parent, ice_match_t match __unused, void *aux)
sys/dev/pci/if_ice.c
15519
bool match = false;
sys/dev/pci/if_ice.c
15525
match = true;
sys/dev/pci/if_ice.c
15530
return match;
sys/dev/pci/if_ice.c
24283
ice_for_each_set_bit(i, prof->segs[prof->segs_cnt - 1].match,
sys/dev/pci/if_ice.c
25041
ice_declare_bitmap(match, ICE_FLOW_FIELD_IDX_MAX);
sys/dev/pci/if_ice.c
25044
ice_cp_bitmap(match, params->prof->segs[i].match,
sys/dev/pci/if_ice.c
25046
ice_for_each_set_bit(j, match, ICE_FLOW_FIELD_IDX_MAX) {
sys/dev/pci/if_ice.c
25050
ice_clear_bit(j, match);
sys/dev/pci/if_ice.c
25757
ice_set_bit(fld, seg->match);
sys/dev/pci/if_ice.c
25901
(ice_cmp_bitmap(segs[i].match,
sys/dev/pci/if_ice.c
25902
p->segs[i].match,
sys/dev/pci/if_ice.c
25938
ice_for_each_set_bit(i, prof->segs[prof->segs_cnt - 1].match,
sys/dev/pci/if_icevar.h
2962
ice_declare_bitmap(match, ICE_FLOW_FIELD_IDX_MAX);
sys/dev/pci/if_icevar.h
4281
ice_bit_ff_at(ice_bitstr_t *bitstr, size_t start, size_t nbits, int match)
sys/dev/pci/if_icevar.h
4294
mask = match ? 0 : ICE_BITSTR_MASK;
sys/dev/pci/if_icevar.h
4312
size_t size, int match)
sys/dev/pci/if_icevar.h
4321
mask = match ? ICE_BITSTR_MASK : 0;
sys/dev/pci/if_igc.c
178
igc_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ipw.c
138
ipw_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_iwi.c
143
iwi_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_iwm.c
11633
iwm_match(struct device *parent, iwm_match_t match __unused, void *aux)
sys/dev/pci/if_iwn.c
322
iwn_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_iwx.c
11552
iwx_match(struct device *parent, iwx_match_t match __unused, void *aux)
sys/dev/pci/if_ix.c
224
ixgbe_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ixgb.c
148
ixgb_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ixl.c
1630
ixl_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ixv.c
151
ixv_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_jme.c
354
jme_match(struct device *dev, void *match, void *aux)
sys/dev/pci/if_jme.c
404
int match;
sys/dev/pci/if_jme.c
413
match = 0;
sys/dev/pci/if_jme.c
427
match++;
sys/dev/pci/if_jme.c
435
} while (match != ETHER_ADDR_LEN && offset < JME_EEPROM_END);
sys/dev/pci/if_jme.c
437
if (match == ETHER_ADDR_LEN)
sys/dev/pci/if_lge.c
368
lge_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_lii.c
193
lii_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_malo_pci.c
79
malo_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_mcx.c
2733
mcx_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_mcx.c
5776
int start, int size, int match_enable, struct mcx_flow_match *match)
sys/dev/pci/if_mcx.c
5809
memcpy(&mbin->cmd_match_criteria, match, sizeof(*match));
sys/dev/pci/if_msk.c
738
mskc_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_msk.c
919
msk_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_mtd_pci.c
68
mtd_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_mwx.c
1170
mwx_match(struct device *parent, void *match __unused, void *aux)
sys/dev/pci/if_myx.c
257
myx_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ne_pci.c
151
ne_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_nep.c
523
nep_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_nfe.c
154
nfe_match(struct device *dev, void *match, void *aux)
sys/dev/pci/if_ngbe.c
226
ngbe_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_nge.c
651
nge_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_nxe.c
853
nxe_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_oce.c
510
oce_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_pcn.c
537
pcn_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_pgt_pci.c
75
pgt_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_qwx_pci.c
528
qwx_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_qwz_pci.c
506
qwz_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ral_pci.c
144
ral_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_re_pci.c
92
re_pci_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_rge.c
170
rge_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_rl_pci.c
101
rl_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_rtw_pci.c
105
rtw_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_rtwn.c
294
rtwn_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_se.c
509
se_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_sf_pci.c
79
sf_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_sis.c
952
sis_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_sk.c
745
skc_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_sk.c
824
sk_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ste.c
800
ste_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_stge.c
143
stge_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_tht.c
665
thtc_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_tht.c
739
tht_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_ti_pci.c
109
ti_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_tl.c
1772
tl_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_txp.c
137
txp_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_vge.c
556
vge_probe(struct device *dev, void *match, void *aux)
sys/dev/pci/if_vic.c
350
vic_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_vmx.c
249
vmxnet3_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_vr.c
454
vr_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_vte.c
243
vte_match(struct device *dev, void *match, void *aux)
sys/dev/pci/if_wb.c
655
wb_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/if_wi_pci.c
133
wi_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_wpi.c
165
wpi_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_xge.c
356
xge_match(struct device *parent, void *match, void *aux)
sys/dev/pci/if_xl_pci.c
123
xl_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/iha_pci.c
63
iha_pci_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/iosf_pci.c
86
iosf_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ips.c
568
ips_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ispi_pci.c
51
ispi_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/itherm.c
115
itherm_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/jmb.c
91
jmb_match(struct device *parent, void *match, void *aux)
sys/dev/pci/kate.c
93
kate_match(struct device *parent, void *match, void *aux)
sys/dev/pci/km.c
81
km_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ksmn.c
114
ksmn_match(struct device *parent, void *match, void *aux)
sys/dev/pci/maestro.c
578
maestro_match(struct device *parent, void *match, void *aux)
sys/dev/pci/mbg.c
167
mbg_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/mfi_pci.c
91
mfi_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/mfii.c
633
mfii_match(struct device *parent, void *match, void *aux)
sys/dev/pci/mmuagp.c
133
mmuagp_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/mpi_pci.c
89
mpi_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/mpii.c
451
mpii_match(struct device *parent, void *match, void *aux)
sys/dev/pci/neo.c
605
neo_match(struct device *parent, void *match, void *aux)
sys/dev/pci/nhi.c
193
nhi_match(struct device *parent, void *match, void *aux)
sys/dev/pci/nviic.c
132
nviic_match(struct device *parent, void *match, void *aux)
sys/dev/pci/nvme_pci.c
59
nvme_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ohci_pci.c
75
ohci_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/pccbb.c
219
pcicbbmatch(struct device *parent, void *match, void *aux)
sys/dev/pci/pchtemp.c
74
pchtemp_match(struct device *parent, void *match, void *aux)
sys/dev/pci/pci.c
143
pcimatch(struct device *parent, void *match, void *aux)
sys/dev/pci/pci.c
145
struct cfdata *cf = match;
sys/dev/pci/pci.c
397
pcisubmatch(struct device *parent, void *match, void *aux)
sys/dev/pci/pci.c
399
struct cfdata *cf = match;
sys/dev/pci/pci.c
409
return ((*cf->cf_attach->ca_match)(parent, match, aux));
sys/dev/pci/pci.c
414
int (*match)(struct pci_attach_args *), struct pci_attach_args *pap)
sys/dev/pci/pci.c
519
if (match != NULL) {
sys/dev/pci/pci.c
520
ret = (*match)(&pa);
sys/dev/pci/pci.c
723
int (*match)(struct pci_attach_args *))
sys/dev/pci/pci.c
733
match, pa) != 0)
sys/dev/pci/pci.c
820
int (*match)(struct pci_attach_args *), struct pci_attach_args *pap)
sys/dev/pci/pci.c
877
ret = pci_probe_device(sc, tag, match, pap);
sys/dev/pci/pci.c
878
if (match != NULL && ret != 0)
sys/dev/pci/pciide.c
1450
pciide_match(struct device *parent, void *match, void *aux)
sys/dev/pci/pcivar.h
272
int (*match)(struct pci_attach_args *));
sys/dev/pci/pcscp.c
134
pcscp_match(struct device *parent, void *match, void *aux)
sys/dev/pci/piixpm.c
117
piixpm_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ppb.c
130
ppbmatch(struct device *parent, void *match, void *aux)
sys/dev/pci/puc.c
98
puc_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/pwdog.c
58
pwdog_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/qla_pci.c
76
qla_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/qle.c
331
qle_match(struct device *parent, void *match, void *aux)
sys/dev/pci/qle.c
793
qle_get_port_name_list(struct qle_softc *sc, u_int32_t match)
sys/dev/pci/qle.c
843
if (match & loc) {
sys/dev/pci/qlw_pci.c
79
qlw_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/rtsx_pci.c
47
rtsx_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/sdhc_pci.c
78
sdhc_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/sili_pci.c
92
sili_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/siop_pci.c
57
siop_pci_match( struct device *parent, void *match, void *aux)
sys/dev/pci/sv.c
221
sv_match(struct device *parent, void *match, void *aux)
sys/dev/pci/tcpcib.c
173
tcpcib_match(struct device *parent, void *match, void *aux)
sys/dev/pci/tga.c
187
tgamatch(struct device *parent, struct cfdata *match, void *aux)
sys/dev/pci/trm_pci.c
87
trm_pci_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/twe_pci.c
60
twe_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/ufshci_pci.c
54
ufshci_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/uhci_pci.c
70
uhci_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/vga_pci.c
162
vga_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/viapm.c
296
viapm_match(struct device *parent, void *match, void *aux)
sys/dev/pci/virtio_pci.c
349
virtio_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/vmwpvs.c
382
vmwpvs_match(struct device *parent, void *match, void *aux)
sys/dev/pci/wdt.c
102
wdt_probe(struct device *parent, void *match, void *aux)
sys/dev/pci/xhci_pci.c
76
xhci_pci_match(struct device *parent, void *match, void *aux)
sys/dev/pci/xspd.c
58
xspd_match(struct device *parent, void *match, void *aux)
sys/dev/pci/yds.c
517
yds_match(struct device *parent, void *match, void *aux)
sys/dev/pckbc/pckbd.c
343
pckbdprobe(struct device *parent, void *match, void *aux)
sys/dev/pckbc/pckbd.c
345
struct cfdata *cf = match;
sys/dev/pckbc/pms.c
711
pmsprobe(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/aic_pcmcia.c
83
aic_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/cfxga.c
262
cfxga_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/com_pcmcia.c
144
com_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/if_an_pcmcia.c
71
an_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/if_ep_pcmcia.c
156
ep_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/if_malo.c
141
malo_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/if_ne_pcmcia.c
589
ne_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/if_sm_pcmcia.c
102
sm_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/if_wi_pcmcia.c
359
wi_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/if_xe.c
183
xe_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/pcmcia.c
294
pcmcia_submatch(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/pcmcia.c
296
struct cfdata *cf = match;
sys/dev/pcmcia/pcmcia.c
89
pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/pcmcia/pcmcia.c
91
struct cfdata *cf = match;
sys/dev/pcmcia/wdc_pcmcia.c
198
wdc_pcmcia_match(struct device *parent, void *match, void *aux)
sys/dev/puc/com_puc.c
64
com_puc_match(struct device *parent, void *match, void *aux)
sys/dev/puc/lpt_puc.c
59
lpt_puc_probe(struct device *parent, void *match, void *aux)
sys/dev/pv/hvs.c
251
hvs_match(struct device *parent, void *match, void *aux)
sys/dev/pv/hyperv.c
264
hv_match(struct device *parent, void *match, void *aux)
sys/dev/pv/if_hvn.c
215
hvn_match(struct device *parent, void *match, void *aux)
sys/dev/pv/if_vio.c
380
vio_match(struct device *parent, void *match, void *aux)
sys/dev/pv/if_xnf.c
229
xnf_match(struct device *parent, void *match, void *aux)
sys/dev/pv/pvbus.c
120
pvbus_match(struct device *parent, void *match, void *aux)
sys/dev/pv/pvclock.c
143
pvclock_match(struct device *parent, void *match, void *aux)
sys/dev/pv/vioblk.c
157
vioblk_match(struct device *parent, void *match, void *aux)
sys/dev/pv/viocon.c
163
viocon_match(struct device *parent, void *match, void *aux)
sys/dev/pv/viogpu.c
138
viogpu_match(struct device *parent, void *match, void *aux)
sys/dev/pv/viomb.c
125
viomb_match(struct device *parent, void *match, void *aux)
sys/dev/pv/viornd.c
73
viornd_match(struct device *parent, void *match, void *aux)
sys/dev/pv/vmmci.c
79
vmmci_match(struct device *parent, void *match, void *aux)
sys/dev/pv/vmt.c
417
vmt_match(struct device *parent, void *match, void *aux)
sys/dev/pv/xbf.c
253
xbf_match(struct device *parent, void *match, void *aux)
sys/dev/pv/xen.c
130
xen_match(struct device *parent, void *match, void *aux)
sys/dev/radio.c
61
radioprobe(struct device *parent, void *match, void *aux)
sys/dev/rd.c
120
rd_match(struct device *parent, void *match, void *aux)
sys/dev/sbus/apio.c
194
lpt_apio_match(struct device *parent, void *match, void *aux)
sys/dev/sbus/apio.c
89
apio_match(struct device *parent, void *match, void *aux)
sys/dev/sbus/asio.c
197
com_asio_match(struct device *parent, void *match, void *aux)
sys/dev/sbus/asio.c
96
asio_match(struct device *parent, void *match, void *aux)
sys/dev/sbus/if_ti_sbus.c
52
ti_sbus_match(struct device *parent, void *match, void *aux)
sys/dev/sdmmc/if_bwfm_sdio.c
199
bwfm_sdio_match(struct device *parent, void *match, void *aux)
sys/dev/sdmmc/sdmmc.c
92
sdmmc_match(struct device *parent, void *match, void *aux)
sys/dev/sdmmc/sdmmc.c
94
struct cfdata *cf = match;
sys/dev/sdmmc/sdmmc_io.c
293
sdmmc_submatch(struct device *parent, void *match, void *aux)
sys/dev/sdmmc/sdmmc_io.c
295
struct cfdata *cf = match;
sys/dev/softraid.c
1778
sr_match(struct device *parent, void *match, void *aux)
sys/dev/tc/if_le_ioasic.c
93
le_ioasic_match(struct device *parent, void *match, void *aux)
sys/dev/tc/if_le_tc.c
68
le_tc_match(struct device *parent, void *match, void *aux)
sys/dev/tc/ioasic_subr.c
53
struct cfdata *match = vcf;
sys/dev/tc/ioasic_subr.c
55
return ((match->ioasiccf_offset == d->iada_offset) ||
sys/dev/tc/ioasic_subr.c
56
(match->ioasiccf_offset == IOASIC_OFFSET_UNKNOWN));
sys/dev/usb/dwc2/dwc2_params.c
1003
const struct of_device_id *match;
sys/dev/usb/dwc2/dwc2_params.c
1012
match = of_match_device(dwc2_of_match_table, hsotg->dev);
sys/dev/usb/dwc2/dwc2_params.c
1013
if (match && match->data) {
sys/dev/usb/dwc2/dwc2_params.c
1014
set_params = match->data;
sys/dev/usb/fido.c
50
fido_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_athn_usb.c
233
athn_usb_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_atu.c
1097
atu_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_aue.c
680
aue_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_axe.c
667
axe_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_axen.c
585
axen_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_bwfm_usb.c
217
bwfm_usb_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_cdce.c
120
cdce_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_cue.c
412
cue_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_kue.c
386
kue_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_mos.c
600
mos_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_mtw.c
227
mtw_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_mue.c
688
mue_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_otus.c
173
otus_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_ral.c
191
ural_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_rsu.c
190
rsu_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_rum.c
222
rum_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_run.c
517
run_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_smsc.c
942
smsc_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_uaq.c
424
uaq_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_uath.c
186
uath_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_udav.c
162
udav_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_ugl.c
189
ugl_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_umb.c
311
umb_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_upgt.c
176
upgt_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_upl.c
183
upl_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_ure.c
2078
ure_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_url.c
159
url_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_urndis.c
1330
urndis_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_urtw.c
578
urtw_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_urtwn.c
432
urtwn_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_wi_usb.c
254
wi_usb_match(struct device *parent, void *match, void *aux)
sys/dev/usb/if_zyd.c
235
zyd_match(struct device *parent, void *match, void *aux)
sys/dev/usb/moscom.c
174
moscom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uark.c
101
uark_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uaudio.c
3877
uaudio_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ubcmtp.c
374
ubcmtp_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uberry.c
65
uberry_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ubsa.c
218
ubsa_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ucc.c
54
ucc_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uchcom.c
231
uchcom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ucom.c
1307
ucomsubmatch(struct device *parent, void *match, void *aux)
sys/dev/usb/ucom.c
1310
struct cfdata *cf = match;
sys/dev/usb/ucom.c
174
ucom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ucrcom.c
52
ucrcom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ucycom.c
161
ucycom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/udcf.c
135
udcf_match(struct device *parent, void *match, void *aux)
sys/dev/usb/udl.c
275
udl_match(struct device *parent, void *match, void *aux)
sys/dev/usb/udsbr.c
111
udsbr_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uftdi.c
755
uftdi_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ugen.c
136
ugen_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ugold.c
128
ugold_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uhid.c
108
uhid_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uhidev.c
109
uhidev_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uhidpp.c
329
uhidpp_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uhub.c
99
uhub_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uipaq.c
135
uipaq_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ujoy.c
91
ujoy_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ukbd.c
193
ukbd_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ukspan.c
187
ukspan_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ulpt.c
164
ulpt_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umass.c
248
umass_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umbg.c
147
umbg_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umcs.c
174
umcs_match(struct device *dev, void *match, void *aux)
sys/dev/usb/umct.c
150
umct_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umidi.c
140
umidi_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umodem.c
216
umodem_match(struct device *parent, void *match, void *aux)
sys/dev/usb/ums.c
305
static uByte match[] = { /* a descriptor fragment, offset: 12 */
sys/dev/usb/ums.c
330
|| memcmp(&udesc[12], match, sizeof(match))
sys/dev/usb/ums.c
88
ums_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umsm.c
306
umsm_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umstc.c
75
umstc_match(struct device *parent, void *match, void *aux)
sys/dev/usb/umt.c
80
umt_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uoaklux.c
104
uoaklux_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uoakrh.c
107
uoakrh_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uoakv.c
107
uoakv_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uonerng.c
143
uonerng_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uow.c
97
uow_match(struct device *parent, void *match, void *aux)
sys/dev/usb/upd.c
148
upd_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uplcom.c
200
uplcom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/urng.c
110
urng_match(struct device *parent, void *match, void *aux)
sys/dev/usb/usb.c
135
usb_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uscom.c
70
uscom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uslcom.c
273
uslcom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uslhcom.c
110
uslhcom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/usps.c
130
usps_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uthum.c
164
uthum_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uticom.c
187
uticom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/utpms.c
263
utpms_match(struct device *parent, void *match, void *aux)
sys/dev/usb/utrh.c
89
utrh_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uts.c
117
uts_match(struct device *parent, void *match, void *aux)
sys/dev/usb/utvfu.c
855
utvfu_match(struct device *parent, void *match, void *aux)
sys/dev/usb/utwitch.c
103
utwitch_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uvideo.c
518
uvideo_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uvisor.c
205
uvisor_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uvscom.c
207
uvscom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uwacom.c
81
uwacom_match(struct device *parent, void *match, void *aux)
sys/dev/usb/uxrcom.c
109
uxrcom_match(struct device *parent, void *match, void *aux)
sys/dev/video.c
100
videoprobe(struct device *parent, void *match, void *aux)
sys/dev/video.c
581
video_submatch(struct device *parent, void *match, void *aux)
sys/dev/video.c
583
struct cfdata *cf = match;
sys/dev/vmm/vmm.c
48
vmm_probe(struct device *parent, void *match, void *aux)
sys/dev/vmm/vmm.c
54
return (vmm_probe_machdep(parent, match, aux));
sys/dev/vscsi.c
131
vscsi_match(struct device *parent, void *match, void *aux)
sys/dev/wscons/wsdisplay.c
533
wsdisplay_match(struct device *parent, void *match, void *aux)
sys/dev/wscons/wsdisplay.c
535
struct cfdata *cf = match;
sys/dev/wscons/wsdisplay.c
655
wsemuldisplaydevsubmatch(struct device *parent, void *match, void *aux)
sys/dev/wscons/wsdisplay.c
658
struct cfdata *cf = match;
sys/dev/wscons/wsdisplay.c
662
return ((*cf->cf_attach->ca_match)(parent, match, aux));
sys/dev/wscons/wskbd.c
371
wskbd_match(struct device *parent, void *match, void *aux)
sys/dev/wscons/wskbd.c
373
struct cfdata *cf = match;
sys/dev/wscons/wsmouse.c
189
wsmouse_match(struct device *parent, void *match, void *aux)
sys/dev/wscons/wstpad.c
132
struct timespec match;
sys/dev/wscons/wstpad.c
341
memcpy(&t->match, &tp->time, sizeof(struct timespec));
sys/dev/wscons/wstpad.c
343
timespecsub(&tp->time, &t->match, &ts);
sys/dev/wscons/wstpad.c
346
memcpy(&t->start, &t->match, sizeof(struct timespec));
sys/dev/wscons/wstpad.c
388
timespecsub(&t->match, &t->start, &ts);
sys/kern/subr_autoconf.c
135
void *match;
sys/kern/subr_autoconf.c
138
match = config_make_softc(m->parent, cf);
sys/kern/subr_autoconf.c
140
match = cf;
sys/kern/subr_autoconf.c
150
pri = (*m->fn)(m->parent, match, m->aux);
sys/kern/subr_autoconf.c
156
pri = (*cf->cf_attach->ca_match)(m->parent, match, m->aux);
sys/kern/subr_autoconf.c
163
if (m->indirect && m->match) {
sys/kern/subr_autoconf.c
164
cf = ((struct device *)m->match)->dv_cfdata;
sys/kern/subr_autoconf.c
165
free(m->match, M_DEVBUF, cf->cf_attach->ca_devsize);
sys/kern/subr_autoconf.c
167
m->match = match;
sys/kern/subr_autoconf.c
171
free(match, M_DEVBUF, cf->cf_attach->ca_devsize);
sys/kern/subr_autoconf.c
195
m.match = NULL;
sys/kern/subr_autoconf.c
228
if (m.match) {
sys/kern/subr_autoconf.c
230
cf = ((struct device *)m.match)->dv_cfdata;
sys/kern/subr_autoconf.c
232
cf = (struct cfdata *)m.match;
sys/kern/subr_autoconf.c
238
return (m.match);
sys/kern/subr_autoconf.c
254
void *match;
sys/kern/subr_autoconf.c
272
match = indirect?
sys/kern/subr_autoconf.c
275
(*fn)(parent, match);
sys/kern/subr_autoconf.c
293
m.match = NULL;
sys/kern/subr_autoconf.c
310
return (m.match);
sys/kern/subr_autoconf.c
327
void *match;
sys/kern/subr_autoconf.c
329
if ((match = config_search(submatch, parent, aux)) != NULL)
sys/kern/subr_autoconf.c
330
return (config_attach(parent, match, aux, print));
sys/kern/subr_autoconf.c
342
void *match;
sys/kern/subr_autoconf.c
344
if ((match = config_rootsearch((cfmatch_t)NULL, rootname, aux)) != NULL)
sys/kern/subr_autoconf.c
345
return (config_attach(ROOT, match, aux, (cfprint_t)NULL));
sys/kern/subr_autoconf.c
354
config_attach(struct device *parent, void *match, void *aux, cfprint_t print)
sys/kern/subr_autoconf.c
369
dev = match;
sys/kern/subr_autoconf.c
372
cf = match;
sys/kern/subr_autoconf.c
74
void *match, *aux;
sys/lib/libz/deflate.c
1388
Bytef *match; /* matched string */
sys/lib/libz/deflate.c
1432
match = s->window + cur_match;
sys/lib/libz/deflate.c
1446
if (*(ushf*)(match + best_len - 1) != scan_end ||
sys/lib/libz/deflate.c
1447
*(ushf*)match != scan_start) continue;
sys/lib/libz/deflate.c
1458
Assert(scan[2] == match[2], "scan[2]?");
sys/lib/libz/deflate.c
1459
scan++, match++;
sys/lib/libz/deflate.c
1461
} while (*(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
sys/lib/libz/deflate.c
1462
*(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
sys/lib/libz/deflate.c
1463
*(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
sys/lib/libz/deflate.c
1464
*(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
sys/lib/libz/deflate.c
1471
if (*scan == *match) scan++;
sys/lib/libz/deflate.c
1478
if (match[best_len] != scan_end ||
sys/lib/libz/deflate.c
1479
match[best_len - 1] != scan_end1 ||
sys/lib/libz/deflate.c
1480
*match != *scan ||
sys/lib/libz/deflate.c
1481
*++match != scan[1]) continue;
sys/lib/libz/deflate.c
1489
scan += 2, match++;
sys/lib/libz/deflate.c
1490
Assert(*scan == *match, "match[2]?");
sys/lib/libz/deflate.c
1496
} while (*++scan == *++match && *++scan == *++match &&
sys/lib/libz/deflate.c
1497
*++scan == *++match && *++scan == *++match &&
sys/lib/libz/deflate.c
1498
*++scan == *++match && *++scan == *++match &&
sys/lib/libz/deflate.c
1499
*++scan == *++match && *++scan == *++match &&
sys/lib/libz/deflate.c
1535
Bytef *match; /* matched string */
sys/lib/libz/deflate.c
1549
match = s->window + cur_match;
sys/lib/libz/deflate.c
1553
if (match[0] != scan[0] || match[1] != scan[1]) return MIN_MATCH-1;
sys/lib/libz/deflate.c
1561
scan += 2, match += 2;
sys/lib/libz/deflate.c
1562
Assert(*scan == *match, "match[2]?");
sys/lib/libz/deflate.c
1568
} while (*++scan == *++match && *++scan == *++match &&
sys/lib/libz/deflate.c
1569
*++scan == *++match && *++scan == *++match &&
sys/lib/libz/deflate.c
1570
*++scan == *++match && *++scan == *++match &&
sys/lib/libz/deflate.c
1571
*++scan == *++match && *++scan == *++match &&
sys/lib/libz/deflate.c
1594
local void check_match(deflate_state *s, IPos start, IPos match, int length) {
sys/lib/libz/deflate.c
1596
Bytef *back = s->window + (int)match, *here = s->window + start;
sys/lib/libz/deflate.c
1598
if (match == (IPos)-1) {
sys/lib/libz/deflate.c
1607
start, (int)match, length);
sys/lib/libz/deflate.c
1614
fprintf(stderr,"\\[%d,%d]", start - match, length);
sys/lib/libz/deflate.c
1619
# define check_match(s, start, match, length)
sys/lib/libz/inftrees.c
190
match = 20;
sys/lib/libz/inftrees.c
195
match = 257;
sys/lib/libz/inftrees.c
222
if (work[sym] + 1U < match) {
sys/lib/libz/inftrees.c
226
else if (work[sym] >= match) {
sys/lib/libz/inftrees.c
227
here.op = (unsigned char)(extra[work[sym] - match]);
sys/lib/libz/inftrees.c
228
here.val = base[work[sym] - match];
sys/lib/libz/inftrees.c
64
unsigned match = 0; /* use base and extra for symbol >= match */
sys/net/if_media.c
168
struct ifmedia_entry *match;
sys/net/if_media.c
171
match = ifmedia_get(ifm, target, ifm->ifm_mask);
sys/net/if_media.c
187
if (match == NULL) {
sys/net/if_media.c
191
match = ifmedia_get(ifm, target, ifm->ifm_mask);
sys/net/if_media.c
192
if (match == NULL) {
sys/net/if_media.c
196
match = ifmedia_get(ifm, target, ifm->ifm_mask);
sys/net/if_media.c
197
if (match == NULL) {
sys/net/if_media.c
203
ifm->ifm_cur = match;
sys/net/if_media.c
223
struct ifmedia_entry *match;
sys/net/if_media.c
241
match = ifmedia_get(ifm, newmedia, ifm->ifm_mask);
sys/net/if_media.c
242
if (match == NULL) {
sys/net/if_media.c
261
(match == ifm->ifm_cur)) {
sys/net/if_media.c
275
ifmedia_printword(match->ifm_media);
sys/net/if_media.c
280
ifm->ifm_cur = match;
sys/net/if_media.c
287
if (ifm->ifm_cur == match) {
sys/net/if_media.c
382
struct ifmedia_entry *match;
sys/net/if_media.c
385
match = ifmedia_get(ifm, target, mask);
sys/net/if_media.c
388
return (match != NULL);
sys/net/if_media.c
394
struct ifmedia_entry *match, *next;
sys/net/if_media.c
398
match = NULL;
sys/net/if_media.c
403
if (match) {
sys/net/if_media.c
407
target, mask, IFM_INST(match->ifm_media));
sys/net/if_media.c
411
match = next;
sys/net/if_media.c
415
return (match);
sys/net/pf_table.c
2428
int match;
sys/net/pf_table.c
2432
match = (ke && !(ke->pfrke_flags & PFRKE_FLAG_NOT));
sys/net/pf_table.c
2433
if (match)
sys/net/pf_table.c
2438
return (match);
sys/net/pfvar.h
860
int match;
sys/netinet/in_pcb.c
896
struct inpcb *inp, *match = NULL;
sys/netinet/in_pcb.c
957
match = inp;
sys/netinet/in_pcb.c
963
in_pcbref(match);
sys/netinet/in_pcb.c
967
return (match);
sys/netinet/ip_carp.c
1330
int match = 0;
sys/netinet/ip_carp.c
1335
match = 1;
sys/netinet/ip_carp.c
1338
return (match);
sys/netinet/ip_carp.c
1347
int match = 0;
sys/netinet/ip_carp.c
1357
match = 1;
sys/netinet/ip_carp.c
1363
return (match);
sys/netinet/ip_input.c
849
int match = 0;
sys/netinet/ip_input.c
874
match = 1;
sys/netinet/ip_input.c
883
match = 1;
sys/netinet/ip_input.c
890
if (!match) {
sys/netinet/ip_input.c
917
match = 1;
sys/netinet/ip_input.c
937
match = 2;
sys/netinet/ip_input.c
942
match = 2;
sys/netinet/ip_input.c
946
return (match);
sys/netinet6/in6.c
1317
int match = 0;
sys/netinet6/in6.c
1324
match++;
sys/netinet6/in6.c
1329
match += 8;
sys/netinet6/in6.c
1330
return match;
sys/scsi/cd.c
178
cdmatch(struct device *parent, void *match, void *aux)
sys/scsi/ch.c
137
chmatch(struct device *parent, void *match, void *aux)
sys/scsi/ch.c
776
const struct chquirk *match;
sys/scsi/ch.c
781
match = (const struct chquirk *)scsi_inqmatch(inqbuf,
sys/scsi/ch.c
786
sc->sc_settledelay = match->cq_settledelay;
sys/scsi/mpath.c
104
mpath_match(struct device *parent, void *match, void *aux)
sys/scsi/mpath_emc.c
114
emc_match(struct device *parent, void *match, void *aux)
sys/scsi/mpath_hds.c
115
hds_match(struct device *parent, void *match, void *aux)
sys/scsi/mpath_rdac.c
176
rdac_match(struct device *parent, void *match, void *aux)
sys/scsi/mpath_sym.c
102
sym_match(struct device *parent, void *match, void *aux)
sys/scsi/safte.c
109
safte_match(struct device *parent, void *match, void *aux)
sys/scsi/scsiconf.c
1084
struct scsi_inquiry_pattern *match = (void *)base;
sys/scsi/scsiconf.c
1087
if (inqbuf->device != match->type)
sys/scsi/scsiconf.c
1089
if (removable != match->removable)
sys/scsi/scsiconf.c
1092
len = strlen(match->vendor);
sys/scsi/scsiconf.c
1093
if (bcmp(inqbuf->vendor, match->vendor, len))
sys/scsi/scsiconf.c
1096
len = strlen(match->product);
sys/scsi/scsiconf.c
1097
if (bcmp(inqbuf->product, match->product, len))
sys/scsi/scsiconf.c
1100
len = strlen(match->revision);
sys/scsi/scsiconf.c
1101
if (bcmp(inqbuf->revision, match->revision, len))
sys/scsi/scsiconf.c
1113
devicetypenames[(match->type & SID_TYPE)],
sys/scsi/scsiconf.c
1114
(match->removable == T_FIXED) ? "T_FIXED" : "T_REMOV",
sys/scsi/scsiconf.c
1115
match->vendor, match->product, match->revision);
sys/scsi/scsiconf.c
1119
((struct scsi_quirk_inquiry_pattern *)match)->quirks
sys/scsi/scsiconf.c
198
scsibusmatch(struct device *parent, void *match, void *aux)
sys/scsi/scsiconf.c
282
scsibussubmatch(struct device *parent, void *match, void *aux)
sys/scsi/scsiconf.c
284
struct cfdata *cf = match;
sys/scsi/scsiconf.c
293
return (*cf->cf_attach->ca_match)(parent, match, aux);
sys/scsi/sd.c
140
sdmatch(struct device *parent, void *match, void *aux)
sys/scsi/ses.c
123
ses_match(struct device *parent, void *match, void *aux)
sys/scsi/st.c
248
stmatch(struct device *parent, void *match, void *aux)
sys/scsi/uk.c
72
ukmatch(struct device *parent, void *match, void *aux)
sys/sys/videoio.h
6229
struct v4l2_dbg_match match;
sys/sys/videoio.h
6240
struct v4l2_dbg_match match;
usr.bin/awk/proto.h
51
extern int match(fa *, const char *);
usr.bin/awk/run.c
803
int (*mf)(fa *, const char *) = match, mode = 0;
usr.bin/calendar/calendar.h
63
struct match *next;
usr.bin/calendar/calendar.h
84
struct match *isnow(char *, int);
usr.bin/calendar/day.c
264
struct match *
usr.bin/calendar/day.c
269
struct match *matches = NULL, *tmp, *tmp2;
usr.bin/calendar/day.c
453
if ((tmp = malloc(sizeof(struct match))) == NULL)
usr.bin/calendar/day.c
555
if ((tmp = malloc(sizeof(struct match))) == NULL)
usr.bin/calendar/day.c
81
fill_print_date(struct match *m, struct tm *tm)
usr.bin/calendar/io.c
166
struct match *foo;
usr.bin/calendar/io.c
75
struct match *m;
usr.bin/cvs/trigger.c
378
int allow_all, lineno, match = 0;
usr.bin/cvs/trigger.c
443
} else if (defaultline == NULL && !match &&
usr.bin/cvs/trigger.c
446
} else if (!match) {
usr.bin/cvs/trigger.c
451
match = 1;
usr.bin/cvs/trigger.c
464
if (!match) {
usr.bin/dig/dighost.c
3216
int match = 1;
usr.bin/dig/dighost.c
3312
match = 0;
usr.bin/dig/dighost.c
3318
match = 0;
usr.bin/dig/dighost.c
3342
match = 1;
usr.bin/dig/dighost.c
3354
if (!match)
usr.bin/dig/dighost.c
3402
match = 1;
usr.bin/dig/dighost.c
3404
result == ISC_R_SUCCESS && match;
usr.bin/dig/dighost.c
3431
match = 0;
usr.bin/dig/dighost.c
3435
if (!match) {
usr.bin/doas/doas.c
143
if (match(uid, groups, ngroups, target, cmd,
usr.bin/finger/extern.h
51
int match(struct passwd *, char *);
usr.bin/finger/finger.c
241
match(pw, argv[i]))) {
usr.bin/from/from.c
102
(!sender || match(line + 5, sender)))
usr.bin/from/from.c
44
int match(char *, char *);
usr.bin/fstat/fuser.c
93
if (!match(fa, kf))
usr.bin/ftp/ruserpass.c
120
goto match;
usr.bin/ftp/ruserpass.c
122
goto match;
usr.bin/ftp/ruserpass.c
128
goto match;
usr.bin/ftp/ruserpass.c
134
goto match;
usr.bin/ftp/ruserpass.c
137
match:
usr.bin/ftp/small.c
563
int i, toks[9], toknum = 0, match = 1;
usr.bin/ftp/small.c
568
while (match && *cp1 && *cp2) {
usr.bin/ftp/small.c
572
match = 0;
usr.bin/ftp/small.c
590
match = 0;
usr.bin/ftp/small.c
594
if (match && *cp1) {
usr.bin/ftp/small.c
597
if (match && *cp2) {
usr.bin/ftp/small.c
601
if (!match && *cp1) /* last token mismatch */
usr.bin/ftp/small.c
609
match = 0;
usr.bin/ftp/small.c
625
match = 1;
usr.bin/ftp/small.c
632
match = 1;
usr.bin/ftp/small.c
665
match = 1;
usr.bin/ftp/small.c
668
if (match) {
usr.bin/less/pattern.c
115
matched = match(tpattern, strlen(tpattern), line, line_len,
usr.bin/less/search.c
358
int match;
usr.bin/less/search.c
372
match = is_hilited_range(pos, epos);
usr.bin/less/search.c
373
if (!match)
usr.bin/mail/fio.c
416
char *match = NULL;
usr.bin/mail/fio.c
458
match = savestr(names.gl_pathv[0]);
usr.bin/mail/fio.c
473
return(match);
usr.bin/mandoc/dbm.c
163
dbm_page_byname(const struct dbm_match *match)
usr.bin/mandoc/dbm.c
165
assert(match != NULL);
usr.bin/mandoc/dbm.c
166
page_bytitle(ITER_NAME, match);
usr.bin/mandoc/dbm.c
170
dbm_page_bysect(const struct dbm_match *match)
usr.bin/mandoc/dbm.c
172
assert(match != NULL);
usr.bin/mandoc/dbm.c
173
page_bytitle(ITER_SECT, match);
usr.bin/mandoc/dbm.c
177
dbm_page_byarch(const struct dbm_match *match)
usr.bin/mandoc/dbm.c
179
assert(match != NULL);
usr.bin/mandoc/dbm.c
180
page_byarch(match);
usr.bin/mandoc/dbm.c
184
dbm_page_bydesc(const struct dbm_match *match)
usr.bin/mandoc/dbm.c
186
assert(match != NULL);
usr.bin/mandoc/dbm.c
187
page_bytitle(ITER_DESC, match);
usr.bin/mandoc/dbm.c
191
dbm_page_bymacro(int32_t im, const struct dbm_match *match)
usr.bin/mandoc/dbm.c
195
assert(match != NULL);
usr.bin/mandoc/dbm.c
196
page_bymacro(im, match);
usr.bin/mandoc/dbm.c
225
static const struct dbm_match *match;
usr.bin/mandoc/dbm.c
237
match = arg_match;
usr.bin/mandoc/dbm.c
253
match = NULL;
usr.bin/mandoc/dbm.c
266
if (dbm_match(match, cp))
usr.bin/mandoc/dbm.c
281
match = NULL;
usr.bin/mandoc/dbm.c
305
static const struct dbm_match *match;
usr.bin/mandoc/dbm.c
314
match = arg_match;
usr.bin/mandoc/dbm.c
326
if (dbm_match(match, cp)) {
usr.bin/mandoc/dbm.c
334
match = NULL;
usr.bin/mandoc/dbm.c
341
static const struct dbm_match *match;
usr.bin/mandoc/dbm.c
354
match = arg_match;
usr.bin/mandoc/dbm.c
373
if (dbm_match(match, cp))
usr.bin/mandoc/dbm_map.c
172
dbm_match(const struct dbm_match *match, const char *str)
usr.bin/mandoc/dbm_map.c
174
switch (match->type) {
usr.bin/mandoc/dbm_map.c
176
return strcmp(str, match->str) == 0;
usr.bin/mandoc/dbm_map.c
178
return strcasestr(str, match->str) != NULL;
usr.bin/mandoc/dbm_map.c
180
return regexec(match->re, str, 0, NULL, 0) == 0;
usr.bin/mandoc/mansearch.c
267
dbm_page_byarch(&e->match);
usr.bin/mandoc/mansearch.c
270
dbm_page_bysect(&e->match);
usr.bin/mandoc/mansearch.c
273
dbm_page_byname(&e->match);
usr.bin/mandoc/mansearch.c
276
dbm_page_bydesc(&e->match);
usr.bin/mandoc/mansearch.c
279
dbm_page_bymacro(im - 2, &e->match);
usr.bin/mandoc/mansearch.c
44
struct dbm_match match; /* Match type and expression. */
usr.bin/mandoc/mansearch.c
749
e->match.type = DBM_EXACT;
usr.bin/mandoc/mansearch.c
750
e->match.str = argv[(*argi)++];
usr.bin/mandoc/mansearch.c
761
e->match.type = DBM_REGEX;
usr.bin/mandoc/mansearch.c
766
e->match.type = DBM_REGEX;
usr.bin/mandoc/mansearch.c
773
e->match.type = DBM_SUB;
usr.bin/mandoc/mansearch.c
774
e->match.str = val + 1;
usr.bin/mandoc/mansearch.c
776
e->match.type = DBM_REGEX;
usr.bin/mandoc/mansearch.c
784
if (e->match.type == DBM_REGEX) {
usr.bin/mandoc/mansearch.c
785
e->match.re = mandoc_malloc(sizeof(*e->match.re));
usr.bin/mandoc/mansearch.c
786
irc = regcomp(e->match.re, val,
usr.bin/mandoc/mansearch.c
789
regerror(irc, e->match.re, errbuf, sizeof(errbuf));
usr.bin/mandoc/mansearch.c
795
free(e->match.re);
usr.bin/mandoc/roff.c
2513
int match;
usr.bin/mandoc/roff.c
2515
match = 0;
usr.bin/mandoc/roff.c
2529
match = 1;
usr.bin/mandoc/roff.c
2541
return match;
usr.bin/mg/cmode.c
360
int match = FALSE;
usr.bin/mg/cmode.c
364
match = (mc == '"');
usr.bin/mg/cmode.c
367
match = (mc == '\'');
usr.bin/mg/cmode.c
370
match = (mc == ')');
usr.bin/mg/cmode.c
373
match = (mc == ']');
usr.bin/mg/cmode.c
376
match = (mc == '}');
usr.bin/mg/cmode.c
380
return (match);
usr.bin/mg/echo.c
198
int match; /* esc match found */
usr.bin/mg/echo.c
250
match = 0;
usr.bin/mg/echo.c
252
match++;
usr.bin/mg/echo.c
259
match++;
usr.bin/mg/echo.c
265
if (match == 0) {
usr.bin/passwd/pwd_check.c
147
if (regcomp(&rgx, patterns[i].match,
usr.bin/passwd/pwd_check.c
53
char *match;
usr.bin/pkgconf/cli/getopt_long.c
198
int i, match, exact_match, second_partial_match;
usr.bin/pkgconf/cli/getopt_long.c
217
match = -1;
usr.bin/pkgconf/cli/getopt_long.c
238
match = i;
usr.bin/pkgconf/cli/getopt_long.c
249
if (match == -1) /* first partial match */
usr.bin/pkgconf/cli/getopt_long.c
250
match = i;
usr.bin/pkgconf/cli/getopt_long.c
253
long_options[match].has_arg ||
usr.bin/pkgconf/cli/getopt_long.c
254
long_options[i].flag != long_options[match].flag ||
usr.bin/pkgconf/cli/getopt_long.c
255
long_options[i].val != long_options[match].val)
usr.bin/pkgconf/cli/getopt_long.c
273
if (match != -1) { /* option found */
usr.bin/pkgconf/cli/getopt_long.c
274
if (long_options[match].has_arg == no_argument
usr.bin/pkgconf/cli/getopt_long.c
289
if (long_options[match].flag == NULL)
usr.bin/pkgconf/cli/getopt_long.c
290
pkg_optopt = (int)long_options[match].val;
usr.bin/pkgconf/cli/getopt_long.c
299
if (long_options[match].has_arg == required_argument ||
usr.bin/pkgconf/cli/getopt_long.c
300
long_options[match].has_arg == optional_argument) {
usr.bin/pkgconf/cli/getopt_long.c
303
else if (long_options[match].has_arg ==
usr.bin/pkgconf/cli/getopt_long.c
311
if ((long_options[match].has_arg == required_argument)
usr.bin/pkgconf/cli/getopt_long.c
329
if (long_options[match].flag == NULL)
usr.bin/pkgconf/cli/getopt_long.c
330
pkg_optopt = (int)long_options[match].val;
usr.bin/pkgconf/cli/getopt_long.c
354
*idx = match;
usr.bin/pkgconf/cli/getopt_long.c
355
if (long_options[match].flag) {
usr.bin/pkgconf/cli/getopt_long.c
357
*long_options[match].flag |= long_options[match].val;
usr.bin/pkgconf/cli/getopt_long.c
359
*long_options[match].flag = long_options[match].val;
usr.bin/pkgconf/cli/getopt_long.c
363
return ((int)long_options[match].val);
usr.bin/pkgconf/cli/main.c
249
pkgconf_pkg_t *pkg = dep->match;
usr.bin/pkgconf/cli/main.c
284
const char *dep_id = (dep->match != NULL) ? dep->match->id : dep->package;
usr.bin/pkgconf/cli/main.c
295
const char *dep_id = (dep->match != NULL) ? dep->match->id : dep->package;
usr.bin/pkgconf/cli/main.c
368
pkgconf_pkg_t *pkg = dep->match;
usr.bin/pkgconf/cli/main.c
403
pkgconf_pkg_t *pkg = dep->match;
usr.bin/pkgconf/cli/main.c
422
pkgconf_pkg_t *pkg = dep->match;
usr.bin/pkgconf/cli/main.c
441
pkgconf_pkg_t *pkg = dep->match;
usr.bin/pkgconf/cli/main.c
506
if (dep->match == NULL)
usr.bin/pkgconf/cli/main.c
509
snprintf(havebuf, sizeof havebuf, "HAVE_%s", dep->match->id);
usr.bin/pkgconf/cli/main.c
538
pkgconf_pkg_t *pkg = dep->match;
usr.bin/pkgconf/cli/main.c
544
if (dep->match == NULL)
usr.bin/pkgconf/cli/main.c
672
pkgconf_pkg_t *pkg = dep->match;
usr.bin/pkgconf/cli/main.c
691
pkgconf_pkg_t *pkg = dep->match;
usr.bin/pkgconf/libpkgconf/dependency.c
202
if (dep->match != NULL)
usr.bin/pkgconf/libpkgconf/dependency.c
203
pkgconf_pkg_unref(dep->match->owner, dep->match);
usr.bin/pkgconf/libpkgconf/dependency.c
484
if (dep->match != NULL)
usr.bin/pkgconf/libpkgconf/dependency.c
485
new_dep->match = pkgconf_pkg_ref(client, dep->match);
usr.bin/pkgconf/libpkgconf/libpkgconf.h
113
pkgconf_pkg_t *match;
usr.bin/pkgconf/libpkgconf/pkg.c
1427
pkgdep->match = pkgconf_pkg_ref(client, pkg);
usr.bin/pkgconf/libpkgconf/pkg.c
1461
if (pkgdep->match != NULL)
usr.bin/pkgconf/libpkgconf/pkg.c
1463
PKGCONF_TRACE(client, "cached dependency: %s -> %s@%p", pkgdep->package, pkgdep->match->id, pkgdep->match);
usr.bin/pkgconf/libpkgconf/pkg.c
1464
return pkgconf_pkg_ref(client, pkgdep->match);
usr.bin/pkgconf/libpkgconf/pkg.c
1491
pkgdep->match = pkgconf_pkg_ref(client, pkg);
usr.bin/pkgconf/libpkgconf/queue.c
116
if (dep->match == pkg)
usr.bin/pkgconf/libpkgconf/queue.c
146
pkgconf_pkg_t *pkg = dep->match;
usr.bin/rcs/rcsclean.c
136
int fd, match;
usr.bin/rcs/rcsclean.c
176
match = 0;
usr.bin/rcs/rcsclean.c
182
match = 1;
usr.bin/rcs/rcsclean.c
185
match = 0;
usr.bin/rcs/rcsclean.c
190
if (match == 1) {
usr.bin/rdist/client.h
179
int match(char *, char *);
usr.bin/rdist/expand.c
364
if (match(dp->d_name, pattern)) {
usr.bin/rsync/uploader.c
703
int i, rc, match = -1;
usr.bin/rsync/uploader.c
776
} else if (x == 1 && match == -1) {
usr.bin/rsync/uploader.c
778
match = i;
usr.bin/rsync/uploader.c
782
if (match != -1) {
usr.bin/rsync/uploader.c
784
copy_file(p->rootfd, sess->opts->basedir_abs[match], f);
usr.bin/sed/compile.c
132
match = xreallocarray(NULL, maxnsub + 1, sizeof(regmatch_t));
usr.bin/sed/extern.h
39
extern regmatch_t *match;
usr.bin/sed/process.c
360
if (n <= 1 && (match[0].rm_so > le))
usr.bin/sed/process.c
361
cspace(&SS, s, match[0].rm_so - le, APPEND);
usr.bin/sed/process.c
364
if (lastempty || (match[0].rm_so - le) ||
usr.bin/sed/process.c
365
match[0].rm_so != match[0].rm_eo) {
usr.bin/sed/process.c
373
if (match[0].rm_eo - le)
usr.bin/sed/process.c
374
cspace(&SS, s, match[0].rm_eo - le,
usr.bin/sed/process.c
381
s = ps + match[0].rm_eo;
usr.bin/sed/process.c
382
slen = psl - match[0].rm_eo;
usr.bin/sed/process.c
383
le = match[0].rm_eo;
usr.bin/sed/process.c
389
if (match[0].rm_so == match[0].rm_eo) {
usr.bin/sed/process.c
527
match[0].rm_so = start;
usr.bin/sed/process.c
528
match[0].rm_eo = stop;
usr.bin/sed/process.c
531
nomatch ? 0 : maxnsub + 1, match, eflags | REG_STARTEND);
usr.bin/sed/process.c
573
} else if (match[no].rm_so != -1 && match[no].rm_eo != -1) {
usr.bin/sed/process.c
574
len = match[no].rm_eo - match[no].rm_so;
usr.bin/sed/process.c
576
memmove(dst, string + match[no].rm_so, len);
usr.bin/sed/process.c
78
regmatch_t *match;
usr.bin/ssh/auth2.c
560
int match;
usr.bin/ssh/auth2.c
566
match = MATCH_METHOD;
usr.bin/ssh/auth2.c
575
match = MATCH_BOTH;
usr.bin/ssh/auth2.c
579
return match;
usr.bin/ssh/auth2.c
592
int match;
usr.bin/ssh/auth2.c
594
match = list_starts_with(omethods, method, submethod);
usr.bin/ssh/auth2.c
595
if (match != MATCH_METHOD && match != MATCH_BOTH)
usr.bin/ssh/auth2.c
598
if (submethod && match == MATCH_BOTH)
usr.bin/ssh/clientloop.c
2135
if ((l->match & HKF_MATCH_HOST) == 0) {
usr.bin/ssh/clientloop.c
2141
} else if ((l->match & HKF_MATCH_IP) == 0) {
usr.bin/ssh/clientloop.c
2166
ctx->keys_match[i] |= l->match;
usr.bin/ssh/clientloop.c
2194
hashed = l->match & (HKF_MATCH_HOST_HASHED|HKF_MATCH_IP_HASHED);
usr.bin/ssh/hostfile.c
588
ctx->match_keys[i] |= l->match;
usr.bin/ssh/hostfile.c
855
lineinfo.match |= HKF_MATCH_HOST |
usr.bin/ssh/hostfile.c
869
lineinfo.match |= HKF_MATCH_IP |
usr.bin/ssh/hostfile.h
95
u_int match; /* Zero or more of HKF_MATCH_* OR'd together */
usr.bin/ssh/sshconnect.c
708
if ((l->match & HKF_MATCH_HOST) != 0)
usr.bin/systat/engine.c
926
if (strcasecmp(opt, o->match) == 0) {
usr.bin/systat/engine.h
69
char *match;
usr.bin/tmux/window-copy.c
3816
int match;
usr.bin/tmux/window-copy.c
3856
match = 1;
usr.bin/tmux/window-copy.c
3859
match = 0;
usr.bin/tmux/window-copy.c
3866
match = 0;
usr.bin/tmux/window-copy.c
3874
match = 0;
usr.bin/tmux/window-copy.c
3881
if (match)
usr.bin/tset/tset.c
501
int match;
usr.bin/tset/tset.c
507
match = TRUE;
usr.bin/tset/tset.c
510
match = ((int) ospeed == mapp->speed);
usr.bin/tset/tset.c
513
match = ((int) ospeed >= mapp->speed);
usr.bin/tset/tset.c
516
match = ((int) ospeed > mapp->speed);
usr.bin/tset/tset.c
519
match = ((int) ospeed <= mapp->speed);
usr.bin/tset/tset.c
522
match = ((int) ospeed < mapp->speed);
usr.bin/tset/tset.c
525
match = FALSE;
usr.bin/tset/tset.c
527
if (match)
usr.bin/vi/common/search.c
149
regmatch_t match[1];
usr.bin/vi/common/search.c
228
match[0].rm_so = coff;
usr.bin/vi/common/search.c
229
match[0].rm_eo = len;
usr.bin/vi/common/search.c
232
eval = regexec(&sp->re_c, l, 1, match,
usr.bin/vi/common/search.c
233
(match[0].rm_so == 0 ? 0 : REG_NOTBOL) | REG_STARTEND);
usr.bin/vi/common/search.c
249
rm->cno = match[0].rm_so;
usr.bin/vi/common/search.c
281
regmatch_t match[1];
usr.bin/vi/common/search.c
353
match[0].rm_so = 0;
usr.bin/vi/common/search.c
354
match[0].rm_eo = len;
usr.bin/vi/common/search.c
357
eval = regexec(&sp->re_c, l, 1, match,
usr.bin/vi/common/search.c
358
(match[0].rm_eo == len ? 0 : REG_NOTEOL) | REG_STARTEND);
usr.bin/vi/common/search.c
370
if (coff != 0 && match[0].rm_so >= coff)
usr.bin/vi/common/search.c
384
last = match[0].rm_so++;
usr.bin/vi/common/search.c
385
if (match[0].rm_so >= len)
usr.bin/vi/common/search.c
387
match[0].rm_eo = len;
usr.bin/vi/common/search.c
388
eval = regexec(&sp->re_c, l, 1, match,
usr.bin/vi/common/search.c
389
(match[0].rm_so == 0 ? 0 : REG_NOTBOL) |
usr.bin/vi/common/search.c
400
if (coff && match[0].rm_so >= coff)
usr.bin/vi/ex/ex_global.c
210
match[0].rm_so = 0;
usr.bin/vi/ex/ex_global.c
211
match[0].rm_eo = len;
usr.bin/vi/ex/ex_global.c
213
regexec(&sp->re_c, dbp, 0, match, REG_STARTEND)) {
usr.bin/vi/ex/ex_global.c
71
regmatch_t match[1];
usr.bin/vi/ex/ex_subst.c
1204
regmatch_t match[10])
usr.bin/vi/ex/ex_subst.c
1291
subzero: if (match[no].rm_so == -1 ||
usr.bin/vi/ex/ex_subst.c
1292
match[no].rm_eo == -1)
usr.bin/vi/ex/ex_subst.c
1294
mlen = match[no].rm_eo - match[no].rm_so;
usr.bin/vi/ex/ex_subst.c
1295
for (t = ip + match[no].rm_so; mlen--; ++t)
usr.bin/vi/ex/ex_subst.c
343
regmatch_t match[10];
usr.bin/vi/ex/ex_subst.c
534
nextmatch: match[0].rm_so = offset;
usr.bin/vi/ex/ex_subst.c
535
match[0].rm_eo = llen;
usr.bin/vi/ex/ex_subst.c
538
eval = regexec(re, (char *)s, 10, match, eflags);
usr.bin/vi/ex/ex_subst.c
575
if (match[0].rm_so == nempty && match[0].rm_eo == nempty) {
usr.bin/vi/ex/ex_subst.c
593
from.cno = match[0].rm_so;
usr.bin/vi/ex/ex_subst.c
594
to.cno = match[0].rm_eo;
usr.bin/vi/ex/ex_subst.c
652
BUILD(sp, s + offset, match[0].rm_eo - offset);
usr.bin/vi/ex/ex_subst.c
672
sp->cno = match[0].rm_so;
usr.bin/vi/ex/ex_subst.c
675
BUILD(sp, s + offset, match[0].rm_so - offset);
usr.bin/vi/ex/ex_subst.c
679
if (re_sub(sp, s, &lb, &lbclen, &lblen, match))
usr.bin/vi/ex/ex_subst.c
686
skip: offset = match[0].rm_eo;
usr.bin/vi/ex/ex_subst.c
687
len = llen - match[0].rm_eo;
usr.bin/vi/ex/ex_subst.c
690
nempty = match[0].rm_eo;
usr.bin/what/what.c
101
for (i = 0; match[i]; i++)
usr.bin/what/what.c
102
if ((c = getchar()) != match[i])
usr.bin/what/what.c
104
printf("\t$%s", match);
usr.bin/what/what.c
57
char match[256];
usr.bin/what/what.c
78
strlcpy(match, utsn.sysname, sizeof match);
usr.bin/what/what.c
88
search(match);
usr.bin/what/what.c
94
search(char *match)
usr.bin/xargs/strnsubst.c
31
strnsubst(char **str, const char *match, const char *replstr, size_t maxsize)
usr.bin/xargs/strnsubst.c
45
if (match == NULL || *match == '\0' || strlen(s1) >= maxsize) {
usr.bin/xargs/strnsubst.c
52
matchlen = strlen(match);
usr.bin/xargs/strnsubst.c
54
if ((this = strstr(s1, match)) == NULL)
usr.bin/yacc/output.c
548
int i, j, k, t, w, match, prev;
usr.bin/yacc/output.c
562
match = 1;
usr.bin/yacc/output.c
563
for (k = 0; match && k < t; k++) {
usr.bin/yacc/output.c
566
match = 0;
usr.bin/yacc/output.c
569
if (match)
usr.sbin/bgpctl/parser.c
487
const struct token *match;
usr.sbin/bgpctl/parser.c
496
if ((match = match_token(argc, argv, table, &used)) == NULL) {
usr.sbin/bgpctl/parser.c
501
if (match->type == ANYTOKEN) {
usr.sbin/bgpctl/parser.c
504
table = match->next;
usr.sbin/bgpctl/parser.c
511
if (match->type == NOTOKEN || match->next == NULL)
usr.sbin/bgpctl/parser.c
513
table = match->next;
usr.sbin/bgpctl/parser.c
527
u_int i, match;
usr.sbin/bgpctl/parser.c
534
match = 0;
usr.sbin/bgpctl/parser.c
541
match++;
usr.sbin/bgpctl/parser.c
547
if (match == 0) {
usr.sbin/bgpctl/parser.c
548
match++;
usr.sbin/bgpctl/parser.c
555
match++;
usr.sbin/bgpctl/parser.c
564
match++;
usr.sbin/bgpctl/parser.c
574
match++;
usr.sbin/bgpctl/parser.c
580
match++;
usr.sbin/bgpctl/parser.c
585
match++;
usr.sbin/bgpctl/parser.c
590
match++;
usr.sbin/bgpctl/parser.c
597
match++;
usr.sbin/bgpctl/parser.c
603
match++;
usr.sbin/bgpctl/parser.c
610
match++;
usr.sbin/bgpctl/parser.c
620
match++;
usr.sbin/bgpctl/parser.c
630
match++;
usr.sbin/bgpctl/parser.c
637
match++;
usr.sbin/bgpctl/parser.c
645
match++;
usr.sbin/bgpctl/parser.c
653
if (!match && word != NULL && wordlen > 0) {
usr.sbin/bgpctl/parser.c
659
match++;
usr.sbin/bgpctl/parser.c
664
if (!match && word != NULL && wordlen > 0) {
usr.sbin/bgpctl/parser.c
668
match++;
usr.sbin/bgpctl/parser.c
673
if (!match && word != NULL && wordlen > 0) {
usr.sbin/bgpctl/parser.c
678
match++;
usr.sbin/bgpctl/parser.c
694
match++;
usr.sbin/bgpctl/parser.c
710
match++;
usr.sbin/bgpctl/parser.c
727
match++;
usr.sbin/bgpctl/parser.c
763
match++;
usr.sbin/bgpctl/parser.c
778
match++;
usr.sbin/bgpctl/parser.c
785
match++;
usr.sbin/bgpctl/parser.c
799
match++;
usr.sbin/bgpctl/parser.c
818
match++;
usr.sbin/bgpctl/parser.c
834
match++;
usr.sbin/bgpctl/parser.c
850
if (match != 1) {
usr.sbin/bgpctl/parser.c
853
else if (match > 1)
usr.sbin/bgpctl/parser.c
855
else if (match < 1)
usr.sbin/bgpd/bgpd.h
1272
struct filter_match match;
usr.sbin/bgpd/parse.y
4957
struct filter_peers_l *peer, struct filter_match_l *match,
usr.sbin/bgpd/parse.y
4971
a = match->as_l;
usr.sbin/bgpd/parse.y
4973
prefix = match->prefix_l;
usr.sbin/bgpd/parse.y
4983
memcpy(&r->match, match,
usr.sbin/bgpd/parse.y
4996
memcpy(&r->match.prefix,
usr.sbin/bgpd/parse.y
4998
sizeof(r->match.prefix));
usr.sbin/bgpd/parse.y
5001
memcpy(&r->match.as, &a->a,
usr.sbin/bgpd/parse.y
5032
for (a = match->as_l; a != NULL; a = anext) {
usr.sbin/bgpd/parse.y
5037
for (prefix = match->prefix_l; prefix != NULL; prefix = prefix_next) {
usr.sbin/bgpd/parse.y
5302
if (memcmp(&fa->match, &fb->match, sizeof(fa->match)))
usr.sbin/bgpd/printconf.c
1000
printf("as-set \"%s\" ", r->match.as.name);
usr.sbin/bgpd/printconf.c
1003
switch (r->match.as.op) {
usr.sbin/bgpd/printconf.c
1005
printf("%s - ", log_as(r->match.as.as_min));
usr.sbin/bgpd/printconf.c
1006
printf("%s ", log_as(r->match.as.as_max));
usr.sbin/bgpd/printconf.c
1009
printf("%s >< ", log_as(r->match.as.as_min));
usr.sbin/bgpd/printconf.c
1010
printf("%s ", log_as(r->match.as.as_max));
usr.sbin/bgpd/printconf.c
1013
printf("!= %s ", log_as(r->match.as.as_min));
usr.sbin/bgpd/printconf.c
1016
printf("%s ", log_as(r->match.as.as_min));
usr.sbin/bgpd/printconf.c
1071
if (r->match.ovs.is_set) {
usr.sbin/bgpd/printconf.c
1072
switch (r->match.ovs.validity) {
usr.sbin/bgpd/printconf.c
1083
printf("ovs ??? %d ??? ", r->match.ovs.validity);
usr.sbin/bgpd/printconf.c
1087
if (r->match.avs.is_set) {
usr.sbin/bgpd/printconf.c
1088
switch (r->match.avs.validity) {
usr.sbin/bgpd/printconf.c
1099
printf("avs ??? %d ??? ", r->match.avs.validity);
usr.sbin/bgpd/printconf.c
1103
if (r->match.prefix.addr.aid != AID_UNSPEC) {
usr.sbin/bgpd/printconf.c
1105
print_prefix(&r->match.prefix);
usr.sbin/bgpd/printconf.c
1109
if (r->match.prefixset.name[0] != '\0')
usr.sbin/bgpd/printconf.c
1110
printf("prefix-set \"%s\" ", r->match.prefixset.name);
usr.sbin/bgpd/printconf.c
1111
if (r->match.prefixset.flags & PREFIXSET_FLAG_LONGER)
usr.sbin/bgpd/printconf.c
1114
if (r->match.originset.name[0] != '\0')
usr.sbin/bgpd/printconf.c
1115
printf("origin-set \"%s\" ", r->match.originset.name);
usr.sbin/bgpd/printconf.c
1117
if (r->match.nexthop.flags) {
usr.sbin/bgpd/printconf.c
1118
if (r->match.nexthop.flags == FILTER_NEXTHOP_NEIGHBOR)
usr.sbin/bgpd/printconf.c
1121
printf("nexthop %s ", log_addr(&r->match.nexthop.addr));
usr.sbin/bgpd/printconf.c
1124
if (r->match.as.type) {
usr.sbin/bgpd/printconf.c
1125
if (r->match.as.type == AS_ALL)
usr.sbin/bgpd/printconf.c
1127
else if (r->match.as.type == AS_SOURCE)
usr.sbin/bgpd/printconf.c
1129
else if (r->match.as.type == AS_TRANSIT)
usr.sbin/bgpd/printconf.c
1131
else if (r->match.as.type == AS_PEER)
usr.sbin/bgpd/printconf.c
1138
if (r->match.aslen.type) {
usr.sbin/bgpd/printconf.c
1139
printf("%s %u ", r->match.aslen.type == ASLEN_MAX ?
usr.sbin/bgpd/printconf.c
1140
"max-as-len" : "max-as-seq", r->match.aslen.aslen);
usr.sbin/bgpd/printconf.c
1144
struct community *c = &r->match.community[i];
usr.sbin/bgpd/printconf.c
1151
if (r->match.maxcomm != 0)
usr.sbin/bgpd/printconf.c
1152
printf("max-communities %d ", r->match.maxcomm - 1);
usr.sbin/bgpd/printconf.c
1153
if (r->match.maxextcomm != 0)
usr.sbin/bgpd/printconf.c
1154
printf("max-ext-communities %d ", r->match.maxextcomm - 1);
usr.sbin/bgpd/printconf.c
1155
if (r->match.maxlargecomm != 0)
usr.sbin/bgpd/printconf.c
1156
printf("max-large-communities %d ", r->match.maxlargecomm - 1);
usr.sbin/bgpd/printconf.c
922
int match = 0;
usr.sbin/bgpd/printconf.c
927
match = 1;
usr.sbin/bgpd/printconf.c
930
match = 1;
usr.sbin/bgpd/printconf.c
932
if (!match) {
usr.sbin/bgpd/printconf.c
999
if (r->match.as.flags & AS_FLAG_AS_SET_NAME) {
usr.sbin/bgpd/rde.c
1130
if (r->match.prefixset.name[0] != '\0') {
usr.sbin/bgpd/rde.c
1131
r->match.prefixset.ps =
usr.sbin/bgpd/rde.c
1132
rde_find_prefixset(r->match.prefixset.name,
usr.sbin/bgpd/rde.c
1134
if (r->match.prefixset.ps == NULL)
usr.sbin/bgpd/rde.c
1136
__func__, r->match.prefixset.name);
usr.sbin/bgpd/rde.c
1138
if (r->match.originset.name[0] != '\0') {
usr.sbin/bgpd/rde.c
1139
r->match.originset.ps =
usr.sbin/bgpd/rde.c
1140
rde_find_prefixset(r->match.originset.name,
usr.sbin/bgpd/rde.c
1142
if (r->match.originset.ps == NULL)
usr.sbin/bgpd/rde.c
1144
__func__, r->match.originset.name);
usr.sbin/bgpd/rde.c
1146
if (r->match.as.flags & AS_FLAG_AS_SET_NAME) {
usr.sbin/bgpd/rde.c
1150
r->match.as.name);
usr.sbin/bgpd/rde.c
1153
__func__, r->match.as.name);
usr.sbin/bgpd/rde.c
1155
r->match.as.flags = AS_FLAG_AS_SET;
usr.sbin/bgpd/rde.c
1156
r->match.as.aset = aset;
usr.sbin/bgpd/rde_attr.c
675
uint32_t match;
usr.sbin/bgpd/rde_attr.c
683
match = neighas;
usr.sbin/bgpd/rde_attr.c
685
match = f->as_min;
usr.sbin/bgpd/rde_attr.c
690
if (as == match)
usr.sbin/bgpd/rde_attr.c
694
if (as != match)
usr.sbin/bgpd/rde_community.c
385
struct community *match;
usr.sbin/bgpd/rde_community.c
390
match = bsearch(fc, comm->communities, comm->nentries,
usr.sbin/bgpd/rde_community.c
392
if (match == NULL)
usr.sbin/bgpd/rde_community.c
395
memmove(match, match + 1,
usr.sbin/bgpd/rde_community.c
397
(char *)(match + 1));
usr.sbin/bgpd/rde_filter.c
1140
if (rde_filter_match(&f->match, peer, from, state,
usr.sbin/bgpd/rde_filter.c
1175
if (rde_filter_match(&f->match, peer, from, state,
usr.sbin/bgpd/rde_filter.c
260
rde_filter_match(struct filter_match *match, struct rde_peer *peer,
usr.sbin/bgpd/rde_filter.c
267
if (match->ovs.is_set) {
usr.sbin/bgpd/rde_filter.c
268
if ((state->vstate & ROA_MASK) != match->ovs.validity)
usr.sbin/bgpd/rde_filter.c
272
if (match->avs.is_set) {
usr.sbin/bgpd/rde_filter.c
273
if (((state->vstate >> 4) & ASPA_MASK) != match->avs.validity)
usr.sbin/bgpd/rde_filter.c
277
if (asp != NULL && match->as.type != AS_UNDEF) {
usr.sbin/bgpd/rde_filter.c
278
if (aspath_match(asp->aspath, &match->as,
usr.sbin/bgpd/rde_filter.c
283
if (asp != NULL && match->aslen.type != ASLEN_NONE)
usr.sbin/bgpd/rde_filter.c
284
if (aspath_lenmatch(asp->aspath, match->aslen.type,
usr.sbin/bgpd/rde_filter.c
285
match->aslen.aslen) == 0)
usr.sbin/bgpd/rde_filter.c
289
if (match->community[i].flags == 0)
usr.sbin/bgpd/rde_filter.c
292
&match->community[i], peer) == 0)
usr.sbin/bgpd/rde_filter.c
296
if (match->maxcomm != 0) {
usr.sbin/bgpd/rde_filter.c
297
if (match->maxcomm >
usr.sbin/bgpd/rde_filter.c
301
if (match->maxextcomm != 0) {
usr.sbin/bgpd/rde_filter.c
302
if (match->maxextcomm >
usr.sbin/bgpd/rde_filter.c
306
if (match->maxlargecomm != 0) {
usr.sbin/bgpd/rde_filter.c
307
if (match->maxlargecomm >
usr.sbin/bgpd/rde_filter.c
312
if (match->nexthop.flags != 0) {
usr.sbin/bgpd/rde_filter.c
318
if (match->nexthop.flags == FILTER_NEXTHOP_ADDR)
usr.sbin/bgpd/rde_filter.c
319
cmpaddr = &match->nexthop.addr;
usr.sbin/bgpd/rde_filter.c
342
if (asp != NULL && match->originset.ps != NULL) {
usr.sbin/bgpd/rde_filter.c
343
if (trie_roa_check(&match->originset.ps->th, prefix, plen,
usr.sbin/bgpd/rde_filter.c
351
if (match->prefixset.flags != 0) {
usr.sbin/bgpd/rde_filter.c
352
if (match->prefixset.ps == NULL ||
usr.sbin/bgpd/rde_filter.c
353
!trie_match(&match->prefixset.ps->th, prefix, plen,
usr.sbin/bgpd/rde_filter.c
354
(match->prefixset.flags & PREFIXSET_FLAG_LONGER)))
usr.sbin/bgpd/rde_filter.c
356
} else if (match->prefix.addr.aid != 0)
usr.sbin/bgpd/rde_filter.c
357
return (rde_prefix_match(&match->prefix, prefix, plen));
usr.sbin/bgpd/rde_filter.c
417
psa = fa->match.prefixset.ps;
usr.sbin/bgpd/rde_filter.c
418
psb = fb->match.prefixset.ps;
usr.sbin/bgpd/rde_filter.c
419
osa = fa->match.originset.ps;
usr.sbin/bgpd/rde_filter.c
420
osb = fb->match.originset.ps;
usr.sbin/bgpd/rde_filter.c
421
asa = fa->match.as.aset;
usr.sbin/bgpd/rde_filter.c
422
asb = fb->match.as.aset;
usr.sbin/bgpd/rde_filter.c
423
fa->match.prefixset.ps = fb->match.prefixset.ps = NULL;
usr.sbin/bgpd/rde_filter.c
424
fa->match.originset.ps = fb->match.originset.ps = NULL;
usr.sbin/bgpd/rde_filter.c
425
fa->match.as.aset = fb->match.as.aset = NULL;
usr.sbin/bgpd/rde_filter.c
426
r = memcmp(&fa->match, &fb->match, sizeof(fa->match));
usr.sbin/bgpd/rde_filter.c
428
fa->match.prefixset.ps = psa;
usr.sbin/bgpd/rde_filter.c
429
fb->match.prefixset.ps = psb;
usr.sbin/bgpd/rde_filter.c
430
fa->match.originset.ps = osa;
usr.sbin/bgpd/rde_filter.c
431
fb->match.originset.ps = osb;
usr.sbin/bgpd/rde_filter.c
432
fa->match.as.aset = asa;
usr.sbin/bgpd/rde_filter.c
433
fb->match.as.aset = asb;
usr.sbin/bgpd/rde_filter.c
436
if (fa->match.prefixset.ps != NULL &&
usr.sbin/bgpd/rde_filter.c
437
fa->match.prefixset.ps->dirty) {
usr.sbin/bgpd/rde_filter.c
439
__func__, fa->match.prefixset.name);
usr.sbin/bgpd/rde_filter.c
442
if (fa->match.originset.ps != NULL &&
usr.sbin/bgpd/rde_filter.c
443
fa->match.originset.ps->dirty) {
usr.sbin/bgpd/rde_filter.c
445
__func__, fa->match.originset.name);
usr.sbin/bgpd/rde_filter.c
448
if ((fa->match.as.flags & AS_FLAG_AS_SET) &&
usr.sbin/bgpd/rde_filter.c
449
fa->match.as.aset->dirty) {
usr.sbin/bgpd/rde_filter.c
451
__func__, fa->match.as.name);
usr.sbin/bgpd/rde_filter.c
555
rule->match = fr->match;
usr.sbin/bgpd/rde_filter.c
60
struct filter_match match;
usr.sbin/bgpd/session.c
1003
strcmp(ifa->ifa_name, match->ifa_name) == 0) {
usr.sbin/bgpd/session.c
1013
strcmp(ifa->ifa_name, match->ifa_name) == 0) {
usr.sbin/bgpd/session.c
1581
int match = 0;
usr.sbin/bgpd/session.c
1586
match++;
usr.sbin/bgpd/session.c
1589
if (match > 1)
usr.sbin/bgpd/session.c
1593
if (match == 1)
usr.sbin/bgpd/session.c
956
struct ifaddrs *ifap, *ifa, *match;
usr.sbin/bgpd/session.c
963
for (match = ifap; match != NULL; match = match->ifa_next) {
usr.sbin/bgpd/session.c
964
if (match->ifa_addr == NULL)
usr.sbin/bgpd/session.c
966
if (match->ifa_addr->sa_family != AF_INET &&
usr.sbin/bgpd/session.c
967
match->ifa_addr->sa_family != AF_INET6)
usr.sbin/bgpd/session.c
969
if (sa_equal(local, match->ifa_addr)) {
usr.sbin/bgpd/session.c
974
} else if (match->ifa_flags & IFF_POINTOPOINT &&
usr.sbin/bgpd/session.c
975
match->ifa_dstaddr != NULL) {
usr.sbin/bgpd/session.c
976
if (sa_equal(remote, match->ifa_dstaddr))
usr.sbin/bgpd/session.c
978
} else if (match->ifa_netmask != NULL) {
usr.sbin/bgpd/session.c
980
match->ifa_addr->sa_family,
usr.sbin/bgpd/session.c
981
match->ifa_netmask);
usr.sbin/bgpd/session.c
989
if (match == NULL) {
usr.sbin/bgpd/session.c
994
*scope = if_nametoindex(match->ifa_name);
usr.sbin/dvmrpctl/parser.c
118
const struct token *match;
usr.sbin/dvmrpctl/parser.c
123
if ((match = match_token(argv[0], table, &res)) == NULL) {
usr.sbin/dvmrpctl/parser.c
132
if (match->type == NOTOKEN || match->next == NULL)
usr.sbin/dvmrpctl/parser.c
135
table = match->next;
usr.sbin/dvmrpctl/parser.c
150
u_int i, match;
usr.sbin/dvmrpctl/parser.c
153
match = 0;
usr.sbin/dvmrpctl/parser.c
159
match++;
usr.sbin/dvmrpctl/parser.c
166
match++;
usr.sbin/dvmrpctl/parser.c
175
match++;
usr.sbin/dvmrpctl/parser.c
182
match++;
usr.sbin/dvmrpctl/parser.c
190
match++;
usr.sbin/dvmrpctl/parser.c
197
if (!match && word != NULL && strlen(word) > 0) {
usr.sbin/dvmrpctl/parser.c
202
match++;
usr.sbin/dvmrpctl/parser.c
214
if (match != 1) {
usr.sbin/dvmrpctl/parser.c
217
else if (match > 1)
usr.sbin/dvmrpctl/parser.c
219
else if (match < 1)
usr.sbin/eigrpctl/parser.c
231
const struct token *match;
usr.sbin/eigrpctl/parser.c
236
if ((match = match_token(argv[0], table, &res)) == NULL) {
usr.sbin/eigrpctl/parser.c
245
if (match->type == NOTOKEN || match->next == NULL)
usr.sbin/eigrpctl/parser.c
248
table = match->next;
usr.sbin/eigrpctl/parser.c
263
unsigned int i, match;
usr.sbin/eigrpctl/parser.c
266
match = 0;
usr.sbin/eigrpctl/parser.c
272
match++;
usr.sbin/eigrpctl/parser.c
279
match++;
usr.sbin/eigrpctl/parser.c
288
match++;
usr.sbin/eigrpctl/parser.c
298
match++;
usr.sbin/eigrpctl/parser.c
304
match++;
usr.sbin/eigrpctl/parser.c
311
match++;
usr.sbin/eigrpctl/parser.c
317
match++;
usr.sbin/eigrpctl/parser.c
326
match++;
usr.sbin/eigrpctl/parser.c
333
if (!match && word != NULL && strlen(word) > 0) {
usr.sbin/eigrpctl/parser.c
338
match++;
usr.sbin/eigrpctl/parser.c
350
if (match != 1) {
usr.sbin/eigrpctl/parser.c
353
else if (match > 1)
usr.sbin/eigrpctl/parser.c
355
else if (match < 1)
usr.sbin/httpd/httpd.c
1124
struct media_type *match, media;
usr.sbin/httpd/httpd.c
1141
match = RB_FIND(mediatypes, types, &media);
usr.sbin/httpd/httpd.c
1143
return (match);
usr.sbin/httpd/httpd.c
1150
struct media_type *match;
usr.sbin/httpd/httpd.c
1152
if ((match = media_find(env->sc_mediatypes, file)) != NULL)
usr.sbin/httpd/httpd.c
1153
return (match);
usr.sbin/httpd/patterns.c
247
const char *res = match(ms, (s + i), ep + 1);
usr.sbin/httpd/patterns.c
260
const char *res = match(ms, s, ep + 1);
usr.sbin/httpd/patterns.c
284
if ((res = match(ms, s, p)) == NULL)
usr.sbin/httpd/patterns.c
299
if ((res = match(ms, s, p)) == NULL)
usr.sbin/httpd/patterns.c
446
match(ms, s + 1, ep + 1)) != NULL)
usr.sbin/httpd/patterns.c
627
if ((res = match(ms, s1, p)) != NULL) {
usr.sbin/httpd/patterns.c
66
static const char *match(struct match_state *, const char *, const char *);
usr.sbin/ikectl/parser.c
249
const struct token *match;
usr.sbin/ikectl/parser.c
254
if ((match = match_token(argv[0], table)) == NULL) {
usr.sbin/ikectl/parser.c
263
if (match->type == NOTOKEN || match->next == NULL)
usr.sbin/ikectl/parser.c
266
table = match->next;
usr.sbin/ikectl/parser.c
298
unsigned int i, match = 0;
usr.sbin/ikectl/parser.c
305
match++;
usr.sbin/ikectl/parser.c
312
match++;
usr.sbin/ikectl/parser.c
319
if (!match && word != NULL && strlen(word) > 0) {
usr.sbin/ikectl/parser.c
321
match++;
usr.sbin/ikectl/parser.c
326
if (!match && word != NULL && strlen(word) > 0) {
usr.sbin/ikectl/parser.c
328
match++;
usr.sbin/ikectl/parser.c
333
if (!match && word != NULL && strlen(word) > 0) {
usr.sbin/ikectl/parser.c
335
match++;
usr.sbin/ikectl/parser.c
341
if (!match && word != NULL && strlen(word) > 0) {
usr.sbin/ikectl/parser.c
347
match++;
usr.sbin/ikectl/parser.c
352
if (!match && word != NULL && strlen(word) > 0) {
usr.sbin/ikectl/parser.c
354
match++;
usr.sbin/ikectl/parser.c
359
if (!match && word != NULL && strlen(word) > 0) {
usr.sbin/ikectl/parser.c
361
match++;
usr.sbin/ikectl/parser.c
370
if (match != 1) {
usr.sbin/ikectl/parser.c
373
else if (match > 1)
usr.sbin/ikectl/parser.c
375
else if (match < 1)
usr.sbin/iscsictl/parser.c
104
const struct token *match;
usr.sbin/iscsictl/parser.c
109
if ((match = match_token(argv[0], table)) == NULL) {
usr.sbin/iscsictl/parser.c
118
if (match->type == NOTOKEN || match->next == NULL)
usr.sbin/iscsictl/parser.c
121
table = match->next;
usr.sbin/iscsictl/parser.c
135
u_int i, match;
usr.sbin/iscsictl/parser.c
138
match = 0;
usr.sbin/iscsictl/parser.c
144
match++;
usr.sbin/iscsictl/parser.c
151
match++;
usr.sbin/iscsictl/parser.c
160
match++;
usr.sbin/iscsictl/parser.c
167
match++;
usr.sbin/iscsictl/parser.c
178
match++;
usr.sbin/iscsictl/parser.c
187
if (match != 1) {
usr.sbin/iscsictl/parser.c
190
else if (match > 1)
usr.sbin/iscsictl/parser.c
192
else if (match < 1)
usr.sbin/ldpctl/parser.c
189
const struct token *match;
usr.sbin/ldpctl/parser.c
194
if ((match = match_token(argv[0], table, &res)) == NULL) {
usr.sbin/ldpctl/parser.c
203
if (match->type == NOTOKEN || match->next == NULL)
usr.sbin/ldpctl/parser.c
206
table = match->next;
usr.sbin/ldpctl/parser.c
221
uint i, match;
usr.sbin/ldpctl/parser.c
224
match = 0;
usr.sbin/ldpctl/parser.c
230
match++;
usr.sbin/ldpctl/parser.c
237
match++;
usr.sbin/ldpctl/parser.c
246
match++;
usr.sbin/ldpctl/parser.c
256
match++;
usr.sbin/ldpctl/parser.c
262
match++;
usr.sbin/ldpctl/parser.c
269
match++;
usr.sbin/ldpctl/parser.c
276
if (!match && word != NULL && strlen(word) > 0) {
usr.sbin/ldpctl/parser.c
281
match++;
usr.sbin/ldpctl/parser.c
293
if (match != 1) {
usr.sbin/ldpctl/parser.c
296
else if (match > 1)
usr.sbin/ldpctl/parser.c
298
else if (match < 1)
usr.sbin/ldpd/pfkey.c
413
struct ldp_auth *auth, *match = NULL;
usr.sbin/ldpd/pfkey.c
420
if (match == NULL ||
usr.sbin/ldpd/pfkey.c
421
match->idlen < auth->idlen)
usr.sbin/ldpd/pfkey.c
422
match = auth;
usr.sbin/ldpd/pfkey.c
425
return (match);
usr.sbin/npppctl/parser.c
147
const struct token *match;
usr.sbin/npppctl/parser.c
152
if ((match = match_token(argv[0], table)) == NULL) {
usr.sbin/npppctl/parser.c
161
if (match->type == NOTOKEN || match->next == NULL)
usr.sbin/npppctl/parser.c
164
table = match->next;
usr.sbin/npppctl/parser.c
178
u_int i, match = 0;
usr.sbin/npppctl/parser.c
187
match++;
usr.sbin/npppctl/parser.c
195
match++;
usr.sbin/npppctl/parser.c
210
match++;
usr.sbin/npppctl/parser.c
233
match++;
usr.sbin/npppctl/parser.c
241
match++;
usr.sbin/npppctl/parser.c
250
match++;
usr.sbin/npppctl/parser.c
257
match++;
usr.sbin/npppctl/parser.c
264
match++;
usr.sbin/npppctl/parser.c
272
if (match != 1) {
usr.sbin/npppctl/parser.c
275
else if (match > 1)
usr.sbin/npppctl/parser.c
277
else if (match < 1)
usr.sbin/npppd/common/radish.c
112
head->rdh_match = match;
usr.sbin/npppd/common/radish.c
76
int (*match)(void *, void *))
usr.sbin/nsd/nsec3.c
1137
nsec3_answer_authoritative(struct domain** match, struct query *query,
usr.sbin/nsd/nsec3.c
1143
assert(match);
usr.sbin/nsd/nsec3.c
1146
if(*match && !(*match)->is_existing &&
usr.sbin/nsd/nsec3.c
1150
domain_has_only_NSEC3(*match, query->zone))
usr.sbin/nsd/nsec3.c
1153
*match = 0;
usr.sbin/nsd/nsec3.c
1177
else if(*match && (*match)->is_existing &&
usr.sbin/nsd/nsec3.c
1181
(domain_has_only_NSEC3(*match, query->zone) ||
usr.sbin/nsd/nsec3.c
1182
!domain_find_any_rrset(*match, query->zone)))
usr.sbin/nsd/nsec3.c
1185
nsec3_answer_nodata(query, answer, *match);
usr.sbin/nsd/nsec3.c
1188
if(!*match) {
usr.sbin/nsd/nsec3.h
66
void nsec3_answer_authoritative(struct domain** match, struct query *query,
usr.sbin/nsd/options.c
1980
struct acl_options* match = 0;
usr.sbin/nsd/options.c
1998
if(!match)
usr.sbin/nsd/options.c
2000
match = acl; /* remember first match */
usr.sbin/nsd/options.c
2035
*reason = match;
usr.sbin/nsd/query.c
1180
domain_type *match;
usr.sbin/nsd/query.c
1200
match = closest_match;
usr.sbin/nsd/query.c
1264
match = (domain_type *) region_alloc(q->region,
usr.sbin/nsd/query.c
1267
match->rnode = NULL;
usr.sbin/nsd/query.c
1268
match->dname = wildcard_child->dname;
usr.sbin/nsd/query.c
1270
memcpy(&match->node, &wildcard_child->node, sizeof(rbnode_type));
usr.sbin/nsd/query.c
1271
match->node.parent = NULL;
usr.sbin/nsd/query.c
1273
match->parent = closest_encloser;
usr.sbin/nsd/query.c
1274
match->wildcard_child_closest_match = match;
usr.sbin/nsd/query.c
1275
match->number = domain_number;
usr.sbin/nsd/query.c
1276
match->rrsets = wildcard_child->rrsets;
usr.sbin/nsd/query.c
1277
match->is_existing = wildcard_child->is_existing;
usr.sbin/nsd/query.c
1279
match->nsec3 = wildcard_child->nsec3;
usr.sbin/nsd/query.c
1302
match = NULL;
usr.sbin/nsd/query.c
1308
nsec3_answer_authoritative(&match, q, answer,
usr.sbin/nsd/query.c
1313
if (match != closest_encloser) {
usr.sbin/nsd/query.c
1326
if (!match) {
usr.sbin/nsd/query.c
1348
if (match) {
usr.sbin/nsd/query.c
1349
answer_domain(nsd, q, answer, match, original);
usr.sbin/nsd/query.c
723
domain_type *match = additional;
usr.sbin/nsd/query.c
727
if (!allow_glue && domain_is_glue(match, query->zone))
usr.sbin/nsd/query.c
734
while (!match->is_existing) {
usr.sbin/nsd/query.c
735
match = match->parent;
usr.sbin/nsd/query.c
737
if (additional != match && domain_wildcard_child(match)) {
usr.sbin/nsd/query.c
738
domain_type *wildcard_child = domain_wildcard_child(match);
usr.sbin/nsd/query.c
749
temp->parent = match;
usr.sbin/nsd/simdzone/src/generic/scanner.h
82
static inline uint64_t follows(const uint64_t match, uint64_t *overflow)
usr.sbin/nsd/simdzone/src/generic/scanner.h
84
const uint64_t result = match << 1 | (*overflow);
usr.sbin/nsd/simdzone/src/generic/scanner.h
85
*overflow = match >> 63;
usr.sbin/nsd/xfrd-catalog-zones.c
493
domain_type *match, *closest_encloser, *member_id, *group;
usr.sbin/nsd/xfrd-catalog-zones.c
540
&match, &closest_encloser)
usr.sbin/nsd/xfrd-catalog-zones.c
541
|| !(rrset = domain_find_rrset(match, zone, TYPE_TXT))) {
usr.sbin/nsd/xfrd-catalog-zones.c
564
&match, &closest_encloser)) {
usr.sbin/nsd/xfrd-catalog-zones.c
576
for ( member_id = domain_next(match)
usr.sbin/nsd/xfrd-catalog-zones.c
577
; member_id && domain_is_subdomain(member_id, match)
usr.sbin/ospf6ctl/parser.c
153
const struct token *match;
usr.sbin/ospf6ctl/parser.c
158
if ((match = match_token(argv[0], table, &res)) == NULL) {
usr.sbin/ospf6ctl/parser.c
167
if (match->type == NOTOKEN || match->next == NULL)
usr.sbin/ospf6ctl/parser.c
170
table = match->next;
usr.sbin/ospf6ctl/parser.c
185
u_int i, match;
usr.sbin/ospf6ctl/parser.c
188
match = 0;
usr.sbin/ospf6ctl/parser.c
194
match++;
usr.sbin/ospf6ctl/parser.c
201
match++;
usr.sbin/ospf6ctl/parser.c
210
match++;
usr.sbin/ospf6ctl/parser.c
217
match++;
usr.sbin/ospf6ctl/parser.c
225
match++;
usr.sbin/ospf6ctl/parser.c
233
match++;
usr.sbin/ospf6ctl/parser.c
240
if (!match && word != NULL && strlen(word) > 0) {
usr.sbin/ospf6ctl/parser.c
245
match++;
usr.sbin/ospf6ctl/parser.c
257
if (match != 1) {
usr.sbin/ospf6ctl/parser.c
260
else if (match > 1)
usr.sbin/ospf6ctl/parser.c
262
else if (match < 1)
usr.sbin/ospf6d/packet.c
307
struct iface *iface, *match = NULL;
usr.sbin/ospf6d/packet.c
325
match = iface;
usr.sbin/ospf6d/packet.c
331
return (match);
usr.sbin/ospfctl/parser.c
152
const struct token *match;
usr.sbin/ospfctl/parser.c
157
if ((match = match_token(argv[0], table, &res)) == NULL) {
usr.sbin/ospfctl/parser.c
166
if (match->type == NOTOKEN || match->next == NULL)
usr.sbin/ospfctl/parser.c
169
table = match->next;
usr.sbin/ospfctl/parser.c
184
u_int i, match;
usr.sbin/ospfctl/parser.c
187
match = 0;
usr.sbin/ospfctl/parser.c
193
match++;
usr.sbin/ospfctl/parser.c
200
match++;
usr.sbin/ospfctl/parser.c
209
match++;
usr.sbin/ospfctl/parser.c
216
match++;
usr.sbin/ospfctl/parser.c
224
match++;
usr.sbin/ospfctl/parser.c
232
match++;
usr.sbin/ospfctl/parser.c
239
if (!match && word != NULL && strlen(word) > 0) {
usr.sbin/ospfctl/parser.c
244
match++;
usr.sbin/ospfctl/parser.c
256
if (match != 1) {
usr.sbin/ospfctl/parser.c
259
else if (match > 1)
usr.sbin/ospfctl/parser.c
261
else if (match < 1)
usr.sbin/ractl/parser.c
107
u_int i, match;
usr.sbin/ractl/parser.c
110
match = 0;
usr.sbin/ractl/parser.c
116
match++;
usr.sbin/ractl/parser.c
123
match++;
usr.sbin/ractl/parser.c
134
if (match != 1) {
usr.sbin/ractl/parser.c
137
else if (match > 1)
usr.sbin/ractl/parser.c
139
else if (match < 1)
usr.sbin/ractl/parser.c
75
const struct token *match;
usr.sbin/ractl/parser.c
80
if ((match = match_token(argv[0], table, &res)) == NULL) {
usr.sbin/ractl/parser.c
89
if (match->type == NOTOKEN || match->next == NULL)
usr.sbin/ractl/parser.c
92
table = match->next;
usr.sbin/radiusctl/parser.c
183
const struct token *match;
usr.sbin/radiusctl/parser.c
186
if ((match = match_token(argv[0], table)) == NULL) {
usr.sbin/radiusctl/parser.c
195
if (match->type == NOTOKEN || match->next == NULL)
usr.sbin/radiusctl/parser.c
198
table = match->next;
usr.sbin/radiusctl/parser.c
218
u_int i, match = 0;
usr.sbin/radiusctl/parser.c
231
match++;
usr.sbin/radiusctl/parser.c
238
match++;
usr.sbin/radiusctl/parser.c
247
match++;
usr.sbin/radiusctl/parser.c
254
match++;
usr.sbin/radiusctl/parser.c
261
match++;
usr.sbin/radiusctl/parser.c
268
match++;
usr.sbin/radiusctl/parser.c
282
match++;
usr.sbin/radiusctl/parser.c
301
match++;
usr.sbin/radiusctl/parser.c
314
match++;
usr.sbin/radiusctl/parser.c
329
match++;
usr.sbin/radiusctl/parser.c
343
match++;
usr.sbin/radiusctl/parser.c
357
match++;
usr.sbin/radiusctl/parser.c
364
match++;
usr.sbin/radiusctl/parser.c
373
match++;
usr.sbin/radiusctl/parser.c
384
match++;
usr.sbin/radiusctl/parser.c
394
if (match != 1) {
usr.sbin/radiusctl/parser.c
397
else if (match > 1)
usr.sbin/radiusctl/parser.c
399
else if (match < 1)
usr.sbin/rbootd/rmpproto.c
339
goto match;
usr.sbin/rbootd/rmpproto.c
348
match:
usr.sbin/relayctl/parser.c
136
const struct token *match;
usr.sbin/relayctl/parser.c
141
if ((match = match_token(argv[0], table, &res)) == NULL) {
usr.sbin/relayctl/parser.c
150
if (match->type == NOTOKEN || match->next == NULL)
usr.sbin/relayctl/parser.c
153
table = match->next;
usr.sbin/relayctl/parser.c
168
u_int i, match;
usr.sbin/relayctl/parser.c
172
match = 0;
usr.sbin/relayctl/parser.c
178
match++;
usr.sbin/relayctl/parser.c
185
match++;
usr.sbin/relayctl/parser.c
201
match++;
usr.sbin/relayctl/parser.c
213
match++;
usr.sbin/relayctl/parser.c
225
match++;
usr.sbin/relayctl/parser.c
228
if (!match && word != NULL && strlen(word) > 0) {
usr.sbin/relayctl/parser.c
230
match++;
usr.sbin/relayctl/parser.c
239
if (match != 1) {
usr.sbin/relayctl/parser.c
242
else if (match > 1)
usr.sbin/relayctl/parser.c
244
else if (match < 1)
usr.sbin/relayd/parse.y
190
%type <v.number> redirect_proto relay_proto match pflog
usr.sbin/relayd/parse.y
627
| match PFTAG STRING {
usr.sbin/relayd/parse.y
654
match : /* empty */ { $$ = 0; }
usr.sbin/relayd/relay_http.c
1029
match->kv_key = strdup(tmpkey);
usr.sbin/relayd/relay_http.c
1030
if (match->kv_key == NULL)
usr.sbin/relayd/relay_http.c
1032
match->kv_value = strdup(tmpval);
usr.sbin/relayd/relay_http.c
1033
if (match->kv_value == NULL)
usr.sbin/relayd/relay_http.c
1412
struct kv *match = &desc->http_matchquery;
usr.sbin/relayd/relay_http.c
1423
relay_match(actions, kv, match, NULL);
usr.sbin/relayd/relay_http.c
1434
struct kv *match;
usr.sbin/relayd/relay_http.c
1439
match = kv_find(&desc->http_headers, kv);
usr.sbin/relayd/relay_http.c
1444
} else if (match == NULL) {
usr.sbin/relayd/relay_http.c
1448
if (fnmatch(kv->kv_key, match->kv_key,
usr.sbin/relayd/relay_http.c
1452
match->kv_value != NULL &&
usr.sbin/relayd/relay_http.c
1453
fnmatch(kv->kv_value, match->kv_value, 0) == FNM_NOMATCH)
usr.sbin/relayd/relay_http.c
1457
relay_match(actions, kv, match, &desc->http_headers);
usr.sbin/relayd/relay_http.c
1468
struct kv *match = &desc->http_pathquery;
usr.sbin/relayd/relay_http.c
1485
relay_match(actions, kv, match, NULL);
usr.sbin/relayd/relay_http.c
1497
struct kv *match = &desc->http_pathquery;
usr.sbin/relayd/relay_http.c
1511
fnmatch(kv->kv_key, match->kv_key, FNM_CASEFOLD) != FNM_NOMATCH) {
usr.sbin/relayd/relay_http.c
1515
relay_match(actions, kv, match, NULL);
usr.sbin/relayd/relay_http.c
1526
struct kv *match = NULL;
usr.sbin/relayd/relay_http.c
1549
match = kv_find(&desc->http_headers, &key);
usr.sbin/relayd/relay_http.c
1550
if (match == NULL)
usr.sbin/relayd/relay_http.c
1552
if (kv->kv_key == NULL || match->kv_value == NULL)
usr.sbin/relayd/relay_http.c
1554
else if ((res = relay_lookup_cookie(cre, match->kv_value,
usr.sbin/relayd/relay_http.c
1559
relay_match(actions, kv, match, &desc->http_headers);
usr.sbin/relayd/relay_http.c
1607
struct kv *kv, *match, *kp, *mp, kvcopy, matchcopy, key;
usr.sbin/relayd/relay_http.c
1620
match = kv->kv_match;
usr.sbin/relayd/relay_http.c
1627
if (match != NULL && (match->kv_flags & KV_FLAG_INVALID))
usr.sbin/relayd/relay_http.c
1636
if (kv_setkey(match, "%s%s",
usr.sbin/relayd/relay_http.c
1637
match->kv_key, kv->kv_key) == -1)
usr.sbin/relayd/relay_http.c
1640
if (kv_setkey(match, "%s",
usr.sbin/relayd/relay_http.c
1658
if (match == NULL) {
usr.sbin/relayd/relay_http.c
1662
if (match->kv_value == NULL ||
usr.sbin/relayd/relay_http.c
1664
if (kv_set(match, "%s",
usr.sbin/relayd/relay_http.c
1678
if (kv_setkey(match, "/") == -1)
usr.sbin/relayd/relay_http.c
1684
match->kv_flags |= KV_FLAG_INVALID;
usr.sbin/relayd/relay_http.c
1686
kv_free(match);
usr.sbin/relayd/relay_http.c
1687
match = kv->kv_match = NULL;
usr.sbin/relayd/relay_http.c
1697
value = match->kv_key;
usr.sbin/relayd/relay_http.c
1700
value = match->kv_value;
usr.sbin/relayd/relay_http.c
1712
if (kv_setkey(match, "%s",
usr.sbin/relayd/relay_http.c
1713
server_root_strip(match->kv_key,
usr.sbin/relayd/relay_http.c
1728
if ((match = kv_add(kv->kv_matchtree, kp->kv_key,
usr.sbin/relayd/relay_http.c
1731
match->kv_option = kp->kv_option;
usr.sbin/relayd/relay_http.c
1732
match->kv_type = kp->kv_type;
usr.sbin/relayd/relay_http.c
1733
kv->kv_match = match;
usr.sbin/relayd/relay_http.c
1735
if (match != NULL && kp->kv_flags & KV_FLAG_MACRO) {
usr.sbin/relayd/relay_http.c
1740
if (kv_set(match, "%s", ptr) == -1)
usr.sbin/relayd/relay_http.c
1747
if (match == NULL)
usr.sbin/relayd/relay_http.c
1750
if (kv_inherit(mp, match) == NULL)
usr.sbin/relayd/relay_http.c
1983
relay_match(struct kvlist *actions, struct kv *kv, struct kv *match,
usr.sbin/relayd/relay_http.c
1987
kv->kv_match = match;
usr.sbin/relayd/relay_http.c
998
struct kv *match = &desc->http_matchquery;
usr.sbin/relayd/relayd.c
828
struct kv *match;
usr.sbin/relayd/relayd.c
834
RB_FOREACH(match, kvtree, keys) {
usr.sbin/relayd/relayd.c
835
if (fnmatch(key, match->kv_key, FNM_CASEFOLD) == 0)
usr.sbin/relayd/relayd.c
840
match = RB_FIND(kvtree, keys, kv);
usr.sbin/relayd/relayd.c
843
return (match);
usr.sbin/relayd/relayd.c
850
struct kv *match, kv;
usr.sbin/relayd/relayd.c
855
if ((match = RB_FIND(kvtree, keys, &kv)) == NULL)
usr.sbin/relayd/relayd.c
858
if (match->kv_value == NULL)
usr.sbin/relayd/relayd.c
862
if (strcasecmp(match->kv_value, value) == 0)
usr.sbin/relayd/relayd.c
865
if ((val = strdup(match->kv_value)) == NULL)
usr.sbin/relayd/relayd.c
878
match = NULL;
usr.sbin/relayd/relayd.c
881
if (match != NULL)
usr.sbin/relayd/relayd.c
885
return (match);
usr.sbin/ripctl/parser.c
125
const struct token *match;
usr.sbin/ripctl/parser.c
130
if ((match = match_token(argv[0], table, &res)) == NULL) {
usr.sbin/ripctl/parser.c
139
if (match->type == NOTOKEN || match->next == NULL)
usr.sbin/ripctl/parser.c
142
table = match->next;
usr.sbin/ripctl/parser.c
157
u_int i, match;
usr.sbin/ripctl/parser.c
160
match = 0;
usr.sbin/ripctl/parser.c
166
match++;
usr.sbin/ripctl/parser.c
173
match++;
usr.sbin/ripctl/parser.c
182
match++;
usr.sbin/ripctl/parser.c
189
match++;
usr.sbin/ripctl/parser.c
197
match++;
usr.sbin/ripctl/parser.c
204
if (!match && word != NULL && strlen(word) > 0) {
usr.sbin/ripctl/parser.c
209
match++;
usr.sbin/ripctl/parser.c
221
if (match != 1) {
usr.sbin/ripctl/parser.c
224
else if (match > 1)
usr.sbin/ripctl/parser.c
226
else if (match < 1)
usr.sbin/sasyncd/conf.y
336
v = match(confptr);
usr.sbin/slaacctl/parser.c
104
const struct token *match;
usr.sbin/slaacctl/parser.c
109
if ((match = match_token(argv[0], table, &res)) == NULL) {
usr.sbin/slaacctl/parser.c
118
if (match->type == NOTOKEN || match->next == NULL)
usr.sbin/slaacctl/parser.c
121
table = match->next;
usr.sbin/slaacctl/parser.c
136
u_int i, match;
usr.sbin/slaacctl/parser.c
139
match = 0;
usr.sbin/slaacctl/parser.c
145
match++;
usr.sbin/slaacctl/parser.c
150
if (!match && word != NULL && strlen(word) > 0) {
usr.sbin/slaacctl/parser.c
153
match++;
usr.sbin/slaacctl/parser.c
162
match++;
usr.sbin/slaacctl/parser.c
173
if (match != 1) {
usr.sbin/slaacctl/parser.c
176
else if (match > 1)
usr.sbin/slaacctl/parser.c
178
else if (match < 1)
usr.sbin/smtpd/parse.y
1555
match:
usr.sbin/smtpd/parse.y
219
| grammar match '\n'
usr.sbin/smtpd/table_db.c
162
int (*match)(const char *, const char *) = NULL;
usr.sbin/smtpd/table_db.c
177
match = keycmp[i].func;
usr.sbin/smtpd/table_db.c
179
if (match == NULL)
usr.sbin/smtpd/table_db.c
182
line = table_db_get_entry_match(handle, key, &len, match);
usr.sbin/smtpd/table_static.c
270
int (*match)(const char *, const char *) = NULL;
usr.sbin/smtpd/table_static.c
278
match = keycmp[i].func;
usr.sbin/smtpd/table_static.c
284
if (match) {
usr.sbin/smtpd/table_static.c
285
if (match(key, k)) {
usr.sbin/snmpd/application.c
1212
ssize_t match = -1;
usr.sbin/snmpd/application.c
1272
if (match != -1)
usr.sbin/snmpd/application.c
1274
match = i;
usr.sbin/snmpd/application.c
1278
match = -1;
usr.sbin/snmpd/application.c
1280
if (match != -1)
usr.sbin/snmpd/application.c
1281
varbindlen = match + repvarbinds;
usr.sbin/unbound/services/authzone.c
3066
struct auth_data* match;
usr.sbin/unbound/services/authzone.c
3067
match = az_nsec3_find_exact(z, qname, qname_len, algo,
usr.sbin/unbound/services/authzone.c
3069
if(match) {
usr.sbin/unbound/services/authzone.c
3070
if(!az_nsec3_insert(z, region, msg, match))
usr.sbin/unbound/services/authzone.c
7930
struct auth_data* match;
usr.sbin/unbound/services/authzone.c
7941
match = az_nsec3_find_exact(z, z->name, z->namelen, algo,
usr.sbin/unbound/services/authzone.c
7943
if(!match) {
usr.sbin/unbound/services/authzone.c
7947
nsec3 = az_domain_rrset(match, LDNS_RR_TYPE_NSEC3);
usr.sbin/unbound/services/authzone.c
7953
if(!zonemd_dnssec_verify_rrset(z, env, mods, dnskey, match,
usr.sbin/unbound/services/localzone.c
1050
int match = 0; /* number of labels match count */
usr.sbin/unbound/services/localzone.c
1103
match = labs;
usr.sbin/unbound/services/localzone.c
1118
if(m < match)
usr.sbin/unbound/services/localzone.c
1119
match = m;
usr.sbin/unbound/services/localzone.c
1131
dname_remove_labels(&n2, &nmlen, nmlabs - match);
usr.sbin/unbound/services/localzone.c
1144
lz_enter_zone_dname(zones, n2, nmlen, match,
usr.sbin/unbound/services/localzone.c
2016
set_kiddo_parents(struct local_zone* z, struct local_zone* match,
usr.sbin/unbound/services/localzone.c
2033
if(p->parent == match)
usr.sbin/unbound/services/rpz.c
2108
struct matched_delegation_point const* match, struct auth_zone* az)
usr.sbin/unbound/services/rpz.c
2114
if(match->dname == NULL) { return NULL; }
usr.sbin/unbound/services/rpz.c
2117
key.name = match->dname;
usr.sbin/unbound/services/rpz.c
2118
key.namelen = match->dname_len;
usr.sbin/unbound/services/rpz.c
2119
key.namelabs = dname_count_labels(match->dname);
usr.sbin/unbound/services/rpz.c
2369
struct matched_delegation_point const* match, struct auth_zone* az)
usr.sbin/unbound/services/rpz.c
2401
ret = rpz_synthesize_nsdname_localdata(r, ms, qchase, z, match, az);
usr.sbin/unbound/services/rpz.c
2420
log_rpz_apply("nsdname", match->dname, NULL,
usr.sbin/unbound/services/rpz.c
2432
struct matched_delegation_point* match)
usr.sbin/unbound/services/rpz.c
2445
match->dname = nameserver->name;
usr.sbin/unbound/services/rpz.c
2446
match->dname_len = nameserver->namelen;
usr.sbin/unbound/services/rpz.c
2450
dname_str(match->dname, nm);
usr.sbin/unbound/services/rpz.c
2474
struct matched_delegation_point match = {0};
usr.sbin/unbound/services/rpz.c
2512
is->qchase.qclass, &match);
usr.sbin/unbound/services/rpz.c
2537
return rpz_apply_nsdname_trigger(ms, &is->qchase, r, z, &match, a);
usr.sbin/unbound/testcode/fake_event.c
1203
find_match(runtime->now->match, pend->pkt, pend->pkt_len,
usr.sbin/unbound/testcode/fake_event.c
1253
find_match(runtime->now->match, pend->pkt, pend->pkt_len,
usr.sbin/unbound/testcode/fake_event.c
1384
find_match(runtime->now->match, pend->pkt, pend->pkt_len,
usr.sbin/unbound/testcode/fake_event.c
225
if((e=find_match(runtime->now->match, p->pkt, p->pkt_len,
usr.sbin/unbound/testcode/fake_event.c
252
(*entry = find_match(p->match, pend->pkt, pend->pkt_len,
usr.sbin/unbound/testcode/fake_event.c
425
find_match(runtime->now->match, ans->pkt,
usr.sbin/unbound/testcode/fake_event.c
428
runtime->now->match->lineno);
usr.sbin/unbound/testcode/fake_event.c
472
if(todo->match->match_transport == transport_tcp) {
usr.sbin/unbound/testcode/fake_event.c
478
fill_buffer_with_reply(repinfo.c->buffer, todo->match, NULL, 0, 0);
usr.sbin/unbound/testcode/fake_event.c
480
log_testpkt_reply_pkt("query pkt ", todo->match->reply_list);
usr.sbin/unbound/testcode/fake_event.c
515
if(todo->evt_type == repevt_back_reply && todo->match) {
usr.sbin/unbound/testcode/fake_event.c
516
fill_buffer_with_reply(c.buffer, todo->match, p->pkt,
usr.sbin/unbound/testcode/fake_event.c
523
if(todo->match && todo->match->reply_list->next && !error &&
usr.sbin/unbound/testcode/fake_event.c
524
p->tcp_pkt_counter < count_reply_packets(todo->match)) {
usr.sbin/unbound/testcode/memstats.c
209
if(!match(buf))
usr.sbin/unbound/testcode/replay.c
108
delete_entry(rng->match);
usr.sbin/unbound/testcode/replay.c
189
else rng->match = entry;
usr.sbin/unbound/testcode/replay.c
402
mom->match = read_entry(in, name, pstate, 1);
usr.sbin/unbound/testcode/replay.c
403
if(!mom->match) {
usr.sbin/unbound/testcode/replay.c
92
if(mom->match) {
usr.sbin/unbound/testcode/replay.c
93
delete_entry(mom->match);
usr.sbin/unbound/testcode/replay.h
229
struct entry* match;
usr.sbin/unbound/testcode/replay.h
264
struct entry* match;
usr.sbin/unbound/testcode/testpkts.c
1693
adjust_packet(struct entry* match, uint8_t** answer_pkt, size_t *answer_len,
usr.sbin/unbound/testcode/testpkts.c
1702
if(match->copy_query && origlen >= LDNS_HEADER_SIZE &&
usr.sbin/unbound/testcode/testpkts.c
1721
} else if(match->copy_query && origlen >= LDNS_HEADER_SIZE &&
usr.sbin/unbound/testcode/testpkts.c
1728
} else if(match->copy_query && origlen >= LDNS_HEADER_SIZE &&
usr.sbin/unbound/testcode/testpkts.c
1757
if(match->copy_id && reslen >= 2 && query_len >= 2)
usr.sbin/unbound/testcode/testpkts.c
1759
if(match->copy_id && reslen >= 1 && query_len >= 1)
usr.sbin/unbound/testcode/testpkts.c
1762
if(match->copy_ednsdata_assume_clientsubnet) {
usr.sbin/unbound/testcode/testpkts.c
1783
if(match->increment_ecs_scope) {
usr.sbin/unbound/testcode/testpkts.c
1788
if(match->sleeptime > 0) {
usr.sbin/unbound/testcode/testpkts.c
1789
verbose(3, "sleeping for %d seconds\n", match->sleeptime);
usr.sbin/unbound/testcode/testpkts.c
1791
sleep(match->sleeptime);
usr.sbin/unbound/testcode/testpkts.c
1793
Sleep(match->sleeptime * 1000);
usr.sbin/unbound/testcode/testpkts.h
308
void adjust_packet(struct entry* match, uint8_t** answer_pkt,
usr.sbin/unbound/util/data/msgencode.c
112
int labs, struct compress_tree_node** match, int* matchlabels,
usr.sbin/unbound/util/data/msgencode.c
123
*match = p;
usr.sbin/unbound/util/data/msgencode.c
138
*match = close;
usr.sbin/unbound/util/net_help.c
821
int match = 0;
usr.sbin/unbound/util/net_help.c
835
match += 8;
usr.sbin/unbound/util/net_help.c
840
match++;
usr.sbin/unbound/util/net_help.c
846
if(match > min) match = min;
usr.sbin/unbound/util/net_help.c
847
return match;
usr.sbin/unwindctl/parser.c
101
if (match->type == NOTOKEN || match->next == NULL)
usr.sbin/unwindctl/parser.c
104
table = match->next;
usr.sbin/unwindctl/parser.c
119
u_int i, match;
usr.sbin/unwindctl/parser.c
122
match = 0;
usr.sbin/unwindctl/parser.c
128
match++;
usr.sbin/unwindctl/parser.c
135
match++;
usr.sbin/unwindctl/parser.c
146
if (match != 1) {
usr.sbin/unwindctl/parser.c
149
else if (match > 1)
usr.sbin/unwindctl/parser.c
151
else if (match < 1)
usr.sbin/unwindctl/parser.c
87
const struct token *match;
usr.sbin/unwindctl/parser.c
92
if ((match = match_token(argv[0], table, &res)) == NULL) {