/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
D | MapList.java | 37 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 …]
|
D | ClassDataItem.java | 39 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()
|
D | AnnotationsDirectoryItem.java | 31 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()
|
D | EncodedValue.java | 35 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()
|
D | EncodedArrayItem.java | 25 public void read(DexRandomAccessFile file) throws IOException { in read() method in EncodedArrayItem 27 (value = new EncodedArray()).read(file); in read()
|
D | AnnotationElement.java | 26 public void read(DexRandomAccessFile file) throws IOException { in read() method in AnnotationElement 28 (value = new EncodedValue()).read(file); in read()
|
D | DebugInfoItem.java | 33 public void read(DexRandomAccessFile file) throws IOException { in read() method in DebugInfoItem 36 file.read(data); in read()
|
D | AnnotationItem.java | 26 public void read(DexRandomAccessFile file) throws IOException { in read() method in AnnotationItem 29 (annotation = new EncodedAnnotation()).read(file); in read()
|
D | EncodedArray.java | 26 public void read(DexRandomAccessFile file) throws IOException { in read() method in EncodedArray 31 (values[i] = new EncodedValue()).read(file); in read()
|
D | EncodedCatchHandlerList.java | 26 public void read(DexRandomAccessFile file) throws IOException { in read() method in EncodedCatchHandlerList 30 (list[i] = new EncodedCatchHandler()).read(file); in read()
|
D | AnnotationSetItem.java | 26 public void read(DexRandomAccessFile file) throws IOException { in read() method in AnnotationSetItem 32 (entries[i] = new AnnotationOffItem()).read(file); in read()
|
D | AnnotationSetRefList.java | 26 public void read(DexRandomAccessFile file) throws IOException { in read() method in AnnotationSetRefList 32 (list[i] = new AnnotationSetRefItem()).read(file); in read()
|
D | EncodedAnnotation.java | 27 public void read(DexRandomAccessFile file) throws IOException { in read() method in EncodedAnnotation 33 (elements[i] = new AnnotationElement()).read(file); in read()
|
D | EncodedCatchHandler.java | 27 public void read(DexRandomAccessFile file) throws IOException { in read() method in EncodedCatchHandler 33 (handlers[i] = new EncodedTypeAddrPair()).read(file); in read()
|
D | CodeItem.java | 48 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()
|
D | TypeList.java | 26 public void read(DexRandomAccessFile file) throws IOException { in read() method in TypeList 32 (list[i] = new TypeItem()).read(file); in read()
|
/art/tools/ |
D | stream-trace-converter.py | 30 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) 129 str = input.read(summaryLength) [all …]
|
/art/compiler/optimizing/ |
D | side_effects_test.cc | 45 void testWriteAndReadSanity(SideEffects write, SideEffects read) { in testWriteAndReadSanity() argument 47 EXPECT_FALSE(read.DoesNothing()); in testWriteAndReadSanity() 51 EXPECT_FALSE(read.DoesAnyWrite()); in testWriteAndReadSanity() 52 EXPECT_TRUE(read.DoesAnyRead()); in testWriteAndReadSanity() 58 EXPECT_FALSE(all.MayDependOn(read)); in testWriteAndReadSanity() 59 EXPECT_TRUE(read.MayDependOn(all)); in testWriteAndReadSanity() 65 EXPECT_FALSE(none.MayDependOn(read)); in testWriteAndReadSanity() 66 EXPECT_FALSE(read.MayDependOn(none)); in testWriteAndReadSanity() 69 void testWriteAndReadDependence(SideEffects write, SideEffects read) { in testWriteAndReadDependence() argument 70 testWriteAndReadSanity(write, read); in testWriteAndReadDependence() [all …]
|
/art/tools/ahat/src/main/com/android/ahat/ |
D | StaticHandler.java | 51 int read; in handle() local 53 while ((read = is.read(buf)) >= 0) { in handle() 54 os.write(buf, 0, read); in handle()
|
/art/tools/ahat/etc/ |
D | hprofdump.py | 27 return struct.unpack('!B', hprof.read(1))[0] 30 return struct.unpack('!H', hprof.read(2))[0] 33 return struct.unpack('!I', hprof.read(4))[0] 36 return struct.unpack('!Q', hprof.read(8))[0] 102 c = hprof.read(1) 105 c = hprof.read(1) 144 while hprof.read(1): 152 string = hprof.read(length - idsize) 176 hprof.read(idsize * frames) 292 data = hprof.read(datalen) ; length -= datalen [all …]
|
/art/test/991-field-trace-2/ |
D | expected.txt | 5 normal read: xyz = 0 19 normal read: xyz = 0 28 normal read: xyz = 20 36 normal read: xyz = 0 44 normal read: xyz = 10 50 reflective read: xyz = 0 54 reflective read: xyz = 0 58 reflective read: xyz = 0 62 reflective read: xyz = 0 66 reflective read: xyz = 0 [all …]
|
/art/test/573-checker-checkcast-regression/ |
D | info.txt | 1 Regression test for the x86-64 Baker's read barrier fast path compiler 4 with Baker's read barriers enabled.
|
/art/test/1949-short-dex-file/ |
D | info.txt | 20 This test tries to get the JIT to read out-of-bounds on the initial dex file by getting it to 21 read the 5th method id of the new file (Lxyz/Transform;->foo()V) from the old dex file (which 26 JIT will read an incorrect (but valid) method-id from the old-dex file. This is why the error 29 The final method that causes the OOB read needs to be a native method because that is the only
|
/art/runtime/interpreter/mterp/common/ |
D | gen_setup.py | 63 generated_helpers[name] = out.read() 87 text = re.sub(r"(\n\n)(\n)+", r"\1", out.read())
|
/art/tools/luci/config/ |
D | luci-logdog.cfg | 6 # Auth groups who can read log streams. 7 # Currently, all projects with "all" (aka public) read/write permissions use
|