Home
last modified time | relevance | path

Searched refs:classPaths (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/core/java/android/app/
DDexLoadReporter.java93 public void report(List<BaseDexClassLoader> classLoadersChain, List<String> classPaths) { in report() argument
94 if (classLoadersChain.size() != classPaths.size()) { in report()
98 if (classPaths.isEmpty()) { in report()
105 String[] dexPathsForRegistration = classPaths.get(0).split(File.pathSeparator); in report()
113 notifyPackageManager(classLoadersChain, classPaths); in report()
120 List<String> classPaths) { in notifyPackageManager() argument
122 List<String> classLoadersNames = new ArrayList<>(classPaths.size()); in notifyPackageManager()
129 packageName, classLoadersNames, classPaths, in notifyPackageManager()
/frameworks/base/services/core/java/com/android/server/pm/dex/
DDexoptUtils.java306 List<String> classPaths) { in processContextForDexLoad() argument
307 if (classLoadersNames.size() != classPaths.size()) { in processContextForDexLoad()
324 String classpath = encodeClasspath(classPaths.get(i).split(File.pathSeparator)); in processContextForDexLoad()
334 String[] loadedDexPaths = classPaths.get(0).split(File.pathSeparator); in processContextForDexLoad()
DDexManager.java128 List<String> classPaths, String loaderIsa, int loaderUserId) { in notifyDexLoad() argument
130 notifyDexLoadInternal(loadingAppInfo, classLoadersNames, classPaths, loaderIsa, in notifyDexLoad()
139 List<String> classLoaderNames, List<String> classPaths, String loaderIsa, in notifyDexLoadInternal() argument
141 if (classLoaderNames.size() != classPaths.size()) { in notifyDexLoadInternal()
150 Slog.w(TAG, "Loading dex files " + classPaths + " in unsupported ISA: " + in notifyDexLoadInternal()
156 String[] dexPathsToRegister = classPaths.get(0).split(File.pathSeparator); in notifyDexLoadInternal()
160 classLoaderNames, classPaths); in notifyDexLoadInternal()
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/dex/
DDexoptUtilsTest.java319 List<String> classPaths = Arrays.asList( in testProcessContextForDexLoad() local
323 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoad()
333 List<String> classPaths = Arrays.asList( in testProcessContextForDexLoadSingleElement() local
335 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoadSingleElement()
348 List<String> classPaths = Arrays.asList( in testProcessContextForDexLoadUnsupported() local
351 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoadUnsupported()
DDexManagerTests.java484 List<String> classPaths = Arrays.asList(String.join(File.pathSeparator, dexPaths)); in notifyDexLoad() local
485 notifyDexLoad(testData, classLoaders, classPaths, loaderUserId); in notifyDexLoad()
488 private void notifyDexLoad(TestData testData, List<String> classLoader, List<String> classPaths, in notifyDexLoad() argument
490 mDexManager.notifyDexLoad(testData.mPackageInfo.applicationInfo, classLoader, classPaths, in notifyDexLoad()
/frameworks/base/core/java/android/content/pm/
DIPackageManager.aidl485 in List<String> classPaths, String loaderIsa); in notifyDexLoad() argument
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerService.java10019 List<String> classPaths, String loaderIsa) { in notifyDexLoad() argument
10027 mDexManager.notifyDexLoad(ai, classLoaderNames, classPaths, loaderIsa, userId); in notifyDexLoad()