Home | History | Annotate | Download | only in dex

Lines Matching defs:DexoptUtils

115         String[] contexts = DexoptUtils.getClassLoaderContexts(
135 String[] contexts = DexoptUtils.getClassLoaderContexts(
161 String[] contexts = DexoptUtils.getClassLoaderContexts(
184 String[] contexts = DexoptUtils.getClassLoaderContexts(
204 String[] contexts = DexoptUtils.getClassLoaderContexts(
223 String[] contexts = DexoptUtils.getClassLoaderContexts(
234 String[] contexts = DexoptUtils.getClassLoaderContexts(
246 String[] contexts = DexoptUtils.getClassLoaderContexts(
256 String[] contexts = DexoptUtils.getClassLoaderContexts(
267 String[] contexts = DexoptUtils.getClassLoaderContexts(
280 String[] contexts = DexoptUtils.getClassLoaderContexts(
299 String[] contexts = DexoptUtils.getClassLoaderContexts(
323 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths);
335 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths);
351 String[] context = DexoptUtils.processContextForDexLoad(classLoaders, classPaths);
359 DexoptUtils.processContextForDexLoad(Collections.emptyList(), Collections.emptyList());
370 DexoptUtils.processContextForDexLoad(Collections.emptyList(), Arrays.asList("a"));
379 assertEquals(SKIP_SHARED_LIBRARY_CHECK, DexoptUtils.encodeClassLoader(
381 assertEquals(SKIP_SHARED_LIBRARY_CHECK, DexoptUtils.encodeClassLoader(
383 assertEquals(SKIP_SHARED_LIBRARY_CHECK, DexoptUtils.encodeClassLoader(
385 assertEquals("PCL[xyz]", DexoptUtils.encodeClassLoader("xyz",
387 assertEquals("PCL[xyz]", DexoptUtils.encodeClassLoader("xyz",
389 assertEquals("DLC[xyz]", DexoptUtils.encodeClassLoader("xyz",
391 assertEquals("PCL[xyz]", DexoptUtils.encodeClassLoader("xyz", null));
392 assertEquals("abc[xyz]", DexoptUtils.encodeClassLoader("xyz", "abc"));
395 DexoptUtils.encodeClassLoader(null, "abc");
402 assertEquals(SKIP_SHARED_LIBRARY_CHECK, DexoptUtils.encodeClassLoaderChain(
404 assertEquals(SKIP_SHARED_LIBRARY_CHECK, DexoptUtils.encodeClassLoaderChain("PCL[a]",
406 assertEquals("PCL[a];DLC[b]", DexoptUtils.encodeClassLoaderChain("PCL[a]",
408 assertEquals(SKIP_SHARED_LIBRARY_CHECK, DexoptUtils.encodeClassLoaderChain("PCL[a]",
412 DexoptUtils.encodeClassLoaderChain("a", null);
417 DexoptUtils.encodeClassLoaderChain(null, "b");