Home
last modified time | relevance | path

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

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
DDexUtil.java94 … throw new UnsupportedFile(String.format("Dex version %03d is not supported", dexVersion)); in verifyDexHeader()
99 throw new UnsupportedFile("Big endian dex files are not supported"); in verifyDexHeader()
152 … throw new UnsupportedFile(String.format("Odex version %03d is not supported", odexVersion)); in verifyOdexHeader()
173 public static class UnsupportedFile extends RuntimeException { class in DexUtil
174 public UnsupportedFile() { in UnsupportedFile() method in DexUtil.UnsupportedFile
177 public UnsupportedFile(String message) { in UnsupportedFile() method in DexUtil.UnsupportedFile
181 public UnsupportedFile(String message, Throwable cause) { in UnsupportedFile() method in DexUtil.UnsupportedFile
185 public UnsupportedFile(Throwable cause) { in UnsupportedFile() method in DexUtil.UnsupportedFile
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DZipDexContainer.java42 import org.jf.dexlib2.util.DexUtil.UnsupportedFile;
172 } catch (UnsupportedFile ex) { in isDex()