Searched refs:DumpObjectInfo (Results 1 – 5 of 5) sorted by relevance
/art/runtime/gc/ |
D | heap_verification_test.cc | 109 LOG(INFO) << v->DumpObjectInfo(reinterpret_cast<const void*>(1), "obj"); in TEST_F() 110 LOG(INFO) << v->DumpObjectInfo(reinterpret_cast<const void*>(4), "obj"); in TEST_F() 111 LOG(INFO) << v->DumpObjectInfo(nullptr, "obj"); in TEST_F() 131 LOG(INFO) << v->DumpObjectInfo(string.Get(), "test"); in TEST_F() 132 LOG(INFO) << v->DumpObjectInfo(string->GetClass(), "obj"); in TEST_F() 134 LOG(INFO) << v->DumpObjectInfo(reinterpret_cast<const void*>(uint_klass - kObjectAlignment), in TEST_F() 136 LOG(INFO) << v->DumpObjectInfo(reinterpret_cast<const void*>(&uint_klass), "obj"); in TEST_F() 137 LOG(INFO) << v->DumpObjectInfo(arr.Get(), "arr"); in TEST_F()
|
D | verification.cc | 53 std::string Verification::DumpObjectInfo(const void* addr, const char* tag) const { in DumpObjectInfo() function in art::gc::Verification 98 oss << DumpObjectInfo(ref, "ref") << "\n"; in LogHeapCorruption() 99 oss << DumpObjectInfo(holder.Ptr(), "holder"); in LogHeapCorruption()
|
D | verification.h | 43 std::string DumpObjectInfo(const void* obj, const char* tag) const
|
D | heap.cc | 4120 << " " << verification_->DumpObjectInfo(c.Ptr(), /*tag=*/ "klass"); in CheckPreconditionsForAllocObject()
|
/art/runtime/gc/collector/ |
D | concurrent_copying.cc | 895 << Runtime::Current()->GetHeap()->GetVerification()->DumpObjectInfo(obj, "failed CAS"); in operator ()() 2719 oss << indent << heap_->GetVerification()->DumpObjectInfo(ref, ref_name) << '\n'; in DumpReferenceInfo()
|