Home
last modified time | relevance | path

Searched full:exclude (Results 1 – 25 of 592) sorted by relevance

12345678910>>...24

/freebsd/cddl/usr.sbin/dtrace/tests/tools/
H A Dexclude.sh25 exclude() function
39 "${TESTBASE}/${2}") echo "Invalid exclude for $2" >&2; exit 1; ;;
41 exclude "$1" "${file##${TESTBASE}/}"
45 exclude EXFAIL common/aggs/tst.subr.d
46 exclude EXFAIL common/dtraceUtil/tst.ELFGenerationOut.d.ksh
47 exclude EXFAIL common/dtraceUtil/tst.ELFGenerationWithO.d.ksh
48 exclude EXFAIL common/funcs/tst.copyin.d
49 exclude EXFAIL common/funcs/tst.copyinto.d
50 exclude EXFAIL common/funcs/tst.ddi_pathname.d
51 exclude EXFAIL common/io/tst.fds.d
[all …]
/freebsd/contrib/llvm-project/llvm/include/
H A Dmodule.modulemap44 // Exclude these; they're intended to be included into only a single
46 exclude header "llvm/CodeGen/LinkAllAsmWriterComponents.h"
47 exclude header "llvm/CodeGen/LinkAllCodegenComponents.h"
137 exclude header "llvm/DebugInfo/PDB/DIA/DIADataStream.h"
138 exclude header "llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h"
139 exclude header "llvm/DebugInfo/PDB/DIA/DIAEnumFrameData.h"
140 exclude header "llvm/DebugInfo/PDB/DIA/DIAEnumInjectedSources.h"
141 exclude header "llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h"
142 exclude header "llvm/DebugInfo/PDB/DIA/DIAEnumSectionContribs.h"
143 exclude header "llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h"
[all …]
/freebsd/contrib/diff/lib/
H A Dexclude.c1 /* exclude.c -- exclude file names
39 #include "exclude.h"
73 /* An exclude pattern-options pair. The options are fnmatch options
82 /* An exclude list, of pattern-options pairs. */
84 struct exclude struct
86 struct patopts *exclude; argument
91 /* Return a newly allocated and empty exclude list. */
93 struct exclude *
99 /* Free the storage associated with an exclude list. */
102 free_exclude (struct exclude *ex) in free_exclude()
[all …]
H A Dexclude.h1 /* exclude.h -- declarations for excluding file names
23 /* Exclude options, which can be ORed with fnmatch options. */
29 /* Include instead of exclude. */
36 struct exclude;
38 struct exclude *new_exclude (void);
39 void free_exclude (struct exclude *);
40 void add_exclude (struct exclude *, char const *, int);
41 int add_exclude_file (void (*) (struct exclude *, char const *, int),
42 struct exclude *, char const *, int, char);
43 bool excluded_filename (struct exclude const *, char const *);
/freebsd/lib/libc/tests/secure/
H A Dgenerate-fortify-tests.lua165 -- exclude: a function(disposition, is_heap) that returns true if this combo
189 exclude = excludes_stack_overflow,
233 exclude = excludes_stack_overflow,
247 exclude = excludes_stack_overflow,
260 exclude = excludes_stack_overflow,
274 exclude = excludes_stack_overflow,
291 exclude = excludes_stack_overflow,
306 exclude = excludes_stack_overflow,
323 exclude = excludes_stack_overflow,
350 exclude = excludes_stack_overflow,
[all …]
/freebsd/lib/libiconv_modules/BIG5/
H A Dcitrus_big5.c166 _BIG5Exclude *exclude; in _citrus_BIG5_check_excludes() local
168 TAILQ_FOREACH(exclude, &ei->excludes, entry) { in _citrus_BIG5_check_excludes()
169 if (c >= exclude->start && c <= exclude->end) in _citrus_BIG5_check_excludes()
199 _BIG5Exclude *exclude; in _citrus_BIG5_fill_excludes() local
204 exclude = TAILQ_LAST(&ei->excludes, _BIG5ExcludeList); in _citrus_BIG5_fill_excludes()
205 if (exclude != NULL && (wint_t)start <= exclude->end) in _citrus_BIG5_fill_excludes()
207 exclude = (void *)malloc(sizeof(*exclude)); in _citrus_BIG5_fill_excludes()
208 if (exclude == NULL) in _citrus_BIG5_fill_excludes()
210 exclude->start = (wint_t)start; in _citrus_BIG5_fill_excludes()
211 exclude->end = (wint_t)end; in _citrus_BIG5_fill_excludes()
[all …]
/freebsd/contrib/libarchive/tar/test/
H A Dtest_option_exclude.c18 * Now, try extracting from the test archive with various --exclude options. in DEFINE_TEST()
21 /* Test 1: Without --exclude */ in DEFINE_TEST()
43 /* Test 3: Use --exclude to skip one file */ in DEFINE_TEST()
47 systemf("%s -xf ../archive.tar --exclude file1 >test.out 2>test.err", testprog)); in DEFINE_TEST()
77 /* Test 6: Include and exclude the same file */ in DEFINE_TEST()
81 systemf("%s -xf ../archive.tar --exclude file1 file1 >test.out 2>test.err", testprog)); in DEFINE_TEST()
88 /* Test 7: Exclude a non-existent file */ in DEFINE_TEST()
92 systemf("%s -xf ../archive.tar --exclude file3 file1 >test.out 2>test.err", testprog)); in DEFINE_TEST()
115 r = systemf("%s -xf ../archive.tar --exclude file1 file3 >test.out 2>test.err", testprog); in DEFINE_TEST()
H A Dtest_option_exclude_vcs.c51 systemf("%s -c --exclude-vcs -C in -f excluded.tar .", testprog)); in DEFINE_TEST()
93 /* --exclude-vcs, archive with vcs files */ in DEFINE_TEST()
94 assertMakeDir("vcs-exclude", 0755); in DEFINE_TEST()
96 systemf("%s -x --exclude-vcs -C vcs-exclude -f included.tar", testprog)); in DEFINE_TEST()
97 assertChdir("vcs-exclude"); in DEFINE_TEST()
133 /* --exclude-vcs, archive without vcs files */ in DEFINE_TEST()
134 assertMakeDir("novcs-exclude", 0755); in DEFINE_TEST()
136 systemf("%s -x --exclude-vcs -C novcs-exclude -f excluded.tar", in DEFINE_TEST()
138 assertChdir("novcs-exclude"); in DEFINE_TEST()
/freebsd/sys/kern/
H A Dsubr_efi_map.c43 * We will make two passes at this, the first (exclude == false) to populate
45 * In the second pass we will exclude memory ranges from physmem which must not
58 bool exclude = *(bool *)argp; in handle_efi_map_entry() local
78 if (exclude) { in handle_efi_map_entry()
92 if (!exclude) in handle_efi_map_entry()
105 bool exclude = false; in efi_map_add_entries() local
106 efi_map_foreach_entry(efihdr, handle_efi_map_entry, &exclude); in efi_map_add_entries()
112 bool exclude = true; in efi_map_exclude_entries() local
113 efi_map_foreach_entry(efihdr, handle_efi_map_entry, &exclude); in efi_map_exclude_entries()
/freebsd/sys/powerpc/ofw/
H A Dofw_machdep.c286 struct mem_region *exclude, int esz) in excise_reserved_regions() argument
296 if (exclude[j].mr_start <= avail[i].mr_start && in excise_reserved_regions()
297 exclude[j].mr_start + exclude[j].mr_size >= in excise_reserved_regions()
312 if (exclude[j].mr_start >= avail[i].mr_start && in excise_reserved_regions()
313 exclude[j].mr_start < avail[i].mr_start + in excise_reserved_regions()
315 if (exclude[j].mr_start + exclude[j].mr_size < in excise_reserved_regions()
318 exclude[j].mr_start + exclude[ in excise_reserved_regions()
[all...]
/freebsd/usr.sbin/periodic/etc/weekly/
H A D340.noid22 exclude=''
40 exclude="$exclude -path $_p -prune -or"
48 \( $exclude ! -fstype local -prune -or -name \* \) -and \
/freebsd/cddl/usr.sbin/dtrace/tests/
H A Ddtrace.test.mk19 EXCLUDE= ${.CURDIR:H:H}/tools/exclude.sh
20 ${TESTWRAPPER}.sh: ${GENTEST} ${EXCLUDE} ${${PACKAGE}FILES}
22 sh ${GENTEST} -e ${EXCLUDE} ${TESTGROUP} ${${PACKAGE}FILES:S/ */ /} > ${.TARGET}
/freebsd/contrib/mtree/
H A Dexcludes.c59 struct exclude { struct
60 LIST_ENTRY(exclude) link;
64 static LIST_HEAD(, exclude) excludes; argument
79 struct exclude *e; in read_excludes_file()
107 struct exclude *e; in check_excludes()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_receive/
H A Dreceive-o-x_props_aliases.ksh27 # Verify ZFS property override (-o) and exclude (-x) options work when
34 # we can both override and exclude aliased properties.
49 log_assert "ZFS receive property alias override and exclude options work as expected."
120 # Sets various combination of override and exclude options
123 # Verify we can correctly override and exclude properties
214 log_pass "ZFS receive property alias override and exclude options passed."
H A Dreceive-o-x_props_override.ksh27 # Verify ZFS property override (-o) and exclude (-x) options work when
34 # we can both override and exclude native and user properties.
49 log_assert "ZFS receive property override and exclude options work as expected."
124 # Sets various combination of override and exclude options
128 # Verify we can correctly override and exclude properties
198 # 3.5 Verify we can exclude non-inheritable properties from a send stream
326 log_pass "ZFS receive property override and exclude options passed."
/freebsd/contrib/bc/gen/
H A Dstrgen.sh46 printf 'usage: %s input output exclude name [label [define [remove_tabs]]]\n' "$progname"
60 exclude="$3"
71 if [ "$exclude" -ne 0 ]; then
116 #if [ "$exclude" -ne 0 ]; then
/freebsd/contrib/file/src/
H A Dfile_opts.h35 OPT('e', "exclude", 1, 0,
36 " TEST exclude TEST from the list of test to be\n"
39 OPT_LONGONLY("exclude-quiet", 1, 0,
40 " TEST like exclude, but ignore unknown tests\n", OPT_EXCLUDE_QUIET)
/freebsd/usr.bin/grep/tests/
H A Dgrep_freebsd_test.sh57 (cd "$(atf_get_srcdir)" && grep -r --exclude="*.out" -e "test" .) > d_grep_r_implied.out
60 … "(cd $(atf_get_srcdir) && grep -r --exclude=\"*.out\" -e \"test\") | diff d_grep_r_implied.out -"
70 atf_check -o save:d_grep_r_implied.out grep -r --exclude="*.out" -e "test" "$(atf_get_srcdir)"
71 atf_check -o file:d_grep_r_implied.out rgrep --exclude="*.out" -e "test" "$(atf_get_srcdir)"
/freebsd/release/
H A DMakefile159 ( cd ${DISTDIR} && ${TAR_CMD} cLvf - --exclude .svn --exclude .zfs \
160 --exclude .git --exclude @ --exclude usr/src/release/dist usr/src | \
167 --exclude .git --exclude .svn \
168 --exclude usr/ports/distfiles --exclude usr/ports/packages \
169 --exclude 'usr/ports/INDEX*' --exclude work usr/ports | \
/freebsd/contrib/libarchive/unzip/test/
H A Dtest_x.c9 /* Test x arg with single exclude path */
27 /* Test x arg with multiple exclude paths */
45 /* Test x arg with multiple exclude paths and a d arg afterwards */
/freebsd/contrib/diff/man/
H A Ddiff.1172 \fB\-x\fR PAT \fB\-\-exclude\fR=\fIPAT\fR
173 Exclude files that match PAT.
175 \fB\-X\fR FILE \fB\-\-exclude\-from\fR=\fIFILE\fR
176 Exclude files that match any pattern in FILE.
/freebsd/tools/test/stress2/tools/
H A Dsplitall.sh43 exclude=`cat all.exclude $alllocal 2>/dev/null | sed '/^#/d' |
50 echo $exclude | grep -qw $i && continue
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Drsend_027_pos.ksh36 # zfs send with multiple -X/--exclude options will
37 # exclude all of them.
79 log_must eval "zfs send -R -X $POOL/ds1/second --exclude $POOL/ds3/first/second $POOL@presend > $BA…
/freebsd/
H A D.arclint2 "exclude": "(contrib|crypto)",
13 "exclude": "(/tests/)"
/freebsd/contrib/llvm-project/clang/include/
H A Dmodule.modulemap14 // FIXME: Exclude these headers to avoid pulling all of the AST matchers
18 exclude header "clang/Analysis/Analyses/ExprMutationAnalyzer.h"
193 // FIXME: Exclude these headers to avoid pulling all of the AST matchers
197 exclude header "clang/Tooling/RefactoringCallbacks.h"

12345678910>>...24