Home
last modified time | relevance | path

Searched refs:processContextForDexLoad (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/pm/dex/
DDexoptUtilsTest.java383 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoad()
395 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoadSingleElement()
411 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoadUnsupported()
423 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in testProcessContextForDexLoadNoClassPath()
431 DexoptUtils.processContextForDexLoad(Collections.emptyList(), Collections.emptyList()); in testProcessContextForDexLoadIllegalCallEmptyList()
442 DexoptUtils.processContextForDexLoad(Collections.emptyList(), Arrays.asList("a")); in testProcessContextForDexLoadIllegalCallDifferentSize()
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/pm/dex/
DDexManagerTests.java244 String[] allExpectedContexts = DexoptUtils.processContextForDexLoad( in testNotifyPrimaryAndSecondary()
657 String[] allClassLoaderContexts = DexoptUtils.processContextForDexLoad( in testPrimaryAndSecondaryDexLoad()
675 String[] expectedContexts = DexoptUtils.processContextForDexLoad( in testNotifySecondary_withSharedLibrary()
839 String[] expectedContexts = DexoptUtils.processContextForDexLoad( in assertSecondaryUse()
898 String[] results = DexoptUtils.processContextForDexLoad(classLoaders, classPaths); in computeClassLoaderContexts()
/frameworks/base/services/core/java/com/android/server/pm/dex/
DDexoptUtils.java357 /*package*/ static String[] processContextForDexLoad(List<String> classLoadersNames, in processContextForDexLoad() method in DexoptUtils