Searched refs:dexEntry (Results 1 – 3 of 3) sorted by relevance
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/ |
D | DexFileFactory.java | 76 …public static DexBackedDexFile loadDexFile(@Nonnull File dexFile, @Nullable String dexEntry, int a… in loadDexFile() argument 78 return loadDexFile(dexFile, dexEntry, Opcodes.forApi(api, experimental)); in loadDexFile() 82 public static DexBackedDexFile loadDexFile(@Nonnull File dexFile, @Nullable String dexEntry, in loadDexFile() argument 91 String zipEntryName = MoreObjects.firstNonNull(dexEntry, "classes.dex"); in loadDexFile() 156 if (dexEntry == null) { in loadDexFile() 164 if (oatDexFile.filename.equals(dexEntry)) { in loadDexFile() 169 if (!dexEntry.contains("/")) { in loadDexFile() 172 if (oatEntryFile.getName().equals(dexEntry)) { in loadDexFile() 179 dexFile.getName(), dexEntry); in loadDexFile()
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/ |
D | baksmaliOptions.java | 58 @Nullable public String dexEntry = null; field in baksmaliOptions
|
D | main.java | 251 options.dexEntry = commandLine.getOptionValue("e"); in main() 292 …dexFile = DexFileFactory.loadDexFile(dexFileFile, options.dexEntry, options.apiLevel, options.expe… in main()
|