Searched refs:deodex (Results 1 - 4 of 4) sorted by relevance

/external/smali/baksmali/src/main/java/org/jf/baksmali/
H A Dbaksmali.java53 public static boolean deodex = false; field in class:baksmali
60 public static void disassembleDexFile(String dexFilePath, DexFile dexFile, boolean deodex, String outputDirectory, argument
73 baksmali.deodex = deodex;
88 if (registerInfo != 0 || deodex || verify) {
155 if (registerInfo != 0 || deodex || verify) {
H A Dmain.java107 boolean deodex = false;
206 deodex = true;
263 if (!deodex) {
265 System.err.println("won't be able to re-assemble the results unless you deodex it with the -x");
269 deodex = false;
282 baksmali.disassembleDexFile(dexFileFile.getPath(), dexFile, deodex, outputDirectory,
362 Option deodexerantOption = OptionBuilder.withLongOpt("deodex")
363 .withDescription("deodex the given odex file. This option is ignored if the input file is not an " +
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DMethodDefinition.java299 if (baksmali.registerInfo != 0 || baksmali.deodex || baksmali.verify) {
376 methodAnalyzer = new MethodAnalyzer(encodedMethod, baksmali.deodex);
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DMethodAnalyzer.java44 * for each register, it can deodex odexed instructions, and it can verify the bytecode. The analysis and verification
74 public MethodAnalyzer(ClassDataItem.EncodedMethod encodedMethod, boolean deodex) { argument
83 if (deodex) {
204 //re-deodex it

Completed in 62 milliseconds