Searched defs:dexFile (Results 1 - 25 of 78) sorted by relevance

1234

/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DItemFactory.java32 protected static Item makeItem(ItemType itemType, DexFile dexFile) { argument
35 return new StringIdItem(dexFile);
37 return new TypeIdItem(dexFile);
39 return new ProtoIdItem(dexFile);
41 return new FieldIdItem(dexFile);
43 return new MethodIdItem(dexFile);
45 return new ClassDefItem(dexFile);
47 return new TypeListItem(dexFile);
49 return new AnnotationSetRefList(dexFile);
51 return new AnnotationSetItem(dexFile);
[all...]
H A DOffsettedSection.java34 public OffsettedSection(DexFile dexFile, ItemType itemType) { argument
35 super(dexFile, itemType);
H A DIndexedSection.java38 * @param dexFile The <code>DexFile</code> that this section belongs to
41 public IndexedSection(DexFile dexFile, ItemType itemType) { argument
42 super(dexFile, itemType);
/external/smali/baksmali/src/main/java/org/jf/baksmali/
H A Ddump.java39 public static void dump(DexFile dexFile, String dumpFileName, String outputDexFileName, boolean sort) argument
44 dexFile.setSortAllItems(true);
47 dexFile.setInplace(true);
56 dexFile.place();
57 dexFile.writeTo(out);
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DTypeUtils.java36 public static EncodedValue makeDefaultValueForType(DexFile dexFile, String type) { argument
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DDexFileClassMap.java43 public DexFileClassMap(DexFile dexFile) { argument
44 for (ClassDefItem classDefItem: dexFile.ClassDefsSection.getItems()) {
H A DSyntheticAccessorResolver.java47 public SyntheticAccessorResolver(DexFile dexFile) { argument
48 classMap = new DexFileClassMap(dexFile);
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
H A DInstruction10x.java60 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
H A DInstruction10t.java88 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
H A DInstruction11n.java85 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
H A DInstruction11x.java72 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
H A DInstruction12x.java79 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
H A DInstruction20t.java90 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
H A DInstruction21c.java61 private Instruction21c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
62 super(dexFile, opcode, buffer, bufferIndex);
92 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
93 return new Instruction21c(dexFile, opcode, buffer, bufferIndex);
H A DInstruction21h.java81 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
H A DInstruction21s.java81 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
H A DInstruction22x.java84 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
H A DInstruction30t.java74 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
H A DInstruction31c.java54 private Instruction31c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
55 super(dexFile, opcode, buffer, bufferIndex);
79 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
80 return new Instruction31c(dexFile, opcode, buffer, bufferIndex);
H A DInstruction31i.java81 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
H A DInstruction32x.java82 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
H A DInstruction51l.java81 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { argument
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
H A DInstructionIterator.java40 public static void IterateInstructions(DexFile dexFile, byte[] insns, ProcessInstructionDelegate delegate) { argument
79 instruction = opcode.format.Factory.makeInstruction(dexFile, opcode, insns, insnsPosition);
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
H A DAnnotationEncodedValue.java41 * @param dexFile The <code>DexFile</code> that is being read in
44 protected AnnotationEncodedValue(DexFile dexFile, Input in) { argument
45 super(dexFile, in);
H A DArrayEncodedValue.java39 * @param dexFile The <code>DexFile</code> that is being read in
42 protected ArrayEncodedValue(DexFile dexFile, Input in) { argument
43 super(dexFile, in);

Completed in 135 milliseconds

1234