Searched refs:classPaths (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/dex/ |
D | DexoptUtilsTest.java | 377 List<String> classPaths = Arrays.asList( in testProcessContextForDexLoad() local 381 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoad() 391 List<String> classPaths = Arrays.asList( in testProcessContextForDexLoadSingleElement() local 393 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoadSingleElement() 406 List<String> classPaths = Arrays.asList( in testProcessContextForDexLoadUnsupported() local 409 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoadUnsupported() 418 List<String> classPaths = Arrays.asList( in testProcessContextForDexLoadNoClassPath() local 421 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoadNoClassPath()
|
D | DexManagerTests.java | 483 List<String> classPaths = Arrays.asList(classPath, classPath); in testNotifySupportedAndUnsupportedClassLoader() local 484 notifyDexLoad(mBarUser0, classLoaders, classPaths, mUser0); in testNotifySupportedAndUnsupportedClassLoader() 655 List<String> classPaths = dexPaths != null in notifyDexLoad() local 657 notifyDexLoad(testData, classLoaders, classPaths, loaderUserId); in notifyDexLoad() 661 List<String> classPaths, int loaderUserId) { in notifyDexLoad() argument 662 String[] classLoaderContexts = computeClassLoaderContexts(classLoaders, classPaths); in notifyDexLoad() 664 List<String> dexPaths = classPaths != null in notifyDexLoad() 665 ? Arrays.asList(classPaths.get(0).split(File.pathSeparator)) : Arrays.asList(); in notifyDexLoad() 682 List<String> classPaths) { in computeClassLoaderContexts() argument 683 if (classPaths == null) { in computeClassLoaderContexts() [all …]
|
/frameworks/base/services/core/java/com/android/server/pm/dex/ |
D | DexoptUtils.java | 357 List<String> classPaths) { in processContextForDexLoad() argument 358 if (classLoadersNames.size() != classPaths.size()) { in processContextForDexLoad() 373 || classPaths.get(i) == null) { in processContextForDexLoad() 376 String classpath = encodeClasspath(classPaths.get(i).split(File.pathSeparator)); in processContextForDexLoad() 386 String[] loadedDexPaths = classPaths.get(0).split(File.pathSeparator); in processContextForDexLoad()
|