Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/app/
DIMediaContainerService.aidl24 int copyPackage(String packagePath, in IParcelFileDescriptorFactory target); in copyPackage() argument
26 PackageInfoLite getMinimalPackageInfo(String packagePath, int flags, String abiOverride); in getMinimalPackageInfo() argument
28 long calculateInstalledSize(String packagePath, String abiOverride); in calculateInstalledSize() argument
/frameworks/base/tools/protologtool/src/com/android/protolog/tool/
DProtoLogTool.kt66 transformer.processClass(text, path, packagePath(file, code), code) in <lambda>()
166 builder.findLogCalls(code, path, packagePath(file, code)) in <lambda>()
189 private fun packagePath(file: File, code: CompilationUnit): String { in <lambda>() method
192 val packagePath = pack.replace('.', '/') + '/' + file.name in <lambda>() constant
193 return packagePath in <lambda>()
DSourceTransformer.kt75 val hash = CodeUtils.hash(packagePath, messageString, level, group) in <lambda>()
220 private var packagePath: String = "" in <lambda>() variable
225 packagePath: String, in <lambda>()
230 this.packagePath = packagePath in <lambda>()
DViewerConfigBuilder.kt52 packagePath: String in <lambda>()
62 val logCall = LogCall(messageString, level, group, packagePath) in <lambda>()
/frameworks/base/core/java/com/android/internal/os/
DWebViewZygoteInit.java87 protected void handlePreloadPackage(String packagePath, String libsPath, String libFileName, in handlePreloadPackage() argument
95 packagePath, libsPath, cacheKey); in handlePreloadPackage()
98 String[] packageList = TextUtils.split(packagePath, File.pathSeparator); in handlePreloadPackage()
DZygoteConnection.java475 protected void handlePreloadPackage(String packagePath, String libsPath, String libFileName, in handlePreloadPackage() argument
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerServiceUtils.java833 String packagePath, int flags, String abiOverride) { in getMinimalPackageInfo() argument
835 if (packagePath == null || pkg == null) { in getMinimalPackageInfo()
836 Slog.i(TAG, "Invalid package file " + packagePath); in getMinimalPackageInfo()
841 final File packageFile = new File(packagePath); in getMinimalPackageInfo()
879 public static long calculateInstalledSize(String packagePath, String abiOverride) { in calculateInstalledSize() argument
880 final File packageFile = new File(packagePath); in calculateInstalledSize()
942 public static int copyPackage(String packagePath, File targetDir) { in copyPackage() argument
943 if (packagePath == null) { in copyPackage()
948 final File packageFile = new File(packagePath); in copyPackage()
953 Slog.w(TAG, "Failed to parse package at " + packagePath); in copyPackage()
[all …]
DShortcutService.java1375 final File packagePath = new File(getUserBitmapFilePath(userId), packageName); in cleanupBitmapsForPackage() local
1376 if (!packagePath.isDirectory()) { in cleanupBitmapsForPackage()
1379 if (!(FileUtils.deleteContents(packagePath) && packagePath.delete())) { in cleanupBitmapsForPackage()
1380 Slog.w(TAG, "Unable to remove directory " + packagePath); in cleanupBitmapsForPackage()
1472 final File packagePath = new File(getUserBitmapFilePath(userId), in openIconFileForWrite() local
1474 if (!packagePath.isDirectory()) { in openIconFileForWrite()
1475 packagePath.mkdirs(); in openIconFileForWrite()
1476 if (!packagePath.isDirectory()) { in openIconFileForWrite()
1477 throw new IOException("Unable to create directory " + packagePath); in openIconFileForWrite()
1479 SELinux.restorecon(packagePath); in openIconFileForWrite()
[all …]
/frameworks/base/core/java/android/app/
DApplicationLoaders.java260 public ClassLoader createAndCacheWebViewClassLoader(String packagePath, String libsPath, in createAndCacheWebViewClassLoader() argument
268 return getClassLoader(packagePath, Build.VERSION.SDK_INT, false, libsPath, null, null, in createAndCacheWebViewClassLoader()
/frameworks/base/libs/androidfw/
DAssetManager.cpp236 bool AssetManager::addOverlayPath(const String8& packagePath, int32_t* cookie) in addOverlayPath() argument
238 const String8 idmapPath = idmapPathForPackagePath(packagePath); in addOverlayPath()
265 if (overlayPath != packagePath) { in addOverlayPath()
267 idmapPath.string(), packagePath.string(), overlayPath.string()); in addOverlayPath()
/frameworks/base/core/java/android/content/pm/parsing/
DApkLiteParseUtils.java105 final String packagePath = packageFile.getAbsolutePath(); in parseMonolithicPackageLite() local
107 new PackageLite(packagePath, baseApk.getPath(), baseApk, null, in parseMonolithicPackageLite()
/frameworks/base/core/java/android/os/
DZygoteProcess.java1134 String packagePath, String libsPath, String libFileName, String cacheKey, String abi) in preloadPackageForAbi() argument
1144 state.mZygoteOutputWriter.write(packagePath); in preloadPackageForAbi()
/frameworks/base/core/java/android/content/pm/
DPackageParser.java959 final String packagePath = packageFile.getAbsolutePath(); in parseMonolithicPackageLite() local
961 return new PackageLite(packagePath, baseApk.codePath, baseApk, null, null, null, null, null, in parseMonolithicPackageLite()