Searched refs:mountPoint (Results 1 – 9 of 9) sorted by relevance
/aosp14/frameworks/base/libs/storage/include/storage/ |
H A D | IMountService.h | 42 virtual int32_t mountVolume(const String16& mountPoint) = 0; 44 const String16& mountPoint, const bool force, const bool removeEncryption) = 0; 45 virtual int32_t formatVolume(const String16& mountPoint) = 0; 47 getStorageUsers(const String16& mountPoint, int32_t** users) = 0; 48 virtual int32_t getVolumeState(const String16& mountPoint) = 0;
|
/aosp14/frameworks/base/libs/storage/ |
H A D | IMountService.cpp | 141 int32_t mountVolume(const String16& mountPoint) in mountVolume() argument 145 data.writeString16(mountPoint); in mountVolume() 158 int32_t unmountVolume(const String16& mountPoint, const bool force, const bool removeEncryption) in unmountVolume() argument 162 data.writeString16(mountPoint); in unmountVolume() 177 int32_t formatVolume(const String16& mountPoint) in formatVolume() argument 181 data.writeString16(mountPoint); in formatVolume() 194 int32_t getStorageUsers(const String16& mountPoint, int32_t** users) in getStorageUsers() argument 198 data.writeString16(mountPoint); in getStorageUsers() 223 int32_t getVolumeState(const String16& mountPoint) in getVolumeState() argument 227 data.writeString16(mountPoint); in getVolumeState()
|
/aosp14/frameworks/base/tests/ApkVerityTest/block_device_writer/src/com/android/blockdevicewriter/ |
H A D | BlockDeviceWriter.java | 58 ITestDevice.MountPointInfo mountPoint = device.getMountPointInfo("/data"); in damageFileAgainstBlockDevice() local 61 if ("f2fs".equals(mountPoint.type)) { in damageFileAgainstBlockDevice() 64 args.add(mountPoint.filesystem); in damageFileAgainstBlockDevice()
|
/aosp14/frameworks/base/tests/ApkVerityTest/src/com/android/apkverity/ |
H A D | ApkVerityTest.java | 113 ITestDevice.MountPointInfo mountPoint = mDevice.getMountPointInfo("/data"); in testFsverityKernelSupports() local 114 expectRemoteCommandToSucceed("test -f /sys/fs/" + mountPoint.type + "/features/verity"); in testFsverityKernelSupports() 525 ITestDevice.MountPointInfo mountPoint = mDevice.getMountPointInfo("/data"); in damageFileAgainstBlockDevice() local 528 if ("f2fs".equals(mountPoint.type)) { in damageFileAgainstBlockDevice() 531 args.add(mountPoint.filesystem); in damageFileAgainstBlockDevice()
|
/aosp14/frameworks/base/core/java/android/app/admin/ |
H A D | SecurityLog.java | 794 String mountPoint; in redact() local 796 mountPoint = getStringData(0); in redact() 801 mEvent.withNewData(new Object[] {mountPoint, ""}).getBytes()); in redact()
|
/aosp14/frameworks/base/services/tests/PackageManagerServiceTests/host/src/com/android/server/pm/test/ |
H A D | SdCardEjectionTests.kt | 216 val mountPoint = device.executeShellCommand("mount") regex 226 device.executeShellCommand("make_f2fs -U ${volume.fsUuid} $mountPoint")
|
/aosp14/frameworks/base/services/incremental/ |
H A D | IncrementalService.cpp | 600 StorageId IncrementalService::createStorage(std::string_view mountPoint, in createStorage() argument 603 LOG(INFO) << "createStorage: " << mountPoint << " | " << int(options); in createStorage() 604 if (!path::isAbsolute(mountPoint)) { in createStorage() 605 LOG(ERROR) << "path is not absolute: " << mountPoint; in createStorage() 609 auto mountNorm = path::normalize(mountPoint); in createStorage() 617 LOG(ERROR) << "Directory " << mountPoint << " is already mounted at storage " << id; in createStorage() 623 LOG(ERROR) << "not requirested create new storage, and it doesn't exist: " << mountPoint; in createStorage() 746 StorageId IncrementalService::createLinkedStorage(std::string_view mountPoint, in createLinkedStorage() argument 749 if (!isValidMountTarget(mountPoint)) { in createLinkedStorage() 775 std::string(storageIt->second.name), path::normalize(mountPoint), in createLinkedStorage()
|
H A D | IncrementalService.h | 154 StorageId createStorage(std::string_view mountPoint, 157 StorageId createLinkedStorage(std::string_view mountPoint, StorageId linkedStorage,
|
/aosp14/frameworks/base/core/java/android/os/storage/ |
H A D | StorageManager.java | 1278 public @NonNull String getVolumeState(String mountPoint) { in getVolumeState() argument 1279 final StorageVolume vol = getStorageVolume(new File(mountPoint)); in getVolumeState()
|