Home
last modified time | relevance | path

Searched refs:RawDexFile (Results 1 – 13 of 13) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
DRawDexFile.java47 public class RawDexFile extends DexBackedDexFile { class
50 public RawDexFile(@Nonnull Opcodes opcodes, @Nonnull BaseDexBuffer buf) { in RawDexFile() method in RawDexFile
55 public RawDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf) { in RawDexFile() method in RawDexFile
87 return new MapItem(RawDexFile.this, mapItemOffset); in getMapItems()
DClassDataItem.java128 … private int annotateEncodedField(@Nonnull AnnotatedBytes out, @Nonnull RawDexFile dexFile, in makeAnnotator()
144 … private int annotateEncodedMethod(@Nonnull AnnotatedBytes out, @Nonnull RawDexFile dexFile, in makeAnnotator()
DHeaderItem.java86 @Nonnull private RawDexFile dexFile;
88 public HeaderItem(@Nonnull RawDexFile dexFile) { in HeaderItem()
DTypeIdItem.java78 public static String[] getTypes(@Nonnull RawDexFile dexFile) {
DSectionAnnotator.java45 @Nonnull public final RawDexFile dexFile;
DMethodIdItem.java95 public static String[] getMethods(@Nonnull RawDexFile dexFile) {
DFieldIdItem.java95 public static String[] getFields(@Nonnull RawDexFile dexFile) {
DStringIdItem.java105 public static String[] getStrings(@Nonnull RawDexFile dexFile) {
DProtoIdItem.java98 public static String[] getProtos(@Nonnull RawDexFile dexFile) {
DClassDefItem.java127 public static String[] getClasses(@Nonnull RawDexFile dexFile) { in getClasses()
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/pool/
DRollbackTest.java39 import org.jf.dexlib2.dexbacked.raw.RawDexFile;
78 RawDexFile dexFile1; in testRollback()
87 dexFile1 = new RawDexFile(Opcodes.getDefault(), dataStore.getData()); in testRollback()
90 RawDexFile dexFile2; in testRollback()
96 dexFile2 = new RawDexFile(Opcodes.getDefault(), dataStore.getData()); in testRollback()
/external/smali/baksmali/src/main/java/org/jf/baksmali/
DDumpCommand.java38 import org.jf.dexlib2.dexbacked.raw.RawDexFile;
102 RawDexFile rawDexFile = new RawDexFile(dexFile.getOpcodes(), dexFile); in dump()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/util/
DDexAnnotator.java49 @Nonnull public final RawDexFile dexFile;
85 public DexAnnotator(@Nonnull RawDexFile dexFile, int width) { in DexAnnotator()