/system/core/libcutils/include/cutils/ |
fs.h | 46 extern int fs_prepare_dir(const char* path, mode_t mode, uid_t uid, gid_t gid);
|
/system/vold/model/ |
EmulatedVolume.cpp | 73 if (fs_prepare_dir(mFuseDefault.c_str(), 0700, AID_ROOT, AID_ROOT) || 74 fs_prepare_dir(mFuseRead.c_str(), 0700, AID_ROOT, AID_ROOT) || 75 fs_prepare_dir(mFuseWrite.c_str(), 0700, AID_ROOT, AID_ROOT)) {
|
PublicVolume.cpp | 133 if (fs_prepare_dir(mRawPath.c_str(), 0700, AID_ROOT, AID_ROOT)) { 160 if (fs_prepare_dir(mFuseDefault.c_str(), 0700, AID_ROOT, AID_ROOT) || 161 fs_prepare_dir(mFuseRead.c_str(), 0700, AID_ROOT, AID_ROOT) || 162 fs_prepare_dir(mFuseWrite.c_str(), 0700, AID_ROOT, AID_ROOT)) {
|
ObbVolume.cpp | 107 if (fs_prepare_dir(path.c_str(), 0700, AID_ROOT, AID_ROOT)) {
|
/system/core/libcutils/ |
fs.cpp | 115 int fs_prepare_dir(const char* path, mode_t mode, uid_t uid, gid_t gid) { function
|
/system/vold/ |
vold_prepare_subdirs.cpp | 73 if (fs_prepare_dir(path.c_str(), mode, uid, gid) != 0) {
|
VolumeManager.cpp | 348 fs_prepare_dir(source.c_str(), 0755, AID_ROOT, AID_ROOT); 380 fs_prepare_dir(path.c_str(), 0755, AID_ROOT, AID_ROOT);
|
Ext4Crypt.cpp | 214 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) { [all...] |
Utils.cpp | 118 int res = fs_prepare_dir(cpath, mode, uid, gid);
|
/system/core/sdcard/ |
sdcard.cpp | 199 fs_prepare_dir(obb_path.c_str(), 0775, uid, gid);
|
/frameworks/base/core/jni/ |
com_android_internal_os_Zygote.cpp | 419 if (fs_prepare_dir(userSource.string(), 0751, 0, 0) == -1) { 420 *error_msg = CREATE_ERROR("fs_prepare_dir failed on %s", userSource.string()); [all...] |
/frameworks/native/cmds/installd/ |
utils.cpp | 894 return fs_prepare_dir(path.c_str(), 0750, uid, gid); [all...] |
InstalldNativeService.cpp | 430 // fs_prepare_dir. This will fix the permission and the ownership to the correct values. 439 if (fs_prepare_dir(ref_profile_path.c_str(), 0770, AID_SYSTEM, shared_app_gid) != 0) { [all...] |
dexopt.cpp | [all...] |