Home
last modified time | relevance | path

Searched refs:DumpObjectInfo (Results 1 – 5 of 5) sorted by relevance

/art/runtime/gc/
Dheap_verification_test.cc109 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()
Dverification.cc53 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()
Dverification.h43 std::string DumpObjectInfo(const void* obj, const char* tag) const
Dheap.cc4120 << " " << verification_->DumpObjectInfo(c.Ptr(), /*tag=*/ "klass"); in CheckPreconditionsForAllocObject()
/art/runtime/gc/collector/
Dconcurrent_copying.cc895 << Runtime::Current()->GetHeap()->GetVerification()->DumpObjectInfo(obj, "failed CAS"); in operator ()()
2719 oss << indent << heap_->GetVerification()->DumpObjectInfo(ref, ref_name) << '\n'; in DumpReferenceInfo()