Lines Matching refs:mPath
126 mPath = StringPrintf("/mnt/expand/%s", mFsUuid.c_str()); in doMount()
127 setPath(mPath); in doMount()
129 if (PrepareDir(mPath, 0700, AID_ROOT, AID_ROOT)) { in doMount()
130 PLOG(ERROR) << getId() << " failed to create mount point " << mPath; in doMount()
135 int res = ext4::Check(mDmDevPath, mPath); in doMount()
143 if (ext4::Mount(mDmDevPath, mPath, false, false, true)) { in doMount()
157 if (f2fs::Mount(mDmDevPath, mPath)) { in doMount()
167 RestoreconRecursive(mPath); in doMount()
173 if (PrepareDir(mPath + "/app", 0771, AID_SYSTEM, AID_SYSTEM) || in doMount()
174 PrepareDir(mPath + "/user", 0511, AID_SYSTEM, AID_SYSTEM) || in doMount()
175 PrepareDir(mPath + "/user_de", 0511, AID_SYSTEM, AID_SYSTEM) || in doMount()
176 PrepareDir(mPath + "/misc_ce", 0511, AID_SYSTEM, AID_SYSTEM) || in doMount()
177 PrepareDir(mPath + "/misc_de", 0511, AID_SYSTEM, AID_SYSTEM) || in doMount()
178 PrepareDir(mPath + "/media", 0550, AID_MEDIA_RW, AID_MEDIA_RW, attrs) || in doMount()
179 PrepareDir(mPath + "/media/0", 0770, AID_MEDIA_RW, AID_MEDIA_RW) || in doMount()
180 PrepareDir(mPath + "/local", 0751, AID_ROOT, AID_ROOT) || in doMount()
181 PrepareDir(mPath + "/local/tmp", 0771, AID_SHELL, AID_SHELL)) { in doMount()
191 std::string mediaPath(mPath + "/media"); in doPostMount()
205 ForceUnmount(mPath); in doUnmount()
207 if (TEMP_FAILURE_RETRY(rmdir(mPath.c_str()))) { in doUnmount()
208 PLOG(ERROR) << getId() << " failed to rmdir mount point " << mPath; in doUnmount()