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.java249 /* package */ void initByteBufferDexPath(ByteBuffer[] dexFiles) { in initByteBufferDexPath() argument
250 if (dexFiles == null) { in initByteBufferDexPath()
253 if (Arrays.stream(dexFiles).anyMatch(v -> v == null)) { in initByteBufferDexPath()
264 DexFile dex = new DexFile(dexFiles, definingContext, null_elements); in initByteBufferDexPath()
337 public static Element[] makeInMemoryDexElements(ByteBuffer[] dexFiles, in makeInMemoryDexElements() argument
339 Element[] elements = new Element[dexFiles.length]; in makeInMemoryDexElements()
341 for (ByteBuffer buf : dexFiles) { in makeInMemoryDexElements()
DBaseDexClassLoader.java221 public BaseDexClassLoader(ByteBuffer[] dexFiles, String librarySearchPath, ClassLoader parent) { in BaseDexClassLoader() argument
226 this.pathList.initByteBufferDexPath(dexFiles); in BaseDexClassLoader()