Searched refs:exclude_list (Results 1 – 14 of 14) sorted by relevance
/external/selinux/policycoreutils/setfiles/ |
D | restore.c | 17 char **exclude_list; variable 59 if (exclude_list) in restore_init() 61 ((const char **)exclude_list); in restore_init() 68 if (exclude_list) { in restore_finish() 69 for (i = 0; exclude_list[i]; i++) in restore_finish() 70 free(exclude_list[i]); in restore_finish() 71 free(exclude_list); in restore_finish() 118 tmp_list = realloc(exclude_list, sizeof(char *) * (exclude_count + 2)); in add_exclude() 124 exclude_list = tmp_list; in add_exclude() 126 exclude_list[exclude_count] = strdup(directory); in add_exclude() [all …]
|
D | restorecon_xattr.c | 60 exclude_list = NULL; in main() 159 if (exclude_list) in main() 161 ((const char **)exclude_list); in main()
|
D | restore.h | 52 extern char **exclude_list;
|
/external/selinux/restorecond/ |
D | restore.c | 12 char **exclude_list; variable 53 if (exclude_list) in restore_init() 55 ((const char **)exclude_list); in restore_init() 62 if (exclude_list) { in restore_finish() 63 for (i = 0; exclude_list[i]; i++) in restore_finish() 64 free(exclude_list[i]); in restore_finish() 65 free(exclude_list); in restore_finish() 112 tmp_list = realloc(exclude_list, sizeof(char *) * (exclude_count + 2)); in add_exclude() 118 exclude_list = tmp_list; in add_exclude() 120 exclude_list[exclude_count] = strdup(directory); in add_exclude() [all …]
|
D | restore.h | 59 extern char **exclude_list;
|
/external/pigweed/pw_watch/py/ |
D | watch_test.py | 48 exclude_list = ['f3'] 56 self._root, exclude_list) 63 exclude_list = ['f1'] 74 self._root, exclude_list) 81 exclude_list = ['f1/f2'] 94 self._root, exclude_list) 101 exclude_list = [] 113 self._root, exclude_list) 121 exclude_list = [ 143 self._root, exclude_list) [all …]
|
/external/libaom/libaom/test/ |
D | examples.sh | 18 exclude_list="best_encode examples run_encodes tools_common" 21 for word in ${exclude_list}; do
|
/external/libvpx/libvpx/test/ |
D | examples.sh | 18 exclude_list="examples stress tools_common" 21 for word in ${exclude_list}; do
|
/external/pigweed/pw_watch/py/pw_watch/ |
D | watch.py | 468 exclude_list: List[Path] = [] 482 exclude_list.extend(pw_root_dir / ignored_directory 491 exclude_list.extend( 506 exclude_list.append(full_legacy_directory) 512 return exclude_list 531 patterns: str, ignore_patterns_string: str, exclude_list: List[Path], 544 exclude_list += get_common_excludes() 606 for path, rec in minimal_watch_directories(Path.cwd(), exclude_list):
|
/external/selinux/libselinux/include/selinux/ |
D | restorecon.h | 131 extern void selinux_restorecon_set_exclude_list(const char **exclude_list);
|
/external/selinux/libselinux/src/ |
D | selinux_restorecon.c | 1186 void selinux_restorecon_set_exclude_list(const char **exclude_list) in selinux_restorecon_set_exclude_list() argument 1191 for (i = 0; exclude_list[i]; i++) { in selinux_restorecon_set_exclude_list() 1192 if (lstat(exclude_list[i], &sb) < 0 && errno != EACCES) { in selinux_restorecon_set_exclude_list() 1195 exclude_list[i], strerror(errno)); in selinux_restorecon_set_exclude_list() 1198 if (add_exclude(exclude_list[i], CALLER_EXCLUDED) && in selinux_restorecon_set_exclude_list()
|
/external/selinux/python/sepolicy/sepolicy/ |
D | __init__.py | 550 def find_all_files(domain, exclude_list=[]): argument 553 if exe.endswith("_exec_t") and exe not in exclude_list: 560 def find_entrypoint_path(exe, exclude_list=[]): argument 563 if exe.endswith("_exec_t") and exe not in exclude_list:
|
D | gui.py | 1624 def exclude_type(self, type, exclude_list): argument 1625 for e in exclude_list: 1631 exclude_list = [] 1640 exclude_list.append(self.strip_domain(d[0])) 1660 …if write.startswith(compare) and not self.exclude_type(write, exclude_list) and write in self.file… 1669 if app.startswith(compare) and not self.exclude_type(app, exclude_list):
|
/external/pigweed/pw_watch/ |
D | docs.rst | 50 The ``--exclude_list`` argument can be used to exclude directories from being
|