Searched refs:DexFile (Results 1 - 3 of 3) sorted by relevance

/libcore/dalvik/src/main/java/dalvik/system/
H A DDexFile.java36 public final class DexFile { class
58 public DexFile(File file) throws IOException { method in class:DexFile
79 public DexFile(String fileName) throws IOException { method in class:DexFile
97 private DexFile(String sourceName, String outputName, int flags) throws IOException { method in class:DexFile
137 * A new or previously-opened DexFile.
141 static public DexFile loadDex(String sourcePathName, String outputPathName,
145 * TODO: we may want to cache previously-opened DexFile objects.
151 return new DexFile(sourcePathName, outputPathName, flags);
255 DFEnum(DexFile df) {
H A DDexPathList.java215 DexFile dex = null;
233 * IOException might get thrown "legitimately" by the DexFile constructor if the
257 * Constructs a {@code DexFile} instance, as appropriate depending
260 private static DexFile loadDexFile(File file, File optimizedDirectory)
263 return new DexFile(file);
266 return DexFile.loadDex(file.getPath(), optimizedPath, 0);
319 DexFile dex = element.dexFile;
398 private final DexFile dexFile;
403 public Element(File file, boolean isDirectory, File zip, DexFile dexFile) {
/libcore/luni/src/test/java/tests/api/java/lang/reflect/
H A DGenericSignatureFormatErrorTest.java5 import dalvik.system.DexFile;
35 @AndroidOnly("Uses Android specific class dalvik.system.DexFile " +
73 // DexFile df = new DexFile(tf);

Completed in 262 milliseconds