Home
last modified time | relevance | path

Searched refs:fuse_path (Results 1 – 1 of 1) sorted by relevance

/system/vold/
DUtils.cpp1548 std::string fuse_path( in MountUserFuse() local
1575 result = PrepareDir(fuse_path, 0700, AID_ROOT, AID_ROOT); in MountUserFuse()
1577 PLOG(ERROR) << "Failed to prepare directory " << fuse_path; in MountUserFuse()
1629 result = TEMP_FAILURE_RETRY(mount("/dev/fuse", fuse_path.c_str(), "fuse", in MountUserFuse()
1633 PLOG(ERROR) << "Failed to mount " << fuse_path; in MountUserFuse()
1651 std::string fuse_path(StringPrintf("/mnt/user/%d/%s", user_id, relative_upper_path.c_str())); in UnmountUserFuse() local
1655 LOG(INFO) << "Unmounting fuse path " << fuse_path; in UnmountUserFuse()
1656 android::status_t result = ForceUnmount(fuse_path); in UnmountUserFuse()
1660 PLOG(ERROR) << "Failed to unmount. Trying MNT_DETACH " << fuse_path << " ..."; in UnmountUserFuse()
1661 if (umount2(fuse_path.c_str(), UMOUNT_NOFOLLOW | MNT_DETACH) && errno != EINVAL && in UnmountUserFuse()
[all …]