Searched refs:DumpObjectInfo (Results 1 – 5 of 5) sorted by relevance
/art/runtime/gc/ |
D | heap_verification_test.cc | 111 LOG(INFO) << v->DumpObjectInfo(reinterpret_cast<const void*>(1), "obj"); in TEST_F() 112 LOG(INFO) << v->DumpObjectInfo(reinterpret_cast<const void*>(4), "obj"); in TEST_F() 113 LOG(INFO) << v->DumpObjectInfo(nullptr, "obj"); in TEST_F() 133 LOG(INFO) << v->DumpObjectInfo(string.Get(), "test"); in TEST_F() 134 LOG(INFO) << v->DumpObjectInfo(string->GetClass(), "obj"); in TEST_F() 136 LOG(INFO) << v->DumpObjectInfo(reinterpret_cast<const void*>(uint_klass - kObjectAlignment), in TEST_F() 138 LOG(INFO) << v->DumpObjectInfo(reinterpret_cast<const void*>(&uint_klass), "obj"); in TEST_F() 139 LOG(INFO) << v->DumpObjectInfo(arr.Get(), "arr"); in TEST_F()
|
D | verification.cc | 63 std::string Verification::DumpObjectInfo(const void* addr, const char* tag) const { in DumpObjectInfo() function in art::gc::Verification 105 oss << DumpObjectInfo(ref, "ref") << "\n"; in LogHeapCorruption() 106 oss << DumpObjectInfo(holder.Ptr(), "holder") << "\n"; in LogHeapCorruption()
|
D | verification.h | 45 std::string DumpObjectInfo(const void* obj, const char* tag) const
|
D | heap.cc | 4313 << " " << verification_->DumpObjectInfo(c.Ptr(), /*tag=*/ "klass"); in CheckPreconditionsForAllocObject()
|
/art/runtime/gc/collector/ |
D | concurrent_copying.cc | 919 << Runtime::Current()->GetHeap()->GetVerification()->DumpObjectInfo(obj, "failed CAS"); in operator ()() 2850 oss << indent << heap_->GetVerification()->DumpObjectInfo(ref, ref_name) << '\n'; in DumpReferenceInfo()
|