Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/
DDexLoadReporter.java90 public void report(List<ClassLoader> classLoadersChain, List<String> classPaths) { in report() argument
91 if (classLoadersChain.size() != classPaths.size()) { in report()
95 if (classPaths.isEmpty()) { in report()
102 String[] dexPathsForRegistration = classPaths.get(0).split(File.pathSeparator); in report()
110 notifyPackageManager(classLoadersChain, classPaths); in report()
117 List<String> classPaths) { in notifyPackageManager() argument
119 List<String> classLoadersNames = new ArrayList<>(classPaths.size()); in notifyPackageManager()
126 packageName, classLoadersNames, classPaths, in notifyPackageManager()
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/dex/
DDexoptUtilsTest.java355 List<String> classPaths = Arrays.asList( in testProcessContextForDexLoad() local
359 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoad()
369 List<String> classPaths = Arrays.asList( in testProcessContextForDexLoadSingleElement() local
371 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoadSingleElement()
384 List<String> classPaths = Arrays.asList( in testProcessContextForDexLoadUnsupported() local
387 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoadUnsupported()
396 List<String> classPaths = Arrays.asList( in testProcessContextForDexLoadNoClassPath() local
399 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoadNoClassPath()
DDexManagerTests.java452 List<String> classPaths = Arrays.asList(classPath, classPath); in testNotifySupportedAndUnsupportedClassLoader() local
453 notifyDexLoad(mBarUser0, classLoaders, classPaths, mUser0); in testNotifySupportedAndUnsupportedClassLoader()
550 List<String> classPaths = (dexPaths == null) in notifyDexLoad() local
553 notifyDexLoad(testData, classLoaders, classPaths, loaderUserId); in notifyDexLoad()
557 List<String> classPaths, int loaderUserId) { in notifyDexLoad() argument
560 classPaths, testData.mLoaderIsa, loaderUserId); in notifyDexLoad()
/frameworks/base/services/core/java/com/android/server/pm/dex/
DDexoptUtils.java351 List<String> classPaths) { in processContextForDexLoad() argument
352 if (classLoadersNames.size() != classPaths.size()) { in processContextForDexLoad()
367 || classPaths.get(i) == null) { in processContextForDexLoad()
370 String classpath = encodeClasspath(classPaths.get(i).split(File.pathSeparator)); in processContextForDexLoad()
380 String[] loadedDexPaths = classPaths.get(0).split(File.pathSeparator); in processContextForDexLoad()
DDexManager.java159 List<String> classPaths, String loaderIsa, int loaderUserId) { in notifyDexLoad() argument
161 notifyDexLoadInternal(loadingAppInfo, classLoadersNames, classPaths, loaderIsa, in notifyDexLoad()
171 List<String> classLoaderNames, List<String> classPaths, String loaderIsa, in notifyDexLoadInternal() argument
173 if (classLoaderNames.size() != classPaths.size()) { in notifyDexLoadInternal()
182 Slog.w(TAG, "Loading dex files " + classPaths + " in unsupported ISA: " + in notifyDexLoadInternal()
189 String firstClassPath = classPaths.get(0); in notifyDexLoadInternal()
198 classLoaderNames, classPaths); in notifyDexLoadInternal()
/frameworks/base/core/java/android/content/pm/
DIPackageManager.aidl543 in List<String> classPaths, String loaderIsa); in notifyDexLoad() argument
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerService.java9852 List<String> classPaths, String loaderIsa) {
9860 mDexManager.notifyDexLoad(ai, classLoaderNames, classPaths, loaderIsa, userId);