/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;
|
/src/lib/libc/citrus/modules/ |
citrus_big5.c | 183 _BIG5Exclude *exclude; local in function:_citrus_BIG5_check_excludes 187 TAILQ_FOREACH(exclude, &ei->excludes, entry) { 188 if (c >= exclude->start && c <= exclude->end) 220 _BIG5Exclude *exclude; local in function:_citrus_BIG5_fill_excludes 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 in function:_citrus_BIG5_encoding_module_uninit [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...] |
/src/lib/libc/gen/ |
getpwent.c | 1680 DB *exclude; /* compat exclude DB */ member in struct:compat_state 1747 if (state->exclude != NULL) 1748 (void)(state->exclude->close)(state->exclude); 1749 state->exclude = NULL; 1757 * add the name to the exclude list in state->exclude. 1768 if (state->exclude == NULL) { 1769 state->exclude = dbopen(NULL, O_RDWR, 600, DB_HASH, NULL) [all...] |