/aosp14/frameworks/base/core/java/com/android/internal/app/ |
H A D | IMediaContainerService.aidl | 24 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
|
/aosp14/frameworks/base/tools/protologtool/src/com/android/protolog/tool/ |
H A D | ProtoLogTool.kt | 66 transformer.processClass(text, path, packagePath(file, code), code) 166 builder.findLogCalls(code, path, packagePath(file, code)) 189 private fun packagePath(file: File, code: CompilationUnit): String { regex 192 val packagePath = pack.replace('.', '/') + '/' + file.name regex 193 return packagePath
|
H A D | SourceTransformer.kt | 75 val hash = CodeUtils.hash(packagePath, messageString, level, group) 220 private var packagePath: String = "" 225 packagePath: String, 230 this.packagePath = packagePath
|
H A D | ViewerConfigBuilder.kt | 52 packagePath: String 62 val logCall = LogCall(messageString, level, group, packagePath)
|
/aosp14/frameworks/base/core/java/com/android/internal/os/ |
H A D | WebViewZygoteInit.java | 87 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()
|
H A D | ZygoteConnection.java | 475 protected void handlePreloadPackage(String packagePath, String libsPath, String libFileName, in handlePreloadPackage() argument
|
/aosp14/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | PackageManagerServiceUtils.java | 912 String packagePath, int flags, String abiOverride) { in getMinimalPackageInfo() argument 914 if (packagePath == null || pkg == null) { in getMinimalPackageInfo() 915 Slog.i(TAG, "Invalid package file " + packagePath); in getMinimalPackageInfo() 920 final File packageFile = new File(packagePath); in getMinimalPackageInfo() 969 public static long calculateInstalledSize(String packagePath, String abiOverride) { in calculateInstalledSize() argument 970 final File packageFile = new File(packagePath); in calculateInstalledSize() 1032 public static int copyPackage(String packagePath, File targetDir) { in copyPackage() argument 1033 if (packagePath == null) { in copyPackage() 1038 final File packageFile = new File(packagePath); in copyPackage() 1043 Slog.w(TAG, "Failed to parse package at " + packagePath); in copyPackage() [all …]
|
H A D | ShortcutService.java | 1418 final File packagePath = new File(getUserBitmapFilePath(userId), packageName); in cleanupBitmapsForPackage() local 1419 if (!packagePath.isDirectory()) { in cleanupBitmapsForPackage() 1423 if (!(FileUtils.deleteContents(packagePath) && packagePath.delete())) { in cleanupBitmapsForPackage() 1424 Slog.w(TAG, "Unable to remove directory " + packagePath); in cleanupBitmapsForPackage() 1490 final File packagePath = new File(getUserBitmapFilePath(userId), in openIconFileForWrite() local 1492 if (!packagePath.isDirectory()) { in openIconFileForWrite() 1493 packagePath.mkdirs(); in openIconFileForWrite() 1494 if (!packagePath.isDirectory()) { in openIconFileForWrite() 1495 throw new IOException("Unable to create directory " + packagePath); in openIconFileForWrite() 1497 SELinux.restorecon(packagePath); in openIconFileForWrite() [all …]
|
/aosp14/frameworks/base/core/java/android/app/ |
H A D | ApplicationLoaders.java | 264 public ClassLoader createAndCacheWebViewClassLoader(String packagePath, String libsPath, in createAndCacheWebViewClassLoader() argument 272 return getClassLoader(packagePath, Build.VERSION.SDK_INT, false, libsPath, null, null, in createAndCacheWebViewClassLoader()
|
/aosp14/frameworks/base/core/java/android/content/pm/parsing/ |
H A D | ApkLiteParseUtils.java | 124 final String packagePath = packageFile.getAbsolutePath(); in parseMonolithicPackageLite() local 126 new PackageLite(packagePath, baseApk.getPath(), baseApk, null /* splitNames */, in parseMonolithicPackageLite() 150 final String packagePath = debugPathName; in parseMonolithicPackageLite() local 152 new PackageLite(packagePath, baseApk.getPath(), baseApk, null /* splitNames */, in parseMonolithicPackageLite()
|
/aosp14/frameworks/base/libs/androidfw/ |
H A D | AssetManager.cpp | 236 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()
|
/aosp14/frameworks/base/core/java/android/os/ |
H A D | ZygoteProcess.java | 1121 String packagePath, String libsPath, String libFileName, String cacheKey, String abi) in preloadPackageForAbi() argument 1131 state.mZygoteOutputWriter.write(packagePath); in preloadPackageForAbi()
|
/aosp14/frameworks/base/core/java/android/content/pm/ |
H A D | PackageParser.java | 981 final String packagePath = packageFile.getAbsolutePath(); in parseMonolithicPackageLite() local 983 return new PackageLite(packagePath, baseApk.codePath, baseApk, null, null, null, null, null, in parseMonolithicPackageLite()
|