HomeSort by relevance Sort by last modified time
    Searched defs:sehandle (Results 1 - 5 of 5) sorted by null

  /bootable/recovery/updater/
updater.c 35 struct selabel_handle *sehandle; variable in typeref:struct:selabel_handle
112 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
114 if (!sehandle) {
  /system/core/toolbox/
restorecon.c 12 static struct selabel_handle *sehandle; variable in typeref:struct:selabel_handle
32 if (selabel_lookup(sehandle, &newcontext, pathname, sb->st_mode) < 0) {
86 sehandle = selinux_android_file_context_handle();
88 if (!sehandle) {
  /bootable/recovery/
recovery.cpp 49 struct selabel_handle *sehandle; variable in typeref:struct:selabel_handle
150 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
907 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
909 if (!sehandle) {
    [all...]
  /external/libselinux/src/
android.c 597 static struct selabel_handle *sehandle = NULL; variable in typeref:struct:selabel_handle
638 sehandle = file_context_open();
653 if (!sehandle)
666 if (selabel_lookup(sehandle, &newcontext, pathname, sb.st_mode) < 0)
  /system/core/init/
init.c 61 struct selabel_handle *sehandle; variable in typeref:struct:selabel_handle
756 struct selabel_handle* sehandle = NULL; local
757 while ((sehandle == NULL) && seopts_prop[i].value) {
758 sehandle = selabel_open(SELABEL_CTX_ANDROID_PROP, &seopts_prop[i], 1);
762 if (!sehandle) {
768 return sehandle;
773 sehandle = selinux_android_file_context_handle();
789 if (sehandle)
790 selabel_close(sehandle);

Completed in 85 milliseconds