Searched refs:read (Results 1 - 25 of 76) sorted by relevance

1234

/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DEncodedArrayItem.java25 public void read(DexRandomAccessFile file) throws IOException { method in class:EncodedArrayItem
27 (value = new EncodedArray()).read(file);
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 DDebugInfoItem.java33 public void read(DexRandomAccessFile file) throws IOException { method in class:DebugInfoItem
36 file.read(data);
H A DEncodedCatchHandlerList.java26 public void read(DexRandomAccessFile file) throws IOException { method in class:EncodedCatchHandlerList
30 (list[i] = new EncodedCatchHandler()).read(file);
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 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
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 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 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 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 DTypeItem.java25 public void read(DexRandomAccessFile file) throws IOException { method in class:TypeItem
H A DEncodedValue.java35 public void read(DexRandomAccessFile file) throws IOException { method in class:EncodedValue
50 (encodedArray = new EncodedArray()).read(file);
51 size = 0; // So we don't read into value.
54 (encodedAnnotation = new EncodedAnnotation()).read(file);
55 size = 0; // So we don't read into value.
H A DClassDataItem.java39 public void read(DexRandomAccessFile file) throws IOException { method in class:ClassDataItem
48 (staticFields[i] = new EncodedField()).read(file);
52 (instanceFields[i] = new EncodedField()).read(file);
56 (directMethods[i] = new EncodedMethod()).read(file);
60 (virtualMethods[i] = new EncodedMethod()).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 DMethodAnnotation.java26 public void read(DexRandomAccessFile file) throws IOException { method in class:MethodAnnotation
H A DParameterAnnotation.java26 public void read(DexRandomAccessFile file) throws IOException { method in class:ParameterAnnotation
/art/tools/ahat/src/main/com/android/ahat/
H A DStaticHandler.java51 int read;
53 while ((read = is.read(buf)) >= 0) {
54 os.write(buf, 0, read);
/art/compiler/optimizing/
H A Dside_effects_test.cc5 * you may not read this file except in compliance with the License.
45 void testWriteAndReadSanity(SideEffects write, SideEffects read) { argument
47 EXPECT_FALSE(read.DoesNothing());
51 EXPECT_FALSE(read.DoesAnyWrite());
52 EXPECT_TRUE(read.DoesAnyRead());
58 EXPECT_FALSE(all.MayDependOn(read));
59 EXPECT_TRUE(read.MayDependOn(all));
65 EXPECT_FALSE(none.MayDependOn(read));
66 EXPECT_FALSE(read.MayDependOn(none));
69 void testWriteAndReadDependence(SideEffects write, SideEffects read) { argument
77 testNoWriteAndReadDependence(SideEffects write, SideEffects read) argument
[all...]
/art/tools/
H A Dstream-trace-converter.py30 byte1 = f.read(1)
33 byte2 = f.read(1)
44 byte1 = f.read(1)
47 byte2 = f.read(1)
50 byte3 = f.read(1)
53 byte4 = f.read(1)
64 buf = input.read(length)
95 # read offset
116 str = input.read(stringLength)
123 str = input.read(stringLengt
[all...]

Completed in 172 milliseconds

1234