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.java441 protected void handlePreloadPackage(String packagePath, String libsPath, String libFileName, in handlePreloadPackage() argument
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerServiceUtils.java807 public static PackageInfoLite getMinimalPackageInfo(Context context, String packagePath, in getMinimalPackageInfo() argument
810 if (packagePath == null) { in getMinimalPackageInfo()
811 Slog.i(TAG, "Invalid package file " + packagePath); in getMinimalPackageInfo()
816 final File packageFile = new File(packagePath); in getMinimalPackageInfo()
823 Slog.w(TAG, "Failed to parse package at " + packagePath + ": " + e); in getMinimalPackageInfo()
858 public static long calculateInstalledSize(String packagePath, String abiOverride) { in calculateInstalledSize() argument
859 final File packageFile = new File(packagePath); in calculateInstalledSize()
916 public static int copyPackage(String packagePath, File targetDir) { in copyPackage() argument
917 if (packagePath == null) { in copyPackage()
922 final File packageFile = new File(packagePath); in copyPackage()
[all …]
DShortcutService.java1308 final File packagePath = new File(getUserBitmapFilePath(userId), packageName); in cleanupBitmapsForPackage() local
1309 if (!packagePath.isDirectory()) { in cleanupBitmapsForPackage()
1312 if (!(FileUtils.deleteContents(packagePath) && packagePath.delete())) { in cleanupBitmapsForPackage()
1313 Slog.w(TAG, "Unable to remove directory " + packagePath); in cleanupBitmapsForPackage()
1405 final File packagePath = new File(getUserBitmapFilePath(userId), in openIconFileForWrite() local
1407 if (!packagePath.isDirectory()) { in openIconFileForWrite()
1408 packagePath.mkdirs(); in openIconFileForWrite()
1409 if (!packagePath.isDirectory()) { in openIconFileForWrite()
1410 throw new IOException("Unable to create directory " + packagePath); in openIconFileForWrite()
1412 SELinux.restorecon(packagePath); in openIconFileForWrite()
[all …]
/frameworks/base/core/java/android/app/
DApplicationLoaders.java249 public ClassLoader createAndCacheWebViewClassLoader(String packagePath, String libsPath, in createAndCacheWebViewClassLoader() argument
257 return getClassLoader(packagePath, Build.VERSION.SDK_INT, false, libsPath, null, null, in createAndCacheWebViewClassLoader()
/frameworks/base/core/java/android/content/pm/parsing/
DApkLiteParseUtils.java95 final String packagePath = packageFile.getAbsolutePath(); in parseMonolithicPackageLite() local
97 new PackageParser.PackageLite(packagePath, baseApk, null, null, null, null, in parseMonolithicPackageLite()
/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/os/
DZygoteProcess.java1142 String packagePath, String libsPath, String libFileName, String cacheKey, String abi) in preloadPackageForAbi() argument
1152 state.mZygoteOutputWriter.write(packagePath); in preloadPackageForAbi()
/frameworks/base/core/java/android/content/pm/
DPackageParser.java936 final String packagePath = packageFile.getAbsolutePath(); in parseMonolithicPackageLite() local
938 return new PackageLite(packagePath, baseApk, null, null, null, null, null, null); in parseMonolithicPackageLite()