Searched refs:matching (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-9.3-release/contrib/libarchive/libarchive_fe/
H A Dmatching.h34 int lafe_exclude(struct lafe_matching **matching, const char *pattern);
35 int lafe_exclude_from_file(struct lafe_matching **matching,
37 int lafe_include(struct lafe_matching **matching, const char *pattern);
38 int lafe_include_from_file(struct lafe_matching **matching,
H A Dmatching.c41 #include "matching.h"
64 * The matching logic here needs to be re-thought. I started out to
65 * try to mimic gtar's matching logic, but it's not entirely
75 lafe_exclude(struct lafe_matching **matching, const char *pattern) argument
78 if (*matching == NULL)
79 initialize_matching(matching);
80 add_pattern(&((*matching)->exclusions), pattern);
81 (*matching)->exclusions_count++;
86 lafe_exclude_from_file(struct lafe_matching **matching, const char *pathname) argument
94 if (lafe_exclude(matching,
102 lafe_include(struct lafe_matching **matching, const char *pattern) argument
114 lafe_include_from_file(struct lafe_matching **matching, const char *pathname, int nullSeparator) argument
151 lafe_excluded(struct lafe_matching *matching, const char *pathname) argument
230 lafe_cleanup_exclusions(struct lafe_matching **matching) argument
254 initialize_matching(struct lafe_matching **matching) argument
262 lafe_unmatched_inclusions(struct lafe_matching *matching) argument
271 lafe_unmatched_inclusions_warn(struct lafe_matching *matching, const char *msg) argument
[all...]
/freebsd-9.3-release/contrib/binutils/bfd/
H A Dformat.c102 (bfd *abfd, bfd_format format, char ***matching);
107 case, if @var{matching} is not NULL, it will be filled in with
112 When done with the list that @var{matching} points to, the caller
117 bfd_check_format_matches (bfd *abfd, bfd_format format, char ***matching) argument
142 if (matching)
146 *matching = NULL;
164 if (matching)
175 if (matching)
206 if (matching)
229 if (matching)
[all...]
/freebsd-9.3-release/sbin/newfs/
H A DMakefile19 diff --ignore-matching-lines=FreeBSD _.test ${.CURDIR}/ref.test
/freebsd-9.3-release/usr.bin/cpio/
H A DMakefile14 SRCS+= err.c line_reader.c matching.c pathmatch.c
/freebsd-9.3-release/contrib/libarchive/cpio/
H A Dcpio.h34 #include "matching.h"
91 struct lafe_matching *matching; member in struct:cpio
H A Dcpio.c82 #include "matching.h"
202 lafe_include_from_file(&cpio->matching,
209 lafe_exclude(&cpio->matching, cpio->optarg);
364 lafe_include(&cpio->matching, *cpio->argv);
845 if (lafe_excluded(cpio->matching, archive_entry_pathname(entry)))
942 if (lafe_excluded(cpio->matching, archive_entry_pathname(entry)))
/freebsd-9.3-release/usr.bin/tar/
H A DMakefile22 matching.c \
/freebsd-9.3-release/contrib/binutils/binutils/
H A Dsize.c267 char **matching;
273 if (bfd_check_format_matches (abfd, bfd_object, &matching))
283 list_matching_formats (matching);
284 free (matching);
289 if (bfd_check_format_matches (abfd, bfd_core, &matching))
308 list_matching_formats (matching);
309 free (matching);
264 char **matching; local
H A Daddr2line.c272 char **matching;
284 if (! bfd_check_format_matches (abfd, bfd_object, &matching))
289 list_matching_formats (matching);
290 free (matching);
269 char **matching; local
H A Dcoffdump.c477 char **matching; local
536 if (! bfd_check_format_matches (abfd, bfd_object, &matching))
542 list_matching_formats (matching);
543 free (matching);
H A Dar.c240 fprintf (s, _(" [P] - use full path names when matching\n"));
690 char **matching;
754 if (! bfd_check_format_matches (arch, bfd_archive, &matching))
759 list_matching_formats (matching);
760 free (matching);
1233 char **matching;
1247 if (! bfd_check_format_matches (arch, bfd_archive, &matching))
1252 list_matching_formats (matching);
1253 free (matching);
687 char **matching; local
H A Dnm.c1112 char **matching;
1132 if (bfd_check_format_matches (arfile, bfd_object, &matching))
1144 list_matching_formats (matching);
1145 free (matching);
1171 char **matching;
1187 else if (bfd_check_format_matches (file, bfd_object, &matching))
1198 list_matching_formats (matching);
1199 free (matching);
1105 char **matching; local
1164 char **matching; local
H A Drescoff.c118 char **matching;
131 if (! bfd_check_format_matches (abfd, bfd_object, &matching))
135 list_matching_formats (matching);
117 char **matching; local
H A Dobjdump.c2951 char **matching;
2953 if (bfd_check_format_matches (abfd, bfd_object, &matching))
2962 list_matching_formats (matching);
2963 free (matching);
2973 if (bfd_check_format_matches (abfd, bfd_core, &matching))
2983 list_matching_formats (matching);
2984 free (matching);
2941 char **matching; local
H A Dsrconv.c1751 char **matching; local
1856 if (!bfd_check_format_matches (abfd, bfd_object, &matching))
1862 list_matching_formats (matching);
1863 free (matching);
/freebsd-9.3-release/contrib/libarchive/tar/
H A Dread.c85 if (lafe_unmatched_inclusions_warn(bsdtar->matching, "Not found in archive") != 0)
94 if (lafe_unmatched_inclusions_warn(bsdtar->matching, "Not found in archive") != 0)
148 lafe_include(&bsdtar->matching, *bsdtar->argv);
153 lafe_include_from_file(&bsdtar->matching,
193 lafe_unmatched_inclusions(bsdtar->matching) == 0)
255 if (lafe_excluded(bsdtar->matching, archive_entry_pathname(entry)))
H A Dbsdtar.h31 #include "matching.h"
104 struct lafe_matching *matching; /* for matching.c */ member in struct:bsdtar
H A Dbsdtar.c261 if (lafe_exclude(&bsdtar->matching, bsdtar->optarg))
314 if (lafe_include(&bsdtar->matching, bsdtar->optarg))
518 if (lafe_exclude_from_file(&bsdtar->matching, bsdtar->optarg))
641 lafe_cleanup_exclusions(&bsdtar->matching);
/freebsd-9.3-release/contrib/ipfilter/tools/
H A Dipmon_y.y64 %type <opt> protocol result rule srcip srcport logtag matching
75 line: IPM_MATCH '{' matching '}' IPM_DO '{' doing '}' ';'
93 matching: label
95 | matchopt ',' matching { $1->o_next = $3; $$ = $1; }
332 * once per matching statement.
/freebsd-9.3-release/contrib/wpa/src/utils/
H A Dtrace.c55 char **matching; local
69 if (!bfd_check_format_matches(abfd, bfd_object, &matching)) {
71 free(matching);
/freebsd-9.3-release/tools/tools/termcap/
H A Dtermcap.pl41 Show all lengths or the ones for terminals matching [term]
/freebsd-9.3-release/contrib/ipfilter/perl/
H A Dipfmeta.pl100 ruleset. It does this through the use of 'objects'. A matching
/freebsd-9.3-release/contrib/sendmail/contrib/
H A Dbuildvirtuser45 matching the virtual domain name and the contents containing a list of
/freebsd-9.3-release/contrib/cvs/contrib/
H A Dcvs_acls.in125 avoid matching the 'cvsacl's entries.]
163 Accurately report restricted entries and their matching patterns
309 A final note about the repository matching pattern. The example above
358 access to ALL users, then follow it with a matching 'allow' rule that will
514 # repository_matches --> [branch, matching-pattern]
515 # (Used during module/branch matching loop)
625 # ---------------------------------------------------------- user matching
635 # ---------------------------------------------------- repository matching

Completed in 304 milliseconds

12