Home
last modified time | relevance | path

Searched refs:dexFiles (Results 1 – 2 of 2) sorted by relevance

/libcore/dalvik/src/main/java/dalvik/system/
DDexPathList.java254 /* package */ void initByteBufferDexPath(ByteBuffer[] dexFiles) { in initByteBufferDexPath() argument
255 if (dexFiles == null) { in initByteBufferDexPath()
258 if (Arrays.stream(dexFiles).anyMatch(v -> v == null)) { in initByteBufferDexPath()
269 DexFile dex = new DexFile(dexFiles, definingContext, null_elements); in initByteBufferDexPath()
343 public static Element[] makeInMemoryDexElements(ByteBuffer[] dexFiles, in makeInMemoryDexElements() argument
345 Element[] elements = new Element[dexFiles.length]; in makeInMemoryDexElements()
347 for (ByteBuffer buf : dexFiles) { in makeInMemoryDexElements()
DBaseDexClassLoader.java173 public BaseDexClassLoader(ByteBuffer[] dexFiles, String librarySearchPath, ClassLoader parent) { in BaseDexClassLoader() argument
177 this.pathList.initByteBufferDexPath(dexFiles); in BaseDexClassLoader()