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 | 379 List<String> classPaths = Arrays.asList( in testProcessContextForDexLoad() local 383 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoad() 393 List<String> classPaths = Arrays.asList( in testProcessContextForDexLoadSingleElement() local 395 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoadSingleElement() 408 List<String> classPaths = Arrays.asList( in testProcessContextForDexLoadUnsupported() local 411 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoadUnsupported() 420 List<String> classPaths = Arrays.asList( in testProcessContextForDexLoadNoClassPath() local 423 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoadNoClassPath()
|
/frameworks/base/services/core/java/com/android/server/pm/dex/ |
D | DexoptUtils.java | 358 List<String> classPaths) { in processContextForDexLoad() argument 359 if (classLoadersNames.size() != classPaths.size()) { in processContextForDexLoad() 374 || classPaths.get(i) == null) { in processContextForDexLoad() 377 String classpath = encodeClasspath(classPaths.get(i).split(File.pathSeparator)); in processContextForDexLoad() 387 String[] loadedDexPaths = classPaths.get(0).split(File.pathSeparator); in processContextForDexLoad()
|
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/pm/dex/ |
D | DexManagerTests.java | 562 List<String> classPaths = Arrays.asList(classPath, classPath); in testNotifySupportedAndUnsupportedClassLoader() local 563 notifyDexLoad(mBarUser0, classLoaders, classPaths, mUser0, /*isolatedProcess=*/ false); in testNotifySupportedAndUnsupportedClassLoader() 867 List<String> classPaths = dexPaths != null in notifyDexLoad() local 869 notifyDexLoad(testData, classLoaders, classPaths, loaderUserId, isolatedProcess); in notifyDexLoad() 873 List<String> classPaths, int loaderUserId, boolean isolatedProcess) { in notifyDexLoad() argument 874 String[] classLoaderContexts = computeClassLoaderContexts(classLoaders, classPaths); in notifyDexLoad() 876 List<String> dexPaths = classPaths != null in notifyDexLoad() 877 ? Arrays.asList(classPaths.get(0).split(File.pathSeparator)) : Arrays.asList(); in notifyDexLoad() 894 List<String> classPaths) { in computeClassLoaderContexts() argument 895 if (classPaths == null) { in computeClassLoaderContexts() [all …]
|