HomeSort by: relevance | last modified time | path
    Searched defs:exclude (Results 1 - 25 of 52) sorted by relevancy

1 2 3

  /src/usr.sbin/mtree/
excludes.c 59 struct exclude { struct
60 LIST_ENTRY(exclude) link;
64 static LIST_HEAD(, exclude) excludes;
79 struct exclude *e;
107 struct exclude *e;
excludes.c 59 struct exclude { struct
60 LIST_ENTRY(exclude) link;
64 static LIST_HEAD(, exclude) excludes;
79 struct exclude *e;
107 struct exclude *e;
  /src/external/bsd/zstd/dist/tests/
test-license.py 130 def exclude(filename): function
142 if exclude(filename):
test-license.py 130 def exclude(filename): function
142 if exclude(filename):
  /src/external/gpl2/grep/dist/lib/
exclude.c 1 /* $NetBSD: exclude.c,v 1.1.1.1 2016/01/10 21:36:18 christos Exp $ */
3 /* exclude.c -- exclude file names
31 #include <exclude.h>
41 struct exclude struct
43 char const **exclude; member in struct:exclude
48 struct exclude *
51 struct exclude *ex = (struct exclude *) xmalloc (sizeof (struct exclude));
61 char const * const *exclude = ex->exclude; local
    [all...]
exclude.c 1 /* $NetBSD: exclude.c,v 1.1.1.1 2016/01/10 21:36:18 christos Exp $ */
3 /* exclude.c -- exclude file names
31 #include <exclude.h>
41 struct exclude struct
43 char const **exclude; member in struct:exclude
48 struct exclude *
51 struct exclude *ex = (struct exclude *) xmalloc (sizeof (struct exclude));
61 char const * const *exclude = ex->exclude; local
    [all...]
  /src/external/cddl/osnet/dist/lib/libzfs/common/
libzfs_config.c 355 static const char *exclude = NULL; local
364 exclude = getenv("__ZFS_POOL_EXCLUDE");
368 if (exclude != NULL) {
369 cur = exclude;
libzfs_config.c 355 static const char *exclude = NULL; local
364 exclude = getenv("__ZFS_POOL_EXCLUDE");
368 if (exclude != NULL) {
369 cur = exclude;
  /src/external/gpl2/diffutils/dist/lib/
exclude.c 1 /* $NetBSD: exclude.c,v 1.1.1.1 2016/01/13 03:15:30 christos Exp $ */
3 /* exclude.c -- exclude file names
60 #include "exclude.h"
78 /* An exclude pattern-options pair. The options are fnmatch options
87 /* An exclude list, of pattern-options pairs. */
89 struct exclude struct
91 struct patopts *exclude; member in struct:exclude
96 /* Return a newly allocated and empty exclude list. */
98 struct exclude *
156 struct patopts const *exclude = ex->exclude; local
    [all...]
exclude.c 1 /* $NetBSD: exclude.c,v 1.1.1.1 2016/01/13 03:15:30 christos Exp $ */
3 /* exclude.c -- exclude file names
60 #include "exclude.h"
78 /* An exclude pattern-options pair. The options are fnmatch options
87 /* An exclude list, of pattern-options pairs. */
89 struct exclude struct
91 struct patopts *exclude; member in struct:exclude
96 /* Return a newly allocated and empty exclude list. */
98 struct exclude *
156 struct patopts const *exclude = ex->exclude; local
    [all...]
  /src/lib/libc/citrus/modules/
citrus_big5.c 183 _BIG5Exclude *exclude; local
187 TAILQ_FOREACH(exclude, &ei->excludes, entry) {
188 if (c >= exclude->start && c <= exclude->end)
220 _BIG5Exclude *exclude; local
227 exclude = TAILQ_LAST(&ei->excludes, _BIG5ExcludeList);
228 if (exclude != NULL && (wint_t)start <= exclude->end)
230 exclude = (void *)malloc(sizeof(*exclude));
251 _BIG5Exclude *exclude; local
    [all...]
citrus_big5.c 183 _BIG5Exclude *exclude; local
187 TAILQ_FOREACH(exclude, &ei->excludes, entry) {
188 if (c >= exclude->start && c <= exclude->end)
220 _BIG5Exclude *exclude; local
227 exclude = TAILQ_LAST(&ei->excludes, _BIG5ExcludeList);
228 if (exclude != NULL && (wint_t)start <= exclude->end)
230 exclude = (void *)malloc(sizeof(*exclude));
251 _BIG5Exclude *exclude; local
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/
analyze.py 211 def exclude(filename, directory): function in function:run_analyzer_parallel
233 for cmd in json.load(handle) if not exclude(
analyze.py 211 def exclude(filename, directory): function in function:run_analyzer_parallel
233 for cmd in json.load(handle) if not exclude(
  /src/external/gpl2/xcvs/dist/diff/
diff.c 126 static char const **exclude;
135 if (fnmatch (exclude[i], f, 0) == 0)
145 exclude = (char const **)
147 ? xmalloc ((exclude_alloc = 64) * sizeof (*exclude))
148 : xrealloc (exclude, (exclude_alloc *= 2) * sizeof (*exclude)));
150 exclude[exclude_count++] = pattern;
219 {"exclude", 1, 0, 'x'},
220 {"exclude-from", 1, 0, 'X'},
823 "-x PAT --exclude=PAT Exclude files that match PAT."
124 static char const **exclude; variable
    [all...]
diff.c 126 static char const **exclude;
135 if (fnmatch (exclude[i], f, 0) == 0)
145 exclude = (char const **)
147 ? xmalloc ((exclude_alloc = 64) * sizeof (*exclude))
148 : xrealloc (exclude, (exclude_alloc *= 2) * sizeof (*exclude)));
150 exclude[exclude_count++] = pattern;
219 {"exclude", 1, 0, 'x'},
220 {"exclude-from", 1, 0, 'X'},
823 "-x PAT --exclude=PAT Exclude files that match PAT."
124 static char const **exclude; variable
    [all...]
  /src/usr.bin/unzip/
unzip.c 264 * Pattern lists for include / exclude processing
273 static struct pattern_list exclude = STAILQ_HEAD_INITIALIZER(exclude); variable in typeref:struct:pattern_list
311 * exclude list.
319 if (!STAILQ_EMPTY(&exclude) && match_pattern(&exclude, pathname))
692 * option) happens first, but the include / exclude patterns are applied
734 /* apply include / exclude patterns */
787 /* apply include / exclude patterns */
1048 add_pattern(&exclude, optarg)
    [all...]
unzip.c 264 * Pattern lists for include / exclude processing
273 static struct pattern_list exclude = STAILQ_HEAD_INITIALIZER(exclude); variable in typeref:struct:pattern_list
311 * exclude list.
319 if (!STAILQ_EMPTY(&exclude) && match_pattern(&exclude, pathname))
692 * option) happens first, but the include / exclude patterns are applied
734 /* apply include / exclude patterns */
787 /* apply include / exclude patterns */
1048 add_pattern(&exclude, optarg)
    [all...]
  /src/usr.sbin/postinstall/
postinstall.in 573 exclude() function
583 # Find all the symlink targets of shared libraries and exclude them
1192 exclude ${rc_exclude_scripts})"
2214 exclude ${rc_external_files})"
postinstall.in 573 exclude() function
583 # Find all the symlink targets of shared libraries and exclude them
1192 exclude ${rc_exclude_scripts})"
2214 exclude ${rc_external_files})"
  /src/external/gpl3/binutils/dist/include/opcode/
loongarch.h 207 const int *exclude; member in struct:loongarch_opcode
222 const int *exclude; member in struct:loongarch_ase
loongarch.h 207 const int *exclude; member in struct:loongarch_opcode
222 const int *exclude; member in struct:loongarch_ase
  /src/external/gpl3/binutils.old/dist/include/opcode/
loongarch.h 199 const int *exclude; member in struct:loongarch_opcode
214 const int *exclude; member in struct:loongarch_ase
  /src/external/gpl3/gdb.old/dist/include/opcode/
loongarch.h 199 const int *exclude; member in struct:loongarch_opcode
214 const int *exclude; member in struct:loongarch_ase
  /src/external/gpl3/gdb/dist/include/opcode/
loongarch.h 199 const int *exclude; member in struct:loongarch_opcode
214 const int *exclude; member in struct:loongarch_ase

Completed in 69 milliseconds

1 2 3