Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/content/
DInstallLocationUtils.java201 final ArrayMap<String, String> volumePaths = new ArrayMap<>(); in resolveInstallVolume() local
210 volumePaths.put(vol.fsUuid, vol.path); in resolveInstallVolume()
251 } else if (volumePaths.containsKey(existingInfo.volumeUuid)) { in resolveInstallVolume()
252 existingVolumePath = volumePaths.get(existingInfo.volumeUuid); in resolveInstallVolume()
265 String bestCandidate = !volumePaths.isEmpty() ? volumePaths.keyAt(0) : null; in resolveInstallVolume()
266 if (volumePaths.size() == 1) { in resolveInstallVolume()
267 if (checkFitOnVolume(storageManager, volumePaths.valueAt(0), params)) { in resolveInstallVolume()
272 for (String vol : volumePaths.keySet()) { in resolveInstallVolume()
273 final String volumePath = volumePaths.get(vol); in resolveInstallVolume()
295 if (!volumePaths.isEmpty() && Integer.MAX_VALUE == params.sizeBytes in resolveInstallVolume()