Home
last modified time | relevance | path

Searched refs:volumePath (Results 1 – 5 of 5) sorted by relevance

/packages/modules/AdServices/sdksandbox/tests/cts/hostside/provider/src/com/android/sdksandbox/cts/provider/dataisolationtest/
DDataIsolationTestSdkApiImpl.java95 String volumePath = "/mnt/expand/" + uuid; in testSdkSandboxDataIsolation_CannotVerifyAcrossVolumes() local
97 verifyDirectoryAccess(volumePath + "/user/" + CURRENT_USER_ID + "/" + APP_2_PKG, false); in testSdkSandboxDataIsolation_CannotVerifyAcrossVolumes()
98 verifyDirectoryAccess(volumePath + "/user/" + CURRENT_USER_ID + "/does.not.exist", false); in testSdkSandboxDataIsolation_CannotVerifyAcrossVolumes()
100 volumePath + "/misc_ce/" + CURRENT_USER_ID + "/sdksandbox/" + APP_2_PKG, false); in testSdkSandboxDataIsolation_CannotVerifyAcrossVolumes()
102 volumePath + "/misc_ce/" + CURRENT_USER_ID + "/sdksandbox/does.not.exist", false); in testSdkSandboxDataIsolation_CannotVerifyAcrossVolumes()
104 volumePath + "/misc_de/" + CURRENT_USER_ID + "/sdksandbox/" + APP_2_PKG, false); in testSdkSandboxDataIsolation_CannotVerifyAcrossVolumes()
106 volumePath + "/misc_de/" + CURRENT_USER_ID + "/sdksandbox/does.not.exist", false); in testSdkSandboxDataIsolation_CannotVerifyAcrossVolumes()
/packages/providers/MediaProvider/src/com/android/providers/media/
DDatabaseHelper.java1256 final String volumePath = FileUtils.extractVolumePath(data); in migrateFromLegacy() local
1261 if (isExternal() && volumePath != null && in migrateFromLegacy()
1291 if (volumePath != null) { in migrateFromLegacy()
1293 FileUtils.computeDataFromValues(values, new File(volumePath), in migrateFromLegacy()
DMediaProvider.java4498 File volumePath; in ensureFileColumns() local
4521 volumePath = mVolumeCache.getVolumePath(resolvedVolumeName, userHandle); in ensureFileColumns()
4527 FileUtils.computeDataFromValues(values, volumePath, isFuseThread()); in ensureFileColumns()
4613 !FileUtils.buildPath(volumePath, primary).exists(); in ensureFileColumns()
4720 File volumePath = getVolumePath(volumeName); in checkDefaultDirMissing() local
4721 if (!new File(volumePath, topLevelDir).exists()) { in checkDefaultDirMissing()
4722 return volumePath; in checkDefaultDirMissing()
7774 final File volumePath = getVolumePath(volumeName);
7775 return FileUtils.buildPath(volumePath, directoryName,
7870 final File volumePath = volume.getPath();
[all …]
/packages/providers/MediaProvider/tests/src/com/android/providers/media/util/
DFileUtilsTest.java1181 final String volumePath = "/storage/emulated/0/"; in testComputeDataFromValues_withAction_trimFileName() local
1188 FileUtils.computeDataFromValues(values, new File(volumePath), false /* isForFuse */); in testComputeDataFromValues_withAction_trimFileName()
/packages/providers/MediaProvider/src/com/android/providers/media/util/
DFileUtils.java1395 @NonNull File volumePath, boolean isForFuse) {
1428 final File filePath = buildPath(volumePath, relativePath, resolvedDisplayName);