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

/frameworks/base/core/java/android/content/pm/dex/
H A DDexMetadataHelper.java117 List<String> codePaths) {
119 for (int i = codePaths.size() - 1; i >= 0; i--) {
120 String codePath = codePaths.get(i);
116 buildPackageApkToDexMetadataMap( List<String> codePaths) argument
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DInstallerTest.java109 final String[] codePaths = new String[packageNames.length];
113 codePaths[i] = info.getCodePath();
121 appId, ceDataInodes, codePaths, stats);
126 appId, ceDataInodes, codePaths, quotaStats);
/frameworks/base/services/usage/java/com/android/server/usage/
H A DStorageStatsService.java278 String[] codePaths = new String[0];
283 codePaths = ArrayUtils.appendElement(String.class, codePaths,
290 appId, ceDataInodes, codePaths, stats);
316 String[] codePaths = new String[0];
325 codePaths = ArrayUtils.appendElement(String.class, codePaths,
336 appId, ceDataInodes, codePaths, stats);
341 appId, ceDataInodes, codePaths, manualStats);
/frameworks/base/core/java/com/android/internal/content/
H A DNativeLibraryHelper.java103 private static Handle create(List<String> codePaths, boolean multiArch, argument
105 final int size = codePaths.size();
108 final String path = codePaths.get(i);
/frameworks/base/services/core/java/com/android/server/pm/dex/
H A DPackageDexUsage.java516 Set<String> codePaths = packageToCodePaths.get(packageName);
520 if (!codePaths.contains(codeIt.next().getKey())) {
529 for (String codePath : codePaths) {
H A DDexManager.java368 Set<String> codePaths = putIfAbsent(
370 codePaths.add(pi.applicationInfo.sourceDir);
372 Collections.addAll(codePaths, pi.applicationInfo.splitSourceDirs);
/frameworks/native/cmds/installd/binder/android/os/
H A DIInstalld.aidl39 in @utf8InCpp String[] codePaths);
/frameworks/base/core/java/android/app/
H A DLoadedApk.java829 final List<String> codePaths = new ArrayList<>();
831 codePaths.add(mApplicationInfo.sourceDir);
834 Collections.addAll(codePaths, mApplicationInfo.splitSourceDirs);
837 if (codePaths.isEmpty()) {
843 for (int i = codePaths.size() - 1; i >= 0; i--) {
847 VMRuntime.registerAppInfo(profileFile, new String[] {codePaths.get(i)});
/frameworks/base/services/core/java/com/android/server/pm/
H A DInstaller.java239 long[] ceDataInodes, String[] codePaths, PackageStats stats)
244 appId, ceDataInodes, codePaths);
238 getAppSize(String uuid, String[] packageNames, int userId, int flags, int appId, long[] ceDataInodes, String[] codePaths, PackageStats stats) argument
H A 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;
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DZygoteInit.java522 String[] codePaths = systemServerClasspath.split(":");
534 codePaths[0],
540 VMRuntime.registerAppInfo(profilePath, codePaths);
/frameworks/native/cmds/installd/
H A DInstalldNativeService.h66 const std::vector<std::string>& codePaths, std::vector<int64_t>* _aidl_return);
H A DInstalldNativeService.cpp1434 const std::vector<std::string>& codePaths, std::vector<int64_t>* _aidl_return) {
1440 for (const auto& codePath : codePaths) {
1487 for (const auto& codePath : codePaths) {
1498 for (const auto& codePath : codePaths) {
1431 getAppSize(const std::unique_ptr<std::string>& uuid, const std::vector<std::string>& packageNames, int32_t userId, int32_t flags, int32_t appId, const std::vector<int64_t>& ceDataInodes, const std::vector<std::string>& codePaths, std::vector<int64_t>* _aidl_return) argument
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/dex/
H A DDexManagerTests.java510 private void assertIsUsedByOtherApps(List<String> codePaths, PackageUseInfo pui, argument
512 for (String codePath : codePaths) {
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java6472 public void setSplitCodePaths(String[] codePaths) { argument
6473 this.splitCodePaths = codePaths;

Completed in 415 milliseconds