Searched defs:allCodePaths (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java7537 List<String> allCodePaths = pkg.getAllCodePathsExcludingResourceOnly();
7539 String codePaths = TextUtils.join(";", allCodePaths);
13287 private void removeDexFiles(List<String> allCodePaths, String[] instructionSets) { argument
13288 if (!allCodePaths.isEmpty()) {
13293 for (String codePath : allCodePaths) {
13494 List<String> allCodePaths = Collections.EMPTY_LIST;
13498 allCodePaths = pkg.getAllCodePaths();
13505 removeDexFiles(allCodePaths, instructionSets);
13787 private void cleanUpResourcesLI(List<String> allCodePaths) { argument
13789 removeDexFiles(allCodePaths, instructionSet
[all...]

Completed in 41 milliseconds