Searched refs:exclude_list (Results 1 – 12 of 12) sorted by relevance
/external/selinux/restorecond/ |
D | restore.c | 12 char **exclude_list; variable 56 if (exclude_list) in restore_init() 58 ((const char **)exclude_list); in restore_init() 65 if (exclude_list) { in restore_finish() 66 for (i = 0; exclude_list[i]; i++) in restore_finish() 67 free(exclude_list[i]); in restore_finish() 68 free(exclude_list); in restore_finish() 116 tmp_list = realloc(exclude_list, sizeof(char *) * (exclude_count + 2)); in add_exclude() 122 exclude_list = tmp_list; in add_exclude() 124 exclude_list[exclude_count] = strdup(directory); in add_exclude() [all …]
|
D | restore.h | 59 extern char **exclude_list;
|
/external/selinux/policycoreutils/setfiles/ |
D | restore.c | 17 char **exclude_list; variable 62 if (exclude_list) in restore_init() 64 ((const char **)exclude_list); in restore_init() 71 if (exclude_list) { in restore_finish() 72 for (i = 0; exclude_list[i]; i++) in restore_finish() 73 free(exclude_list[i]); in restore_finish() 74 free(exclude_list); in restore_finish() 122 tmp_list = realloc(exclude_list, sizeof(char *) * (exclude_count + 2)); in add_exclude() 128 exclude_list = tmp_list; in add_exclude() 130 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/libvpx/libvpx/test/ |
D | examples.sh | 18 exclude_list="examples stress tools_common" 21 for word in ${exclude_list}; do
|
/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/u-boot/tools/buildman/ |
D | board.py | 260 exclude_list = [] 262 exclude_list.append(Expr(expr)) 278 for expr in exclude_list:
|
/external/selinux/libselinux/include/selinux/ |
D | restorecon.h | 126 extern void selinux_restorecon_set_exclude_list(const char **exclude_list);
|
/external/selinux/libselinux/src/ |
D | selinux_restorecon.c | 1095 void selinux_restorecon_set_exclude_list(const char **exclude_list) in selinux_restorecon_set_exclude_list() argument 1100 for (i = 0; exclude_list[i]; i++) { in selinux_restorecon_set_exclude_list() 1101 if (lstat(exclude_list[i], &sb) < 0 && errno != EACCES) { in selinux_restorecon_set_exclude_list() 1104 exclude_list[i], strerror(errno)); in selinux_restorecon_set_exclude_list() 1107 if (add_exclude(exclude_list[i], CALLER_EXCLUDED) && in selinux_restorecon_set_exclude_list()
|
/external/selinux/python/sepolicy/sepolicy/ |
D | __init__.py | 551 def find_all_files(domain, exclude_list=[]): argument 554 if exe.endswith("_exec_t") and exe not in exclude_list: 561 def find_entrypoint_path(exe, exclude_list=[]): argument 564 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):
|