Lines Matching refs:mPath
99 mPath = StringPrintf("/mnt/expand/%s", mFsUuid.c_str()); in doMount()
100 setPath(mPath); in doMount()
102 if (PrepareDir(mPath, 0700, AID_ROOT, AID_ROOT)) { in doMount()
103 PLOG(ERROR) << getId() << " failed to create mount point " << mPath; in doMount()
108 int res = ext4::Check(mDmDevPath, mPath); in doMount()
116 if (ext4::Mount(mDmDevPath, mPath, false, false, true)) { in doMount()
130 if (f2fs::Mount(mDmDevPath, mPath)) { in doMount()
140 RestoreconRecursive(mPath); in doMount()
143 if (PrepareDir(mPath + "/app", 0771, AID_SYSTEM, AID_SYSTEM) || in doMount()
144 PrepareDir(mPath + "/user", 0711, AID_SYSTEM, AID_SYSTEM) || in doMount()
145 PrepareDir(mPath + "/user_de", 0711, AID_SYSTEM, AID_SYSTEM) || in doMount()
146 PrepareDir(mPath + "/media", 0770, AID_MEDIA_RW, AID_MEDIA_RW) || in doMount()
147 PrepareDir(mPath + "/media/0", 0770, AID_MEDIA_RW, AID_MEDIA_RW) || in doMount()
148 PrepareDir(mPath + "/local", 0751, AID_ROOT, AID_ROOT) || in doMount()
149 PrepareDir(mPath + "/local/tmp", 0771, AID_SHELL, AID_SHELL)) { in doMount()
156 std::string mediaPath(mPath + "/media"); in doMount()
166 ForceUnmount(mPath); in doUnmount()
168 if (TEMP_FAILURE_RETRY(rmdir(mPath.c_str()))) { in doUnmount()
169 PLOG(ERROR) << getId() << " failed to rmdir mount point " << mPath; in doUnmount()