OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RawDexFile
(Results
1 - 19
of
19
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
RawDexFile.java
47
public class
RawDexFile
extends DexBackedDexFile {
50
public
RawDexFile
(@Nonnull Opcodes opcodes, @Nonnull BaseDexBuffer buf) {
55
public
RawDexFile
(@Nonnull Opcodes opcodes, @Nonnull byte[] buf) {
87
return new MapItem(
RawDexFile
.this, mapItemOffset);
ClassDataItem.java
128
private int annotateEncodedField(@Nonnull AnnotatedBytes out, @Nonnull
RawDexFile
dexFile,
144
private int annotateEncodedMethod(@Nonnull AnnotatedBytes out, @Nonnull
RawDexFile
dexFile,
SectionAnnotator.java
45
@Nonnull public final
RawDexFile
dexFile;
TypeIdItem.java
78
public static String[] getTypes(@Nonnull
RawDexFile
dexFile) {
FieldIdItem.java
95
public static String[] getFields(@Nonnull
RawDexFile
dexFile) {
MethodIdItem.java
95
public static String[] getMethods(@Nonnull
RawDexFile
dexFile) {
ProtoIdItem.java
98
public static String[] getProtos(@Nonnull
RawDexFile
dexFile) {
StringIdItem.java
105
public static String[] getStrings(@Nonnull
RawDexFile
dexFile) {
HeaderItem.java
93
@Nonnull private
RawDexFile
dexFile;
95
public HeaderItem(@Nonnull
RawDexFile
dexFile) {
ClassDefItem.java
127
public static String[] getClasses(@Nonnull
RawDexFile
dexFile) {
/external/smali/baksmali/src/main/java/org/jf/baksmali/
dump.java
33
import org.jf.dexlib2.dexbacked.raw.
RawDexFile
;
55
RawDexFile
rawDexFile
= new
RawDexFile
(Opcodes.forApi(apiLevel), dexFile);
56
DexAnnotator annotator = new DexAnnotator(
rawDexFile
, consoleWidth);
/art/tools/dexfuzz/src/dexfuzz/rawdex/
OffsetTracker.java
300
private void addTypeListsToMapFile(
RawDexFile
rawDexFile
, Offsettable typeListOffsettable) {
311
for (MapItem mapItem :
rawDexFile
.mapList.mapItems) {
318
rawDexFile
.mapList.mapItems.add(idx, typeListMapItem);
321
private void addFieldIdsToHeaderAndMapFile(
RawDexFile
rawDexFile
,
324
rawDexFile
.header.fieldIdsOff.unsetNullAndPointTo(fieldOffsettable);
325
rawDexFile
.header.fieldIdsSize = 1;
337
for (MapItem mapItem :
rawDexFile
.mapList.mapItems) {
344
rawDexFile
.mapList.mapItems.add(idx, fieldMapItem)
[
all
...]
MapList.java
27
private
RawDexFile
rawDexFile
;
32
public MapList(
RawDexFile
rawDexFile
) {
33
this.
rawDexFile
=
rawDexFile
;
39
file.seek(
rawDexFile
.header.mapOff.getOriginalOffset());
71
rawDexFile
.stringIds.add(newStringId);
78
rawDexFile
.typeIds.add(newTypeId);
85
rawDexFile
.protoIds.add(newProtoId)
[
all
...]
RawDexFile.java
25
public class
RawDexFile
implements RawDexObject {
/art/tools/dexfuzz/src/dexfuzz/fuzzers/
Fuzzer.java
42
import dexfuzz.rawdex.
RawDexFile
;
392
RawDexFile
rawDexFile
= new
RawDexFile
();
394
rawDexFile
.read(input);
399
program = new Program(
rawDexFile
, mutations, listener);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/util/
DexAnnotator.java
49
@Nonnull public final
RawDexFile
dexFile;
85
public DexAnnotator(@Nonnull
RawDexFile
dexFile, int width) {
/art/tools/dexfuzz/src/dexfuzz/program/
Program.java
50
import dexfuzz.rawdex.
RawDexFile
;
86
private
RawDexFile
rawDexFile
;
146
public Program(
RawDexFile
rawDexFile
, List<Mutation> previousMutations,
150
idCreator = new IdCreator(
rawDexFile
);
181
this.
rawDexFile
=
rawDexFile
;
213
for (CodeItem codeItem :
rawDexFile
.codeItems) {
242
for (ClassDefItem classDefItem :
rawDexFile
.classDefs)
[
all
...]
IdCreator.java
25
import dexfuzz.rawdex.
RawDexFile
;
41
private
RawDexFile
rawDexFile
;
43
public IdCreator(
RawDexFile
rawDexFile
) {
44
this.
rawDexFile
=
rawDexFile
;
66
for (ProtoIdItem protoId :
rawDexFile
.protoIds) {
97
for (MethodIdItem methodId :
rawDexFile
.methodIds) {
122
for (TypeIdItem typeId :
rawDexFile
.typeIds)
[
all
...]
/prebuilts/tools/common/m2/repository/org/smali/dexlib2/2.1.3/
dexlib2-2.1.3.jar
Completed in 459 milliseconds