/art/libelffile/elf/ |
D | elf_debug_reader.h | 63 header_ = Read<Elf_Ehdr>(/*offset=*/ 0); in ElfDebugReader() 72 sections_ = Read<Elf_Shdr>(header_->e_shoff, header_->e_shnum); in ElfDebugReader() 74 const char* name = Read<char>(sections_[header_->e_shstrndx].sh_offset + section.sh_name); in ElfDebugReader() 81 auto compressed = Read<uint8_t>(gnu_debugdata->sh_offset, gnu_debugdata->sh_size); in ElfDebugReader() 105 for (const Elf_Sym& symbol : Read<Elf_Sym>(symtab->sh_offset, count)) { in VisitFunctionSymbols() 107 visit_sym(symbol, Read<char>(strtab->sh_offset + symbol.st_name)); in VisitFunctionSymbols() 123 for (const Elf_Sym& symbol : Read<Elf_Sym>(dynsym->sh_offset, count)) { in VisitDynamicSymbols() 124 visit_sym(symbol, Read<char>(dynstr->sh_offset + symbol.st_name)); in VisitDynamicSymbols() 134 const CFI* entry = Read<CFI>(debug_frame->sh_offset + offset); in VisitDebugFrame() 137 visit_cie(Read<CIE>(debug_frame->sh_offset + offset)); in VisitDebugFrame() [all …]
|
/art/libartbase/base/unix_file/ |
D | random_access_file_test.h | 59 while ((n = f->Read(buf, sizeof(buf), offset)) > 0) { in ReadString() 72 ASSERT_EQ(0, file->Read(buf, 0, 0)); in TestRead() 73 ASSERT_EQ(0, file->Read(buf, 123, 0)); in TestRead() 87 ASSERT_EQ(-EINVAL, file->Read(buf.get(), 0, -123)); in TestReadContent() 90 ASSERT_EQ(content.size(), static_cast<uint64_t>(file->Read(buf.get(), buf_size, 0))); in TestReadContent() 96 ASSERT_EQ(short_request, static_cast<uint64_t>(file->Read(buf.get(), short_request, 0))); in TestReadContent() 103 ASSERT_EQ(short_request, static_cast<uint64_t>(file->Read(buf.get(), short_request, in TestReadContent() 109 ASSERT_EQ(0, file->Read(buf.get(), buf_size, file->GetLength())); in TestReadContent() 110 ASSERT_EQ(0, file->Read(buf.get(), buf_size, file->GetLength() + 1)); in TestReadContent() 160 ASSERT_EQ(content.size(), static_cast<uint64_t>(file->Read(buf, sizeof(buf), 0))); in TestWrite()
|
D | random_access_file_utils.cc | 31 while ((n = src.Read(&buf[0], buf.size(), offset)) > 0) { in CopyFile()
|
D | random_access_file.h | 45 virtual int64_t Read(char* buf, int64_t byte_count, int64_t offset) const = 0;
|
/art/runtime/ |
D | class_table.cc | 42 return it->Read() == klass; in Contains() 54 return it->Read(); in LookupByDescriptor() 73 mirror::Class* const existing = existing_it->Read(); in UpdateClass() 89 if (root.Read()->GetClassLoader() == defining_loader) { in CountDefiningLoaderClasses() 130 return it->Read(); in Lookup() 142 return it->Read(); in TryInsert() 194 return ComputeModifiedUtf8Hash(slot.Read()->GetDescriptor(&temp)); in operator ()() 201 DCHECK(!a.Read()->DescriptorEquals(b.Read()->GetDescriptor(&temp))); in operator ()() 205 return a.Read()->DescriptorEquals(b.Read()->GetDescriptor(&temp)); in operator ()() 211 DCHECK(!a.Read()->DescriptorEquals(b.first)); in operator ()() [all …]
|
D | class_table-inl.h | 70 if (!visitor(table_slot.Read<kReadBarrierOption>())) { in Visit() 83 if (!visitor(table_slot.Read<kReadBarrierOption>())) { in Visit() 92 inline mirror::Class* ClassTable::TableSlot::Read() const { in Read() function 96 GcRoot<mirror::Class>(before_ptr).Read<kReadBarrierOption>()); in Read() 111 ObjPtr<mirror::Class> after_ptr(root.Read<kWithoutReadBarrier>()); in VisitRoot()
|
D | reference_table.cc | 62 ObjPtr<mirror::Object> entry = entries_[i].Read(); in Remove() 136 ObjPtr<mirror::Object> obj1 = root1.Read<kWithoutReadBarrier>(); in Dump() 137 ObjPtr<mirror::Object> obj2 = root2.Read<kWithoutReadBarrier>(); in Dump() 173 ObjPtr<mirror::Object> ref = entries[idx].Read(); in Dump() 224 if (stack_for_object.Read() == to_print.Ptr()) { in Dump() 264 if (!root.IsNull() && !runtime->IsClearedJniWeakGlobal(root.Read())) { in Dump() 299 ObjPtr<mirror::Object> current = root.Read<kWithoutReadBarrier>(); in Dump() 306 ObjPtr<mirror::Object> prevObj = prev.root.Read<kWithoutReadBarrier>(); in Dump() 351 ObjPtr<mirror::Object> elemObj = elem.root.Read<kWithoutReadBarrier>(); in Dump()
|
D | monitor-inl.h | 29 return obj_.Read<kReadBarrierOption>(); in GetObject()
|
D | intern_table.cc | 69 ObjPtr<mirror::String> old_ref = root.Read<kWithoutReadBarrier>(); in VisitRoots() 71 ObjPtr<mirror::String> new_ref = root.Read<kWithoutReadBarrier>(); in VisitRoots() 306 static_cast<uint32_t>(root.Read<kWithoutReadBarrier>()->GetHashCode())); in operator ()() 314 return a.Read<kWithoutReadBarrier>()->Equals(b.Read<kWithoutReadBarrier>()); in operator ()() 322 ObjPtr<mirror::String> a_string = a.Read<kWithoutReadBarrier>(); in operator ()() 381 return it->Read(); in Find() 392 return it->Read(); in Find() 428 mirror::Object* object = it->Read<kWithoutReadBarrier>(); in SweepWeaks()
|
D | intern_table-inl.h | 65 CHECK(Find(string.Read<kWithoutReadBarrier>()) == nullptr) in AddInternStrings() 66 << "Already found " << string.Read<kWithoutReadBarrier>()->ToModifiedUtf8() in AddInternStrings()
|
D | gc_root-inl.h | 31 inline MirrorType* GcRoot<MirrorType>::Read(GcRootSource* gc_root_source) const { in Read() function
|
D | runtime-inl.h | 40 mirror::Object* obj = sentinel_.Read(); in GetClearedJniWeakGlobal()
|
D | indirect_reference_table-inl.h | 95 ObjPtr<mirror::Object> obj = table_[idx].GetReference()->Read<kReadBarrierOption>(); in Get()
|
D | indirect_reference_table.cc | 404 << table_[collapse_top_index - 1].GetReference()->Read<kWithoutReadBarrier>(); in Remove() 467 ObjPtr<mirror::Object> obj = table_[i].GetReference()->Read<kWithoutReadBarrier>(); in Dump() 469 obj = table_[i].GetReference()->Read(); in Dump()
|
/art/runtime/mirror/ |
D | dex_cache-inl.h | 62 return object.Read(); in GetObjectForIndex() 95 mirror::String* string = preresolved_strings[string_idx.index_].Read(); in GetResolvedString() 215 return ref.load(std::memory_order_seq_cst).Read(); in GetResolvedCallSite() 235 return target.Read(); in SetResolvedCallSite() 352 T* const before = source.object.template Read<kReadBarrierOption>(); in VisitDexCachePairs() 354 if (source.object.template Read<kReadBarrierOption>() != before) { in VisitDexCachePairs() 397 String* ptr = source.object.Read<kReadBarrierOption>(); in FixupStrings() 409 Class* ptr = source.object.Read<kReadBarrierOption>(); in FixupResolvedTypes() 422 MethodType* ptr = source.object.Read<kReadBarrierOption>(); in FixupResolvedMethodTypes() 434 mirror::CallSite* source = src[i].Read<kReadBarrierOption>(); in FixupResolvedCallSites()
|
D | dex_cache_test.cc | 173 ASSERT_EQ(method1_type.Get(), pair.object.Read()); in TEST_F() 175 ASSERT_EQ(method2_type.Get(), pair.object.Read()); in TEST_F()
|
/art/runtime/gc/ |
D | system_weak_test.cc | 77 mirror::Object* old_object = weak_.Read<kWithoutReadBarrier>(); in Sweep() 157 EXPECT_EQ(cswh.Get().Read(), s.Get()); in TEST_F() 202 ASSERT_EQ(cswh.Get().Read(), s.Get()); in TEST_F()
|
D | allocation_record.cc | 39 return klass_.IsNull() ? "null" : klass_.Read()->GetDescriptor(storage); in GetClassDescriptor() 80 mirror::Object* old_object = klass.Read<kWithoutReadBarrier>(); in SweepClassObject() 100 mirror::Object* old_object = it->first.Read<kWithoutReadBarrier>(); in SweepAllocationRecords()
|
/art/runtime/entrypoints/quick/ |
D | quick_field_entrypoints.cc | 77 field_idx, referrer, Static ## PrimitiveOrObject ## Read, \ 82 field = FindFieldFromCode<Static ## PrimitiveOrObject ## Read, true>( \ 98 field_idx, referrer, Instance ## PrimitiveOrObject ## Read, \ 103 field = FindInstanceField<Instance ## PrimitiveOrObject ## Read, true>( \ 404 return root->Read(); in artReadBarrierForRootSlow()
|
/art/openjdkjvmti/ |
D | jvmti_weak_table.h | 201 return reinterpret_cast<uintptr_t>(r.Read<art::kWithoutReadBarrier>()); in operator() 209 return r1.Read<art::kWithoutReadBarrier>() == r2.Read<art::kWithoutReadBarrier>(); in operator()
|
D | jvmti_weak_table-inl.h | 73 return original_root.Read<art::kWithReadBarrier>(); in UpdateTableWithReadBarrier() 223 art::mirror::Object* original_obj = it->first.template Read<art::kWithoutReadBarrier>(); in UpdateTableWith() 365 art::ObjPtr<art::mirror::Object> obj = pair.first.template Read<art::kWithReadBarrier>(); 396 art::ObjPtr<art::mirror::Object> obj = pair.first.template Read<art::kWithReadBarrier>();
|
/art/libdexfile/dex/ |
D | class_accessor-inl.h | 66 inline void ClassAccessor::Method::Read() { in Read() function 81 inline void ClassAccessor::Field::Read() { in Read() function 96 data->Read(); in VisitMembers()
|
D | class_accessor.h | 121 void Read(); 165 void Read(); 255 data_.Read(); in ReadData()
|
/art/runtime/jit/ |
D | profiling_info.cc | 85 mirror::Class* existing = cache->classes_[i].Read<kWithoutReadBarrier>(); in AddInvokeInfo()
|
/art/ |
D | .vpython | 22 # Read more about `vpython` and how to modify this file here:
|