/external/selinux/libselinux/man/man3/ |
fsetfilecon.3 | 1 .so man3/setfilecon.3
|
fsetfilecon_raw.3 | 1 .so man3/setfilecon.3
|
lsetfilecon.3 | 1 .so man3/setfilecon.3
|
lsetfilecon_raw.3 | 1 .so man3/setfilecon.3
|
setfilecon_raw.3 | 1 .so man3/setfilecon.3
|
setfilecon.3 | 1 .TH "setfilecon" "3" "1 January 2004" "russell@coker.com.au" "SELinux API documentation" 3 setfilecon, fsetfilecon, lsetfilecon \- set SELinux security context of a file 8 .BI "int setfilecon(const char *" path ", char * "con ); 21 .BR setfilecon () 25 is identical to setfilecon, except in the case of a symbolic link, where the 29 is identical to setfilecon, only the open file pointed to by filedes (as
|
/external/selinux/libselinux/utils/ |
.gitignore | 21 setfilecon
|
setfilecon.c | 16 rc = setfilecon(argv[i], argv[1]); 18 fprintf(stderr, "%s: setfilecon(%s,%s) failed\n",
|
/external/libselinux/src/ |
setfilecon.c | 10 int setfilecon(const char *path, const char *context) function
|
android.c | 871 rc = setfilecon(pkgdir, ctx_str); [all...] |
/external/selinux/libselinux/src/ |
setfilecon.c | 30 int setfilecon(const char *path, const char *context)
|
/external/toybox/lib/ |
lsm.h | 15 #define setfilecon(...) (-1) macro 75 else return setfilecon(filename, context);
|
/external/toybox/toys/other/ |
chcon.c | 32 if (-1 == ((toys.optflags & FLAG_h) ? lsetfilecon : setfilecon)(path, con))
|
/frameworks/base/core/jni/ |
android_os_SELinux.cpp | 133 * Function: setFileCon 141 static jboolean setFileCon(JNIEnv *env, jobject, jstring pathStr, jstring contextStr) { 156 // GetStringUTFChars returns const char * yet setfilecon needs char * 158 int ret = setfilecon(path.c_str(), tmp); 160 ALOGV("setFileCon(%s, %s) => %d", path.c_str(), context.c_str(), ret); 333 { "setFileContext" , "(Ljava/lang/String;Ljava/lang/String;)Z" , (void*)setFileCon },
|
/system/sepolicy/ |
installd.te | 36 # and lib symlinks before the setfilecon call. May want to 37 # move symlink creation after setfilecon in installd. 93 # upon creation via setfilecon or running restorecon_recursive,
|
/external/libselinux/ |
Android.mk | 19 src/setfilecon.c \
|
/external/libselinux/include/selinux/ |
selinux.h | 94 extern int setfilecon(const char *path, const char *con);
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/selinux/ |
__init__.py | 720 def setfilecon(*args): function 721 return _selinux.setfilecon(*args) 722 setfilecon = _selinux.setfilecon variable [all...] |
/system/vold/ |
Ext4Crypt.cpp | 556 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) { 557 PLOG(WARNING) << "Failed to setfilecon " << path;
|
/external/selinux/libselinux/include/selinux/ |
selinux.h | 109 extern int setfilecon(const char *path, const char * con);
|
/frameworks/native/cmds/installd/ |
commands.cpp | 90 PLOG(ERROR) << "Failed to setfilecon " << path; 102 PLOG(ERROR) << "Failed to setfilecon " << path; [all...] |
/external/selinux/libselinux/ |
ChangeLog | 101 * Change setfilecon to not return ENOSUP if context is already correct from Dan Walsh. [all...] |