Searched refs:target_user (Results 1 – 1 of 1) sorted by relevance
/dalvik/vm/native/ |
D | dalvik_system_Zygote.cpp | 274 char target_user[PATH_MAX]; in mountEmulatedStorage() local 279 snprintf(target_user, PATH_MAX, "%s/%d", target, userid); in mountEmulatedStorage() 282 || fs_prepare_dir(target_user, 0000, 0, 0) == -1) { in mountEmulatedStorage() 294 if (mount(source_user, target_user, NULL, MS_BIND, NULL) == -1) { in mountEmulatedStorage() 295 ALOGE("Failed to mount %s to %s: %s", source_user, target_user, strerror(errno)); in mountEmulatedStorage() 305 if (mount(target_user, legacy, NULL, MS_BIND | MS_REC, NULL) == -1) { in mountEmulatedStorage() 306 ALOGE("Failed to mount %s to %s: %s", target_user, legacy, strerror(errno)); in mountEmulatedStorage()
|