Home
last modified time | relevance | path

Searched refs:read (Results 1 – 25 of 65) sorted by relevance

123

/art/tools/dexfuzz/src/dexfuzz/rawdex/
DMapList.java37 public void read(DexRandomAccessFile file) throws IOException { in read() method in MapList
51 mapItem.read(file); in read()
72 newStringId.read(file); in read()
79 newTypeId.read(file); in read()
86 newProtoId.read(file); in read()
93 newFieldId.read(file); in read()
100 newMethodId.read(file); in read()
107 newClassDef.read(file); in read()
118 newTypeList.read(file); in read()
127 newAnnotationSetRefList.read(file); in read()
[all …]
DClassDataItem.java39 public void read(DexRandomAccessFile file) throws IOException { in read() method in ClassDataItem
48 (staticFields[i] = new EncodedField()).read(file); in read()
52 (instanceFields[i] = new EncodedField()).read(file); in read()
56 (directMethods[i] = new EncodedMethod()).read(file); in read()
60 (virtualMethods[i] = new EncodedMethod()).read(file); in read()
DAnnotationsDirectoryItem.java31 public void read(DexRandomAccessFile file) throws IOException { in read() method in AnnotationsDirectoryItem
41 (fieldAnnotations[i] = new FieldAnnotation()).read(file); in read()
47 (methodAnnotations[i] = new MethodAnnotation()).read(file); in read()
53 (parameterAnnotations[i] = new ParameterAnnotation()).read(file); in read()
DEncodedValue.java35 public void read(DexRandomAccessFile file) throws IOException { in read() method in EncodedValue
50 (encodedArray = new EncodedArray()).read(file); in read()
54 (encodedAnnotation = new EncodedAnnotation()).read(file); in read()
DEncodedArrayItem.java25 public void read(DexRandomAccessFile file) throws IOException { in read() method in EncodedArrayItem
27 (value = new EncodedArray()).read(file); in read()
DDebugInfoItem.java31 public void read(DexRandomAccessFile file) throws IOException { in read() method in DebugInfoItem
34 file.read(data); in read()
DAnnotationElement.java26 public void read(DexRandomAccessFile file) throws IOException { in read() method in AnnotationElement
28 (value = new EncodedValue()).read(file); in read()
DAnnotationItem.java26 public void read(DexRandomAccessFile file) throws IOException { in read() method in AnnotationItem
29 (annotation = new EncodedAnnotation()).read(file); in read()
DEncodedArray.java26 public void read(DexRandomAccessFile file) throws IOException { in read() method in EncodedArray
31 (values[i] = new EncodedValue()).read(file); in read()
DEncodedCatchHandlerList.java26 public void read(DexRandomAccessFile file) throws IOException { in read() method in EncodedCatchHandlerList
30 (list[i] = new EncodedCatchHandler()).read(file); in read()
DAnnotationSetItem.java26 public void read(DexRandomAccessFile file) throws IOException { in read() method in AnnotationSetItem
32 (entries[i] = new AnnotationOffItem()).read(file); in read()
DAnnotationSetRefList.java26 public void read(DexRandomAccessFile file) throws IOException { in read() method in AnnotationSetRefList
32 (list[i] = new AnnotationSetRefItem()).read(file); in read()
DEncodedAnnotation.java27 public void read(DexRandomAccessFile file) throws IOException { in read() method in EncodedAnnotation
33 (elements[i] = new AnnotationElement()).read(file); in read()
DEncodedCatchHandler.java27 public void read(DexRandomAccessFile file) throws IOException { in read() method in EncodedCatchHandler
33 (handlers[i] = new EncodedTypeAddrPair()).read(file); in read()
DCodeItem.java48 public void read(DexRandomAccessFile file) throws IOException { in read() method in CodeItem
65 (tries[i] = new TryItem()).read(file); in read()
67 (handlers = new EncodedCatchHandlerList()).read(file); in read()
81 newInsn.read(file); in populateInstructionList()
DTypeList.java26 public void read(DexRandomAccessFile file) throws IOException { in read() method in TypeList
32 (list[i] = new TypeItem()).read(file); in read()
DRawDexObject.java30 public void read(DexRandomAccessFile file) throws IOException; in read() method
DAnnotationOffItem.java25 public void read(DexRandomAccessFile file) throws IOException { in read() method in AnnotationOffItem
DTypeItem.java25 public void read(DexRandomAccessFile file) throws IOException { in read() method in TypeItem
DAnnotationSetRefItem.java25 public void read(DexRandomAccessFile file) throws IOException { in read() method in AnnotationSetRefItem
DEncodedTypeAddrPair.java26 public void read(DexRandomAccessFile file) throws IOException { in read() method in EncodedTypeAddrPair
/art/compiler/optimizing/
Dside_effects_test.cc31 void testWriteAndReadSanity(SideEffects write, SideEffects read) { in testWriteAndReadSanity() argument
33 EXPECT_FALSE(read.DoesNothing()); in testWriteAndReadSanity()
37 EXPECT_FALSE(read.DoesAnyWrite()); in testWriteAndReadSanity()
38 EXPECT_TRUE(read.DoesAnyRead()); in testWriteAndReadSanity()
44 EXPECT_FALSE(all.MayDependOn(read)); in testWriteAndReadSanity()
45 EXPECT_TRUE(read.MayDependOn(all)); in testWriteAndReadSanity()
51 EXPECT_FALSE(none.MayDependOn(read)); in testWriteAndReadSanity()
52 EXPECT_FALSE(read.MayDependOn(none)); in testWriteAndReadSanity()
55 void testWriteAndReadDependence(SideEffects write, SideEffects read) { in testWriteAndReadDependence() argument
56 testWriteAndReadSanity(write, read); in testWriteAndReadDependence()
[all …]
/art/tools/
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)
116 str = input.read(stringLength)
123 str = input.read(stringLength)
128 code = ord(input.read(1))
/art/test/573-checker-checkcast-regression/
Dinfo.txt1 Regression test for the x86-64 Baker's read barrier fast path compiler
4 with Baker's read barriers enabled.
/art/test/572-checker-array-get-regression/
Dinfo.txt1 Regression test for the ARM64 Baker's read barrier fast path compiler

123