/frameworks/base/services/usage/java/com/android/server/usage/ |
D | StorageStatsService.java | 278 String[] codePaths = new String[0]; in queryStatsForPackage() local 283 codePaths = ArrayUtils.appendElement(String.class, codePaths, in queryStatsForPackage() 290 appId, ceDataInodes, codePaths, stats); in queryStatsForPackage() 316 String[] codePaths = new String[0]; in queryStatsForUid() local 325 codePaths = ArrayUtils.appendElement(String.class, codePaths, in queryStatsForUid() 336 appId, ceDataInodes, codePaths, stats); in queryStatsForUid() 341 appId, ceDataInodes, codePaths, manualStats); in queryStatsForUid()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
D | InstallerTest.java | 109 final String[] codePaths = new String[packageNames.length]; in testGetAppSize() local 113 codePaths[i] = info.getCodePath(); in testGetAppSize() 121 appId, ceDataInodes, codePaths, stats); in testGetAppSize() 126 appId, ceDataInodes, codePaths, quotaStats); in testGetAppSize()
|
/frameworks/base/core/java/android/content/pm/dex/ |
D | DexMetadataHelper.java | 117 List<String> codePaths) { in buildPackageApkToDexMetadataMap() argument 119 for (int i = codePaths.size() - 1; i >= 0; i--) { in buildPackageApkToDexMetadataMap() 120 String codePath = codePaths.get(i); in buildPackageApkToDexMetadataMap()
|
/frameworks/base/core/java/com/android/internal/content/ |
D | NativeLibraryHelper.java | 103 private static Handle create(List<String> codePaths, boolean multiArch, in create() argument 105 final int size = codePaths.size(); in create() 108 final String path = codePaths.get(i); in create()
|
/frameworks/base/services/core/java/com/android/server/pm/dex/ |
D | PackageDexUsage.java | 516 Set<String> codePaths = packageToCodePaths.get(packageName); in syncData() local 520 if (!codePaths.contains(codeIt.next().getKey())) { in syncData() 529 for (String codePath : codePaths) { in syncData()
|
D | DexManager.java | 368 Set<String> codePaths = putIfAbsent( in loadInternal() local 370 codePaths.add(pi.applicationInfo.sourceDir); in loadInternal() 372 Collections.addAll(codePaths, pi.applicationInfo.splitSourceDirs); in loadInternal()
|
/frameworks/base/core/java/com/android/internal/os/ |
D | ZygoteInit.java | 522 String[] codePaths = systemServerClasspath.split(":"); in prepareSystemServerProfile() local 534 codePaths[0], in prepareSystemServerProfile() 540 VMRuntime.registerAppInfo(profilePath, codePaths); in prepareSystemServerProfile()
|
/frameworks/base/core/java/android/app/ |
D | LoadedApk.java | 829 final List<String> codePaths = new ArrayList<>(); in setupJitProfileSupport() local 831 codePaths.add(mApplicationInfo.sourceDir); in setupJitProfileSupport() 834 Collections.addAll(codePaths, mApplicationInfo.splitSourceDirs); in setupJitProfileSupport() 837 if (codePaths.isEmpty()) { in setupJitProfileSupport() 843 for (int i = codePaths.size() - 1; i >= 0; i--) { in setupJitProfileSupport() 847 VMRuntime.registerAppInfo(profileFile, new String[] {codePaths.get(i)}); in setupJitProfileSupport()
|
/frameworks/native/cmds/installd/binder/android/os/ |
D | IInstalld.aidl | 39 in @utf8InCpp String[] codePaths); in getAppSize() argument
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | Installer.java | 239 long[] ceDataInodes, String[] codePaths, PackageStats stats) in getAppSize() argument 244 appId, ceDataInodes, codePaths); in getAppSize()
|
D | PackageManagerService.java | 19540 final String[] codePaths = { ps.codePathString }; 19544 ps.appId, ceDataInodes, codePaths, stats); 22312 List<String> codePaths = new ArrayList<>(); 22316 codePaths.add(ps.codePath.getAbsolutePath()); 22318 return codePaths; 24538 final List<String> codePaths; 24545 codePaths = pkg.getAllCodePaths(); 24548 for (String codePath : codePaths) {
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/dex/ |
D | DexManagerTests.java | 510 private void assertIsUsedByOtherApps(List<String> codePaths, PackageUseInfo pui, in assertIsUsedByOtherApps() argument 512 for (String codePath : codePaths) { in assertIsUsedByOtherApps()
|
/frameworks/native/cmds/installd/ |
D | InstalldNativeService.h | 66 const std::vector<std::string>& codePaths, std::vector<int64_t>* _aidl_return);
|
D | InstalldNativeService.cpp | 1434 const std::vector<std::string>& codePaths, std::vector<int64_t>* _aidl_return) { in getAppSize() argument 1440 for (const auto& codePath : codePaths) { in getAppSize() 1487 for (const auto& codePath : codePaths) { in getAppSize() 1498 for (const auto& codePath : codePaths) { in getAppSize()
|
/frameworks/base/core/java/android/content/pm/ |
D | PackageParser.java | 6472 public void setSplitCodePaths(String[] codePaths) { in setSplitCodePaths() argument 6473 this.splitCodePaths = codePaths; in setSplitCodePaths()
|