Searched refs:matched (Results 1 - 25 of 65) sorted by relevance

123

/freebsd-10.0-release/contrib/less/
H A Dpattern.c247 * Set sp and ep to the start and end of the matched string.
260 int matched; local
284 matched = match(tpattern, strlen(tpattern), line, line_len, sp, ep);
294 matched = re_search(spattern, line, line_len, 0, line_len, &search_regs) >= 0;
295 if (matched)
308 matched = !regexec(spattern, line, 1, &rm, flags);
309 if (matched)
325 matched = pcre_exec(spattern, NULL, line, line_len,
327 if (matched)
335 matched
[all...]
/freebsd-10.0-release/sys/dev/pci/
H A Deisa_pci.c81 int matched = 0; local
88 matched = 1;
95 matched = 1;
101 if (matched) {
H A Disa_pci.c105 int matched = 0; local
112 matched = 1;
147 matched = 1;
155 if (matched) {
/freebsd-10.0-release/usr.bin/vgrind/
H A Dregexp.c334 * characters matched will be copied into
344 * character matched.
355 boolean matched; /* a temporary boolean */ local
361 matched = FALSE;
369 matched = !STRNCMP (s, SSTR(cs), SCNT(cs));
370 if (matched) {
383 matched = 1; /* indicate a successful match */
397 if (matched)
412 /* the subexpression matched */
413 matched
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i386/pid/
H A Dtst.retlist.ksh46 echo wrong number of matched probes: $match
/freebsd-10.0-release/contrib/subversion/subversion/include/
H A Dsvn_time.h69 * matched to indicate whether or not @a text was parsed successfully.
74 svn_parse_date(svn_boolean_t *matched,
/freebsd-10.0-release/usr.bin/killall/
H A Dkillall.c129 int matched; local
338 matched = 1;
341 matched = 0;
345 matched = 0;
360 matched = 0;
364 matched = 0;
368 matched = 0;
369 if (matched == 0)
372 matched = 0;
386 matched
[all...]
/freebsd-10.0-release/usr.sbin/pkg_install/info/
H A Dperform.c39 char **matched; local
58 matched = matchinstalled(MatchType, pkgs, &errcode);
63 if (matched != NULL)
64 pkgs = matched;
438 char **matched; local
444 matched = matchbyorigin(origin, &errcode);
445 if (matched == NULL)
448 for (i = 0; matched[i] != NULL; i++)
449 puts(matched[i]);
461 char **matched; local
[all...]
/freebsd-10.0-release/cddl/contrib/dtracetoolkit/Docs/Examples/
H A Doneliners_examples.txt8 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
[all...]
/freebsd-10.0-release/cddl/contrib/dtracetoolkit/Examples/
H A Doneliners_examples.txt8 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
[all...]
/freebsd-10.0-release/contrib/libarchive/libarchive/test/
H A Dtest_acl_pax.c125 int matched; local
134 for (i = 0, matched = 0; i < n && !matched; i++) {
140 matched = 1;
144 if (!matched) printf("No match for user_obj perm\n");
149 if (!matched) printf("No match for group_obj perm\n");
154 if (!matched) printf("No match for other perm\n");
162 assert(matched == 1);
171 assert(n == 0); /* Number of ACLs not matched should == 0 */
H A Dtest_acl_posix1e.c157 int matched; local
166 for (i = 0, matched = 0; i < n && !matched; i++) {
172 matched = 1;
176 if (!matched) printf("No match for user_obj perm\n");
181 if (!matched) printf("No match for group_obj perm\n");
186 if (!matched) printf("No match for other perm\n");
194 assert(matched == 1);
203 assert(n == 0); /* Number of ACLs not matched should == 0 */
H A Dtest_acl_freebsd_nfs4.c298 int matched; local
321 for (i = 0, matched = 0; i < n && !matched; i++) {
326 matched = 1;
331 assert(matched == 1);
351 int matched; local
376 for (i = 0, matched = 0; i < n && !matched; i++) {
384 matched = 1;
391 assert(matched
[all...]
H A Dtest_acl_freebsd_posix1e.c135 int matched; local
160 for (i = 0, matched = 0; i < n && !matched; i++) {
165 matched = 1;
171 assert(matched == 1);
H A Dtest_acl_nfs4.c216 int matched; local
225 for (i = 0, matched = 0; i < n && !matched; i++) {
231 matched = 1;
237 assertEqualInt(1, matched);
244 assertEqualInt(0, n); /* Number of ACLs not matched should == 0 */
/freebsd-10.0-release/contrib/diff/lib/
H A Dexclude.c164 bool matched = ((*matcher) (pattern, f, options) == 0); local
168 for (p = f; *p && ! matched; p++)
170 matched = ((*matcher) (pattern, p + 1, options) == 0);
172 excluded ^= matched;
/freebsd-10.0-release/crypto/heimdal/kuser/
H A Dcopy_cred_cache.c89 unsigned int matched; local
152 matchfunc, &ctx, &matched);
157 if(matched == 0)
162 return matched == 0;
/freebsd-10.0-release/contrib/file/
H A Dsoftmagic.c94 * successfully matched continuation.
279 * This continuation matched. Print
1692 int matched; local
1740 matched = 1;
1744 matched = fv != fl;
1748 matched = fv == fl;
1752 matched = fv > fl;
1756 matched = fv < fl;
1760 matched = 0;
1765 return matched;
[all...]
/freebsd-10.0-release/contrib/binutils/libiberty/
H A Dfnmatch.c175 goto matched;
184 matched:;
185 /* Skip the rest of the [...] that already matched. */
/freebsd-10.0-release/contrib/gcclibs/libiberty/
H A Dfnmatch.c175 goto matched;
184 matched:;
185 /* Skip the rest of the [...] that already matched. */
/freebsd-10.0-release/sys/isa/
H A Disahint.c159 goto matched;
173 matched:
/freebsd-10.0-release/usr.sbin/pkg_install/lib/
H A Dmatch.c61 char *matched; local
106 matched = NULL;
109 matched = f->fts_name;
114 matched = f->fts_name;
118 if (matched != NULL || errcode != 0)
121 if (errcode == 0 && matched != NULL)
122 errcode = storeappend(store, matched);
/freebsd-10.0-release/contrib/gcc/config/arm/
H A Dunwind-arm.c910 void *matched; local
917 matched = (void *)(ucbp + 1);
923 &matched))
924 matched = (void *)0;
927 if (matched)
931 ucbp->barrier_cache.bitpattern[0] = (_uw) matched;
936 /* Handler out of range, or not matched. */
950 /* Catch handler not matched. Advance to the next descriptor. */
964 void *matched; local
968 matched
[all...]
/freebsd-10.0-release/sys/boot/common/
H A Dcommands.c130 int hfd, matched, doindex; local
159 matched = doindex;
171 if(matched) /* nothing more on this topic, stop scanning */
175 /* topic matched */
176 matched = 1;
198 if (!matched) {
/freebsd-10.0-release/usr.sbin/lpr/common_source/
H A Dmatchjobs.c415 * Keep track of which jobs have already been matched by this
468 * want to know the userid of this job that matched.
473 printf("\t [ job matched! ]\n");
488 * to the matched job -- including the removal of it.
490 * This returns the number of jobs which were matched.
498 int cnt, matched, total; local
518 matched = match_jobspec(*qent, jspec);
519 if (!matched)
547 matched = match_jobspec(*qent, jspec);
548 if (!matched)
[all...]

Completed in 354 milliseconds

123