Searched refs:exclude_list (Results 1 - 10 of 10) sorted by relevance

/external/libvpx/libvpx/test/
H A Dexamples.sh18 exclude_list="examples stress tools_common"
20 # Filter out the scripts in $exclude_list.
21 for word in ${exclude_list}; do
/external/selinux/policycoreutils/setfiles/
H A Drestore.c9 char **exclude_list; variable
54 if (exclude_list)
56 ((const char **)exclude_list);
63 if (exclude_list) {
64 for (i = 0; exclude_list[i]; i++)
65 free(exclude_list[i]);
66 free(exclude_list);
114 tmp_list = realloc(exclude_list, sizeof(char *) * (exclude_count + 2));
120 exclude_list = tmp_list;
122 exclude_list[exclude_coun
[all...]
H A Drestore.h52 extern char **exclude_list;
H A Drestorecon_xattr.c60 exclude_list = NULL;
159 if (exclude_list)
161 ((const char **)exclude_list);
/external/selinux/restorecond/
H A Drestore.c9 char **exclude_list; variable
53 if (exclude_list)
55 ((const char **)exclude_list);
62 if (exclude_list) {
63 for (i = 0; exclude_list[i]; i++)
64 free(exclude_list[i]);
65 free(exclude_list);
113 tmp_list = realloc(exclude_list, sizeof(char *) * (exclude_count + 2));
119 exclude_list = tmp_list;
121 exclude_list[exclude_coun
[all...]
H A Drestore.h59 extern char **exclude_list;
/external/selinux/libselinux/include/selinux/
H A Drestorecon.h123 * @exclude_list: containing a NULL terminated list of one or more
126 extern void selinux_restorecon_set_exclude_list(const char **exclude_list);
/external/selinux/libselinux/src/
H A Dselinux_restorecon.c1084 void selinux_restorecon_set_exclude_list(const char **exclude_list) argument
1089 for (i = 0; exclude_list[i]; i++) {
1090 if (lstat(exclude_list[i], &sb) < 0 && errno != EACCES) {
1093 exclude_list[i], strerror(errno));
1096 if (add_exclude(exclude_list[i], CALLER_EXCLUDED) &&
/external/selinux/python/sepolicy/sepolicy/
H A D__init__.py504 def find_all_files(domain, exclude_list=[]):
507 if exe.endswith("_exec_t") and exe not in exclude_list:
514 def find_entrypoint_path(exe, exclude_list=[]):
517 if exe.endswith("_exec_t") and exe not in exclude_list:
H A Dgui.py1625 def exclude_type(self, type, exclude_list):
1626 for e in exclude_list:
1632 exclude_list = []
1641 exclude_list.append(self.strip_domain(d[0]))
1661 if write.startswith(compare) and not self.exclude_type(write, exclude_list) and write in self.file_types:
1670 if app.startswith(compare) and not self.exclude_type(app, exclude_list):

Completed in 229 milliseconds