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

123

/freebsd-9.3-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-9.3-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-9.3-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-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i386/pid/
H A Dtst.retlist.ksh46 echo wrong number of matched probes: $match
/freebsd-9.3-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-9.3-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-9.3-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-9.3-release/usr.bin/killall/
H A Dkillall.c126 int matched; local
329 matched = 1;
332 matched = 0;
336 matched = 0;
351 matched = 0;
355 matched = 0;
359 matched = 0;
360 if (matched == 0)
363 matched = 0;
377 matched
[all...]
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_acl.c398 * scan ACL for a matching user or group, and use matched entry
434 xfs_acl_entry_t matched; local
439 matched.ae_tag = 0; /* Invalid type */
440 matched.ae_perm = 0;
448 if (matched.ae_tag == ACL_USER_OBJ)
450 if (matched.ae_tag == ACL_USER) {
465 matched.ae_tag = ACL_USER_OBJ;
466 matched.ae_perm = allows;
471 matched.ae_tag = ACL_USER;
472 matched
[all...]
/freebsd-9.3-release/contrib/libarchive/libarchive/test/
H A Dtest_acl_basic.c127 int matched; local
136 for (i = 0, matched = 0; i < n && !matched; i++) {
142 matched = 1;
146 if (!matched) printf("No match for user_obj perm\n");
151 if (!matched) printf("No match for group_obj perm\n");
156 if (!matched) printf("No match for other perm\n");
164 assert(matched == 1);
178 assert(n == 0); /* Number of ACLs not matched should == 0 */
H A Dtest_acl_pax.c349 int matched; local
358 for (i = 0, matched = 0; i < n && !matched; i++) {
364 matched = 1;
368 if (!matched) printf("No match for user_obj perm\n");
373 if (!matched) printf("No match for group_obj perm\n");
378 if (!matched) printf("No match for other perm\n");
386 assert(matched == 1);
400 assert(n == 0); /* Number of ACLs not matched should == 0 */
H A Dtest_acl_freebsd.c135 int matched; local
155 for (i = 0, matched = 0; i < n && !matched; i++) {
160 matched = 1;
166 assert(matched == 1);
/freebsd-9.3-release/contrib/libarchive/libarchive_fe/
H A Dmatching.c154 struct match *matched; local
166 matched = NULL;
170 * If this pattern has never been matched,
182 matched = match;
186 * We didn't find a pattern that had never been matched, but
189 if (matched != NULL) {
190 matched->matches++;
/freebsd-9.3-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-9.3-release/crypto/heimdal/kuser/
H A Dcopy_cred_cache.c121 unsigned int matched; local
204 whichfields, &mcreds, &matched);
209 if(matched == 0)
214 return matched == 0;
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dfnmatch.c175 goto matched;
184 matched:;
185 /* Skip the rest of the [...] that already matched. */
/freebsd-9.3-release/contrib/cvs/lib/
H A Dfnmatch.c142 goto matched;
151 matched:;
152 /* Skip the rest of the [...] that already matched. */
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dfnmatch.c175 goto matched;
184 matched:;
185 /* Skip the rest of the [...] that already matched. */
/freebsd-9.3-release/sys/isa/
H A Disahint.c159 goto matched;
173 matched:
/freebsd-9.3-release/contrib/file/src/
H A Dsoftmagic.c121 * successfully matched continuation.
324 * This continuation matched. Print
1822 int matched; local
1873 matched = 1;
1877 matched = fv != fl;
1881 matched = fv == fl;
1885 matched = fv > fl;
1889 matched = fv < fl;
1897 return matched;
1906 matched
[all...]
/freebsd-9.3-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-9.3-release/contrib/gcc/config/arm/
H A Dunwind-arm.c850 void *matched; local
857 matched = (void *)(ucbp + 1);
863 &matched))
864 matched = (void *)0;
867 if (matched)
871 ucbp->barrier_cache.bitpattern[0] = (_uw) matched;
876 /* Handler out of range, or not matched. */
890 /* Catch handler not matched. Advance to the next descriptor. */
904 void *matched; local
908 matched
[all...]
/freebsd-9.3-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-9.3-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 300 milliseconds

123