HomeSort by: relevance | last modified time | path
    Searched refs:matched (Results 1 - 25 of 199) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/external/bsd/openldap/dist/servers/slapd/back-monitor/
compare.c 38 Entry *e, *matched = NULL; local
42 monitor_cache_dn2entry( op, rs, &op->o_req_ndn, &e, &matched );
45 if ( matched ) {
46 if ( !access_allowed_mask( op, matched,
52 rs->sr_matched = matched->e_dn;
56 if ( matched ) {
57 monitor_cache_release( mi, matched );
modify.c 43 Entry *matched; local
49 monitor_cache_dn2entry( op, rs, &op->o_req_ndn, &e, &matched );
52 if ( matched ) {
53 if ( !access_allowed_mask( op, matched,
59 rs->sr_matched = matched->e_dn;
63 if ( matched != NULL ) {
65 monitor_cache_release( mi, matched );
search.c 180 Entry *e = NULL, *matched = NULL; local
188 monitor_cache_dn2entry( op, rs, &op->o_req_ndn, &e, &matched );
191 if ( matched ) {
192 if ( !access_allowed_mask( op, matched,
198 rs->sr_matched = matched->e_dn;
203 if ( matched ) {
204 monitor_cache_release( mi, matched );
  /src/sys/arch/arc/arc/
platform.c 58 int i, rv, matched = -1, match = 0, ambiguous_match = 0; local
64 matched = i;
73 print_platform(plattab[matched]);
75 if (i == matched)
87 print_platform(plattab[matched]);
91 platform = plattab[matched];
  /src/usr.sbin/user/
main.c 78 int matched; local
82 for (matched = i = 0 ; i < cmdp->c_wc && i < MaxCmdWords ; i++) {
86 matched += 1;
92 if (matched == cmdp->c_wc) {
93 return (*cmdp->c_func)(argc - (matched - 1), argv + (matched - 1));
  /src/external/gpl2/mkhybrid/dist/libfile/
softmagic.c 93 * successfully matched continuation.
243 int matched; local
299 matched = 1;
303 matched = v != l;
306 v, l, matched);
310 matched = v == l;
313 v, l, matched);
318 matched = v > l;
321 v, l, matched);
324 matched = (Int32_t) v > (Int32_t) l
    [all...]
  /src/external/ibm-public/postfix/dist/src/global/
user_acl.c 72 int matched; local
110 if ((matched = string_list_match(list, name)) == 0) {
119 return (matched ? 0 : vstring_str(who));
  /src/external/bsd/less/dist/
pattern.c 295 * Set sp[0] and ep[0] to the start and end of the matched string.
296 * Set sp[i] and ep[i] to the start and end of the i-th matched subpattern.
301 int matched; local
307 matched = match(tpattern, strlen(tpattern), line, line_len, &sp, &ep, nsp);
315 matched = re_search(pattern, line, line_len, 0, line_len, &search_regs) >= 0;
316 if (matched)
333 matched = !regexec(pattern, line, RM_COUNT, rm, flags);
334 if (matched)
371 matched = (mcount > 0);
394 matched = (mcount > 0)
449 int matched = match_pattern1(pattern, tpattern, line, line_len, sp, ep, nsp, notbol, search_type); local
    [all...]
  /src/usr.bin/systat/
disks.c 89 int matched; local
105 matched = 0;
111 matched = 1;
113 if (matched == 0)
  /src/usr.bin/vgrind/
regexp.c 341 * characters matched will be copied into
351 * character matched.
362 bool matched; /* a temporary bool */ local
368 matched = false;
376 matched = !STRNCMP (s, SSTR(cs), SCNT(cs));
377 if (matched) {
390 matched = 1; /* indicate a successful match */
404 if (matched)
419 /* the subexpression matched */
420 matched = 1
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_suppressions.cc 108 VPrintf(2, "ThreadSanitizer: matched suppression '%s'\n", (*sp)->templ);
146 VPrintf(2, "ThreadSanitizer: matched suppression '%s'\n", s->templ);
155 InternalMmapVector<Suppression *> matched; local
157 suppression_ctx->GetMatched(&matched);
158 if (!matched.size())
161 for (uptr i = 0; i < matched.size(); i++)
162 hit_count += atomic_load_relaxed(&matched[i]->hit_count);
163 Printf("ThreadSanitizer: Matched %d suppressions (pid=%d):\n", hit_count,
165 for (uptr i = 0; i < matched.size(); i++) {
166 Printf("%d %s:%s\n", atomic_load_relaxed(&matched[i]->hit_count)
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_suppressions.cpp 99 VPrintf(2, "ThreadSanitizer: matched suppression '%s'\n", (*sp)->templ);
137 VPrintf(2, "ThreadSanitizer: matched suppression '%s'\n", s->templ);
146 InternalMmapVector<Suppression *> matched; local
148 suppression_ctx->GetMatched(&matched);
149 if (!matched.size())
152 for (uptr i = 0; i < matched.size(); i++)
153 hit_count += atomic_load_relaxed(&matched[i]->hit_count);
154 Printf("ThreadSanitizer: Matched %d suppressions (pid=%d):\n", hit_count,
156 for (uptr i = 0; i < matched.size(); i++) {
157 Printf("%d %s:%s\n", atomic_load_relaxed(&matched[i]->hit_count)
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_suppressions.cpp 101 VPrintf(2, "ThreadSanitizer: matched suppression '%s'\n", (*sp)->templ);
139 VPrintf(2, "ThreadSanitizer: matched suppression '%s'\n", s->templ);
148 InternalMmapVector<Suppression *> matched; local
150 suppression_ctx->GetMatched(&matched);
151 if (!matched.size())
154 for (uptr i = 0; i < matched.size(); i++)
155 hit_count += atomic_load_relaxed(&matched[i]->hit_count);
156 Printf("ThreadSanitizer: Matched %d suppressions (pid=%d):\n", hit_count,
158 for (uptr i = 0; i < matched.size(); i++) {
159 Printf("%d %s:%s\n", atomic_load_relaxed(&matched[i]->hit_count)
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
dtcompilerparser.l 94 DbgPrint(ASL_PARSE_OUTPUT,"Continuation matched\n");
99 DbgPrint(ASL_PARSE_OUTPUT, ": Matched\n");
104 <INITIAL,DATA_STATE>{WhiteSpace} { DbgPrint(ASL_PARSE_OUTPUT,"Whitespace matched\n"); }
106 <INITIAL,DATA_STATE>{Comment} { DbgPrint(ASL_PARSE_OUTPUT,"Comment matched\n"); }
156 "Newline matched (data state). Current line number: %u\n",DtCompilerParserlineno);
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++26/
text_encoding.cc 69 bool matched = false; local
78 matched = true;
84 return matched;
  /src/external/cddl/dtracetoolkit/dist/Docs/Examples/
oneliners_examples.txt 8 dtrace: description 'proc:::exec-success ' matched 1 probe
25 dtrace: description 'syscall::open*:entry ' matched 2 probes
50 dtrace: description 'syscall:::entry ' matched 228 probes
65 dtrace: description 'syscall:::entry ' matched 228 probes
87 dtrace: description 'syscall:::entry ' matched 228 probes
104 dtrace: description 'sysinfo:::readch ' matched 4 probes
121 dtrace: description 'sysinfo:::writech ' matched 4 probes
142 dtrace: description 'sysinfo:::readch ' matched 4 probes
171 dtrace: description 'sysinfo:::writech ' matched 4 probes
220 dtrace: description 'vminfo:::pgpgin ' matched 1 prob
    [all...]
  /src/external/cddl/dtracetoolkit/dist/Examples/
oneliners_examples.txt 8 dtrace: description 'proc:::exec-success ' matched 1 probe
25 dtrace: description 'syscall::open*:entry ' matched 2 probes
50 dtrace: description 'syscall:::entry ' matched 228 probes
65 dtrace: description 'syscall:::entry ' matched 228 probes
87 dtrace: description 'syscall:::entry ' matched 228 probes
104 dtrace: description 'sysinfo:::readch ' matched 4 probes
121 dtrace: description 'sysinfo:::writech ' matched 4 probes
142 dtrace: description 'sysinfo:::readch ' matched 4 probes
171 dtrace: description 'sysinfo:::writech ' matched 4 probes
220 dtrace: description 'vminfo:::pgpgin ' matched 1 prob
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_suppressions.h 43 void GetMatched(InternalMmapVector<Suppression *> *matched);
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_suppressions.h 42 void GetMatched(InternalMmapVector<Suppression *> *matched);
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_suppressions.h 42 void GetMatched(InternalMmapVector<Suppression *> *matched);
  /src/external/bsd/openldap/dist/servers/slapd/back-mdb/
dn2entry.c 31 * entry. If the requested DN is not found and matched is TRUE, return info
43 int matched )
58 if ( matched ) {
  /src/external/mpl/dhcp/dist/relay/tests/
relay_unittests.c 127 struct interface_info *matched; local
133 matched = 0;
140 ret = strip_relay_agent_options(&ifaces, &matched, &packet, len);
187 ret = strip_relay_agent_options(&ifaces, &matched, &packet, len);
204 ret = strip_relay_agent_options(&ifaces, &matched, &packet, len);
224 ret = strip_relay_agent_options(&ifaces, &matched, &packet, len);
269 ret = strip_relay_agent_options(&ifaces, &matched, &u.packet, 4095);
  /src/sys/arch/landisk/dev/
rs5c313_landisk.c 78 static int matched = 0; local
80 if (matched)
83 matched = 1;
  /src/external/gpl2/diffutils/dist/lib/
exclude.c 174 bool matched = ((*matcher) (pattern, f, options) == 0); local
178 for (p = f; *p && ! matched; p++)
180 matched = ((*matcher) (pattern, p + 1, options) == 0);
182 excluded ^= matched;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
aarch64-sve.exp 51 regexp {. = ([0-9]+)} $expect_out(buffer) matched ret

Completed in 58 milliseconds

1 2 3 4 5 6 7 8