Searched defs:read (Results 1 - 25 of 39) sorted by relevance

12

/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DAnnotationOffItem.java25 public void read(DexRandomAccessFile file) throws IOException { method in class:AnnotationOffItem
H A DAnnotationSetRefItem.java25 public void read(DexRandomAccessFile file) throws IOException { method in class:AnnotationSetRefItem
H A DEncodedArrayItem.java25 public void read(DexRandomAccessFile file) throws IOException { method in class:EncodedArrayItem
27 (value = new EncodedArray()).read(file);
H A DStringIdItem.java25 public void read(DexRandomAccessFile file) throws IOException { method in class:StringIdItem
H A DTypeIdItem.java25 public void read(DexRandomAccessFile file) throws IOException { method in class:TypeIdItem
H A DTypeItem.java25 public void read(DexRandomAccessFile file) throws IOException { method in class:TypeItem
H A DAnnotationElement.java26 public void read(DexRandomAccessFile file) throws IOException { method in class:AnnotationElement
28 (value = new EncodedValue()).read(file);
H A DAnnotationItem.java26 public void read(DexRandomAccessFile file) throws IOException { method in class:AnnotationItem
29 (annotation = new EncodedAnnotation()).read(file);
H A DAnnotationSetItem.java26 public void read(DexRandomAccessFile file) throws IOException { method in class:AnnotationSetItem
32 (entries[i] = new AnnotationOffItem()).read(file);
H A DAnnotationSetRefList.java26 public void read(DexRandomAccessFile file) throws IOException { method in class:AnnotationSetRefList
32 (list[i] = new AnnotationSetRefItem()).read(file);
H A DAnnotationsDirectoryItem.java31 public void read(DexRandomAccessFile file) throws IOException { method in class:AnnotationsDirectoryItem
41 (fieldAnnotations[i] = new FieldAnnotation()).read(file);
47 (methodAnnotations[i] = new MethodAnnotation()).read(file);
53 (parameterAnnotations[i] = new ParameterAnnotation()).read(file);
H A DDebugInfoItem.java31 public void read(DexRandomAccessFile file) throws IOException { method in class:DebugInfoItem
34 file.read(data);
H A DEncodedAnnotation.java27 public void read(DexRandomAccessFile file) throws IOException { method in class:EncodedAnnotation
33 (elements[i] = new AnnotationElement()).read(file);
H A DEncodedArray.java26 public void read(DexRandomAccessFile file) throws IOException { method in class:EncodedArray
31 (values[i] = new EncodedValue()).read(file);
H A DEncodedCatchHandler.java27 public void read(DexRandomAccessFile file) throws IOException { method in class:EncodedCatchHandler
33 (handlers[i] = new EncodedTypeAddrPair()).read(file);
H A DEncodedCatchHandlerList.java26 public void read(DexRandomAccessFile file) throws IOException { method in class:EncodedCatchHandlerList
30 (list[i] = new EncodedCatchHandler()).read(file);
H A DEncodedTypeAddrPair.java26 public void read(DexRandomAccessFile file) throws IOException { method in class:EncodedTypeAddrPair
H A DFieldAnnotation.java26 public void read(DexRandomAccessFile file) throws IOException { method in class:FieldAnnotation
H A DFieldIdItem.java27 public void read(DexRandomAccessFile file) throws IOException { method in class:FieldIdItem
H A DMapList.java37 public void read(DexRandomAccessFile file) throws IOException { method in class:MapList
51 mapItem.read(file);
66 // Already read it; skip.
72 newStringId.read(file);
79 newTypeId.read(file);
86 newProtoId.read(file);
93 newFieldId.read(file);
100 newMethodId.read(file);
107 newClassDef.read(file);
111 // Already read i
[all...]
H A DMethodAnnotation.java26 public void read(DexRandomAccessFile file) throws IOException { method in class:MethodAnnotation
H A DMethodIdItem.java27 public void read(DexRandomAccessFile file) throws IOException { method in class:MethodIdItem
H A DParameterAnnotation.java26 public void read(DexRandomAccessFile file) throws IOException { method in class:ParameterAnnotation
H A DProtoIdItem.java27 public void read(DexRandomAccessFile file) throws IOException { method in class:ProtoIdItem
H A DRawDexObject.java22 * Base class for any data structure that we may read or write from a DEX file.
30 public void read(DexRandomAccessFile file) throws IOException; method in interface:RawDexObject

Completed in 151 milliseconds

12