Searched refs:mountPoint (Results 1 – 8 of 8) sorted by relevance
/system/vold/ |
D | AppFuseUtil.cpp | 156 std::string mountPoint; in OpenAppFuseFile() local 157 if (GetMountPath(uid, name, &mountPoint) != android::OK) { in OpenAppFuseFile() 162 std::string path = StringPrintf("%s/%d", mountPoint.c_str(), fileId); in OpenAppFuseFile()
|
D | Checkpoint.h | 46 android::binder::Status cp_restoreCheckpoint(const std::string& mountPoint, int count = 0);
|
D | VoldNativeService.cpp | 689 const std::string& mountPoint) { in mountFstab() argument 694 fscrypt_mount_metadata_encrypted(blkDevice, mountPoint, false, false, "null")); in mountFstab() 698 const std::string& mountPoint, bool shouldFormat, in encryptFstab() argument 704 fscrypt_mount_metadata_encrypted(blkDevice, mountPoint, true, shouldFormat, fsType)); in encryptFstab() 878 binder::Status VoldNativeService::restoreCheckpoint(const std::string& mountPoint) { in restoreCheckpoint() argument 880 CHECK_ARGUMENT_PATH(mountPoint); in restoreCheckpoint() 883 return cp_restoreCheckpoint(mountPoint); in restoreCheckpoint() 886 binder::Status VoldNativeService::restoreCheckpointPart(const std::string& mountPoint, int count) { in restoreCheckpointPart() argument 888 CHECK_ARGUMENT_PATH(mountPoint); in restoreCheckpointPart() 891 return cp_restoreCheckpoint(mountPoint, count); in restoreCheckpointPart()
|
D | VoldNativeService.h | 115 binder::Status mountFstab(const std::string& blkDevice, const std::string& mountPoint); 116 binder::Status encryptFstab(const std::string& blkDevice, const std::string& mountPoint, 151 binder::Status restoreCheckpoint(const std::string& mountPoint); 152 binder::Status restoreCheckpointPart(const std::string& mountPoint, int count);
|
D | Utils.cpp | 1236 auto mountPoint = std::string(mnt->mnt_dir) + "/"; in findMountPointsWithPrefix() local 1237 if (android::base::StartsWith(mountPoint, prefixWithSlash)) { in findMountPointsWithPrefix() 1238 mountPoints.push_front(mountPoint); in findMountPointsWithPrefix() 1260 status_t UnmountTree(const std::string& mountPoint) { in UnmountTree() argument 1261 if (TEMP_FAILURE_RETRY(umount2(mountPoint.c_str(), MNT_DETACH)) < 0 && errno != EINVAL && in UnmountTree() 1263 PLOG(ERROR) << "Failed to unmount " << mountPoint; in UnmountTree()
|
D | Utils.h | 173 status_t UnmountTree(const std::string& mountPoint);
|
/system/incremental_delivery/incfs/ |
D | MountRegistry.cpp | 331 auto mountPoint = std::string(items[4]); in loadFrom() local 332 fixProcPath(mountPoint); in loadFrom() 333 mountPoint = path::normalize(mountPoint); in loadFrom() 345 mount.roots.emplace(mountPoint); in loadFrom() 348 mount.bindPoints.emplace_back(std::string(subdir), std::move(mountPoint)); in loadFrom()
|
/system/vold/binder/android/os/ |
D | IVold.aidl | 91 void mountFstab(@utf8InCpp String blkDevice, @utf8InCpp String mountPoint); in mountFstab() argument 92 …void encryptFstab(@utf8InCpp String blkDevice, @utf8InCpp String mountPoint, boolean shouldFormat,… in encryptFstab() argument
|