Home
last modified time | relevance | path

Searched refs:matched (Results 1 – 25 of 195) sorted by relevance

12345678

/freebsd/contrib/less/
H A Dpattern.c299 int matched; in match_pattern1() local
305 matched = match(tpattern, strlen(tpattern), line, line_len, &sp, &ep, nsp); in match_pattern1()
313 matched = re_search(pattern, line, line_len, 0, line_len, &search_regs) >= 0; in match_pattern1()
314 if (matched) in match_pattern1()
331 matched = !regexec(pattern, line, RM_COUNT, rm, flags); in match_pattern1()
332 if (matched) in match_pattern1()
369 matched = (mcount > 0); in match_pattern1()
392 matched = (mcount > 0); in match_pattern1()
393 if (matched) in match_pattern1()
416 matched = (re_exec(line) == 1); in match_pattern1()
[all …]
/freebsd/usr.bin/vgrind/
H A Dregexp.c340 bool matched; /* a temporary bool */ in expmatch() local
346 matched = false; in expmatch()
354 matched = !STRNCMP (s, SSTR(cs), SCNT(cs)); in expmatch()
355 if (matched) { in expmatch()
368 matched = 1; /* indicate a successful match */ in expmatch()
382 if (matched) in expmatch()
398 matched = 1; in expmatch()
403 matched = 0; in expmatch()
407 matched = 1; /* indicate a successful match */ in expmatch()
506 matched = 1; in expmatch()
[all …]
/freebsd/usr.bin/killall/
H A Dkillall.c130 int matched; in main() local
344 matched = 1; in main()
347 matched = 0; in main()
351 matched = 0; in main()
366 matched = 0; in main()
370 matched = 0; in main()
374 matched = 0; in main()
375 if (matched == 0) in main()
378 matched = 0; in main()
392 matched = 1; in main()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.cpp148 InternalMmapVector<Suppression *> matched; in PrintMatchedSuppressions() local
150 suppression_ctx->GetMatched(&matched); in PrintMatchedSuppressions()
151 if (!matched.size()) in PrintMatchedSuppressions()
154 for (uptr i = 0; i < matched.size(); i++) in PrintMatchedSuppressions()
155 hit_count += atomic_load_relaxed(&matched[i]->hit_count); in PrintMatchedSuppressions()
158 for (uptr i = 0; i < matched.size(); i++) { in PrintMatchedSuppressions()
159 Printf("%d %s:%s\n", atomic_load_relaxed(&matched[i]->hit_count), in PrintMatchedSuppressions()
160 matched[i]->type, matched[i]->templ); in PrintMatchedSuppressions()
/freebsd/usr.bin/grep/
H A Dutil.c69 static bool procmatches(struct mprintc *mc, struct parsec *pc, bool matched);
131 bool matched, ok; in grep_tree() local
134 matched = false; in grep_tree()
192 matched = true; in grep_tree()
200 return (matched); in grep_tree()
258 procmatches(struct mprintc *mc, struct parsec *pc, bool matched) in procmatches() argument
276 if (matched) { in procmatches()
495 bool lastmatched, matched; in procline() local
523 matched = false; in procline()
587 matched = true; in procline()
[all …]
H A Dgrep.c320 bool matched; local
707 matched = grep_tree(aargv);
709 for (matched = false; aargc--; ++aargv) {
713 matched = true;
717 matched = !matched;
723 exit(matched ? (file_err ? (qflag ? 0 : 2) : 0) : (file_err ? 2 : 1));
/freebsd/crypto/openssl/doc/man3/
H A DSSL_set1_host.pod47 from the peer certificate that matched one of the reference
49 matched in the peer certificate may be a wildcard name. When one
52 rather than a fixed name, the matched peer name may be a sub-domain
71 matched. Otherwise, it returns the matched peername. To determine
80 matched in the certificate (which might be a wildcard) is retrieved,
96 /* Name checks were in scope and matched the peername */
H A DSSL_CTX_dane_enable.pod95 the matched DANE trust-anchor after successful connection completion.
97 0 if an EE TLSA record directly matched the leaf certificate, or a positive
98 number indicating the depth at which a TA record matched an issuer certificate.
103 If the B<mcert> argument is not B<NULL> and a TLSA record matched a chain
111 If no TLSA records directly matched any elements of the certificate chain, but
122 matched the peer certificate chain.
176 nonnegative value indicates the chain depth at which the TLSA record matched a
191 The actual name matched in the certificate (which might be a wildcard) is
311 depth ? "matched TA certificate" : "matched EE certificate",
315 /* Name checks were in scope and matched the peername */
[all …]
/freebsd/sys/dev/usb/input/
H A Datp.c305 boolean_t matched; /* to track pspans as they match against strokes. */ member
343 boolean_t matched; member
605 boolean_t matched; /*to track components as they match against pspans.*/ member
620 boolean_t matched; /* to track match against fingers.*/ member
1261 spans[i].matched = false; /* not yet matched against a stroke */ in fg_detect_pspans()
1315 fingers[n_fingers].matched = false; in wsp_interpret_sensor_data()
1407 if (strokep->components[axis].matched) in fg_match_strokes_against_pspans()
1411 if (pspans[i].matched) in fg_match_strokes_against_pspans()
1418 strokep->components[axis].matched = true; in fg_match_strokes_against_pspans()
1424 pspans[i].matched = true; in fg_match_strokes_against_pspans()
[all …]
/freebsd/crypto/heimdal/kuser/
H A Dcopy_cred_cache.c89 unsigned int matched; in copy_cred_cache() local
152 matchfunc, &ctx, &matched); in copy_cred_cache()
157 if(matched == 0) in copy_cred_cache()
162 return matched == 0; in copy_cred_cache()
/freebsd/contrib/file/src/
H A Dsoftmagic.c2102 int matched; in magiccheck() local
2160 matched = 1; in magiccheck()
2164 matched = isunordered(fl, fv) ? 1 : fv != fl; in magiccheck()
2168 matched = isunordered(fl, fv) ? 0 : fv == fl; in magiccheck()
2172 matched = isgreater(fv, fl); in magiccheck()
2176 matched = isless(fv, fl); in magiccheck()
2184 return matched; in magiccheck()
2193 matched = 1; in magiccheck()
2197 matched = isunordered(dv, dl) ? 1 : dv != dl; in magiccheck()
2201 matched = isunordered(dv, dl) ? 0 : dv == dl; in magiccheck()
[all …]
/freebsd/sys/dev/pci/
H A Disa_pci.c105 int matched = 0; in isab_pci_probe() local
112 matched = 1; in isab_pci_probe()
144 matched = 1; in isab_pci_probe()
152 if (matched) { in isab_pci_probe()
/freebsd/contrib/kyua/engine/
H A Dfilters.cpp299 engine::test_filters::difference(const std::set< test_filter >& matched) const in difference()
302 matched.begin(), matched.end())); in difference()
306 matched.begin(), matched.end(), in difference()
/freebsd/contrib/diff/lib/
H A Dexclude.c164 bool matched = ((*matcher) (pattern, f, options) == 0); in excluded_filename() local
168 for (p = f; *p && ! matched; p++) in excluded_filename()
170 matched = ((*matcher) (pattern, p + 1, options) == 0); in excluded_filename()
172 excluded ^= matched; in excluded_filename()
/freebsd/usr.sbin/lpr/common_source/
H A Dmatchjobs.c498 int cnt, matched, total; in scanq_jobspec() local
518 matched = match_jobspec(*qent, jspec); in scanq_jobspec()
519 if (!matched) in scanq_jobspec()
547 matched = match_jobspec(*qent, jspec); in scanq_jobspec()
548 if (!matched) in scanq_jobspec()
/freebsd/stand/common/
H A Dcommands.c127 int hfd, matched, doindex; in command_help() local
159 matched = doindex; in command_help()
171 if (matched) { in command_help()
177 matched = 1; in command_help()
205 if (!matched) { in command_help()
/freebsd/contrib/libarchive/libarchive/test/
H A Dtest_acl_platform_nfs4.c694 int matched; in compare_acls()
756 for (i = 0, matched = 0; i < n && !matched; i++) { in compare_acls()
761 matched = 1; in compare_acls()
767 assert(matched == 1); in compare_acls()
787 int matched; in compare_entry_acls()
813 for (i = 0, matched = 0; i < n && !matched; i++) { in compare_entry_acls()
821 matched = 1; in compare_entry_acls()
828 assert(matched in compare_entry_acls()
695 int matched; compare_acls() local
788 int matched; compare_entry_acls() local
[all...]
H A Dtest_acl_platform_posix1e.c228 int matched;
259 for (i = 0, matched = 0; i < n && !matched; i++) {
264 matched = 1;
270 assert(matched == 1);
229 int matched; global() local
/freebsd/usr.sbin/cpucontrol/
H A Dintel.c235 goto matched; in intel_update()
241 goto matched; in intel_update()
246 matched: in intel_update()
/freebsd/contrib/openbsm/libbsm/
H A Dbsm_control.c261 int i, matched; in au_strtopol() local
270 matched = i = 0; in au_strtopol()
275 matched = 1; in au_strtopol()
280 if (!matched) { in au_strtopol()
/freebsd/sys/isa/
H A Disahint.c158 goto matched; in isa_hint_device_unit()
172 matched: in isa_hint_device_unit()
/freebsd/contrib/bmake/
H A Dstr.c339 res.matched = neg; in Str_Match()
384 res.matched = true; in Str_Match()
395 res.matched = *str == '\0'; in Str_Match()
/freebsd/contrib/pf/authpf/
H A Dauthpf.c473 int matched; in allowed_luser()
506 matched = 0; in allowed_luser()
523 matched++; in allowed_luser()
545 matched++; in allowed_luser()
551 matched = strcmp(pw->pw_name, buf) == 0 || in allowed_luser()
560 if (matched) in allowed_luser()
561 return (1); /* matched an allowed user/group */ in allowed_luser()
475 int matched; allowed_luser() local
/freebsd/contrib/googletest/googlemock/src/
H A Dgmock-matchers.cc395 char matched = matrix.HasEdge(ilhs, irhs); in VerifyMatchMatrix() local
396 element_matched[ilhs] |= matched; in VerifyMatchMatrix()
397 matcher_matched[irhs] |= matched; in VerifyMatchMatrix()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_match.c49 int matched; member
714 struct match *matched; in path_excluded() local
725 matched = NULL; in path_excluded()
728 if (!match->matched && in path_excluded()
733 match->matched = 1; in path_excluded()
734 matched = match; in path_excluded()
748 if (matched != NULL) in path_excluded()
756 if (match->matched && in path_excluded()
882 if (m->matched) in match_list_unmatched_inclusions_next()
1796 m->matched = 1; in match_owner_name_mbs()
[all …]

12345678