Home
last modified time | relevance | path

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

/frameworks/base/services/usage/java/com/android/server/usage/
DStorageStatsService.java278 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/
DInstallerTest.java109 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/
DDexMetadataHelper.java117 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/
DNativeLibraryHelper.java103 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/
DPackageDexUsage.java516 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()
DDexManager.java368 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/
DZygoteInit.java522 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/
DLoadedApk.java829 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/
DIInstalld.aidl39 in @utf8InCpp String[] codePaths); in getAppSize() argument
/frameworks/base/services/core/java/com/android/server/pm/
DInstaller.java239 long[] ceDataInodes, String[] codePaths, PackageStats stats) in getAppSize() argument
244 appId, ceDataInodes, codePaths); in getAppSize()
DPackageManagerService.java19540 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/
DDexManagerTests.java510 private void assertIsUsedByOtherApps(List<String> codePaths, PackageUseInfo pui, in assertIsUsedByOtherApps() argument
512 for (String codePath : codePaths) { in assertIsUsedByOtherApps()
/frameworks/native/cmds/installd/
DInstalldNativeService.h66 const std::vector<std::string>& codePaths, std::vector<int64_t>* _aidl_return);
DInstalldNativeService.cpp1434 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/
DPackageParser.java6472 public void setSplitCodePaths(String[] codePaths) { in setSplitCodePaths() argument
6473 this.splitCodePaths = codePaths; in setSplitCodePaths()