Lines Matching refs:mPath
102 mPath = StringPrintf("/mnt/expand/%s", mFsUuid.c_str()); in doMount()
103 setPath(mPath); in doMount()
105 if (PrepareDir(mPath, 0700, AID_ROOT, AID_ROOT)) { in doMount()
106 PLOG(ERROR) << getId() << " failed to create mount point " << mPath; in doMount()
111 int res = ext4::Check(mDmDevPath, mPath); in doMount()
119 if (ext4::Mount(mDmDevPath, mPath, false, false, true)) { in doMount()
133 if (f2fs::Mount(mDmDevPath, mPath)) { in doMount()
143 RestoreconRecursive(mPath); in doMount()
146 if (PrepareDir(mPath + "/app", 0771, AID_SYSTEM, AID_SYSTEM) || in doMount()
147 PrepareDir(mPath + "/user", 0711, AID_SYSTEM, AID_SYSTEM) || in doMount()
148 PrepareDir(mPath + "/user_de", 0711, AID_SYSTEM, AID_SYSTEM) || in doMount()
149 PrepareDir(mPath + "/media", 0770, AID_MEDIA_RW, AID_MEDIA_RW) || in doMount()
150 PrepareDir(mPath + "/media/0", 0770, AID_MEDIA_RW, AID_MEDIA_RW) || in doMount()
151 PrepareDir(mPath + "/local", 0751, AID_ROOT, AID_ROOT) || in doMount()
152 PrepareDir(mPath + "/local/tmp", 0771, AID_SHELL, AID_SHELL)) { in doMount()
159 std::string mediaPath(mPath + "/media"); in doMount()
168 ForceUnmount(mPath); in doUnmount()
170 if (TEMP_FAILURE_RETRY(rmdir(mPath.c_str()))) { in doUnmount()
171 PLOG(ERROR) << getId() << " failed to rmdir mount point " << mPath; in doUnmount()