Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/
DStorageManagerService.java3650 public void mkdirs(String callingPkg, String appPath) { in mkdirs() argument
3657 throw new IllegalStateException("Failed to prepare " + appPath); in mkdirs()
3663 throw new IllegalStateException("Failed to prepare " + appPath); in mkdirs()
3673 appFile = new File(appPath).getCanonicalFile(); in mkdirs()
3675 throw new IllegalStateException("Failed to resolve " + appPath + ": " + e); in mkdirs()
3678 appPath = appFile.getAbsolutePath(); in mkdirs()
3679 if (!appPath.endsWith("/")) { in mkdirs()
3680 appPath = appPath + "/"; in mkdirs()
3684 final Matcher matcher = KNOWN_APP_DIR_PATHS.matcher(appPath); in mkdirs()
3699 mVold.setupAppDir(appPath, callingUid); in mkdirs()
[all …]