Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerService.java3306 final File dstCodePath = in decompressPackage() local
3310 Os.mkdir(dstCodePath.getAbsolutePath(), 0755); in decompressPackage()
3311 Os.chmod(dstCodePath.getAbsolutePath(), 0755); in decompressPackage()
3316 final File dstFile = new File(dstCodePath, dstFileName); in decompressPackage()
3331 final File libraryRoot = new File(dstCodePath, LIB_DIR_NAME); in decompressPackage()
3334 handle = NativeLibraryHelper.Handle.create(dstCodePath); in decompressPackage()
3346 if (dstCodePath == null || !dstCodePath.exists()) { in decompressPackage()
3349 removeCodePathLI(dstCodePath); in decompressPackage()
3353 return dstCodePath; in decompressPackage()