Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap_verification_test.cc82 TEST_F(VerificationTest, DumpObjectInfo) { in TEST_F() argument
92 LOG(INFO) << v->DumpObjectInfo(reinterpret_cast<const void*>(1), "obj"); in TEST_F()
93 LOG(INFO) << v->DumpObjectInfo(reinterpret_cast<const void*>(4), "obj"); in TEST_F()
94 LOG(INFO) << v->DumpObjectInfo(nullptr, "obj"); in TEST_F()
95 LOG(INFO) << v->DumpObjectInfo(string.Get(), "test"); in TEST_F()
96 LOG(INFO) << v->DumpObjectInfo(string->GetClass(), "obj"); in TEST_F()
98 LOG(INFO) << v->DumpObjectInfo(reinterpret_cast<const void*>(uint_klass - kObjectAlignment), in TEST_F()
100 LOG(INFO) << v->DumpObjectInfo(reinterpret_cast<const void*>(&uint_klass), "obj"); in TEST_F()
101 LOG(INFO) << v->DumpObjectInfo(arr.Get(), "arr"); in TEST_F()
Dverification.cc28 std::string Verification::DumpObjectInfo(const void* addr, const char* tag) const { in DumpObjectInfo() function in art::gc::Verification
88 oss << DumpObjectInfo(ref, "ref") << "\n"; in LogHeapCorruption()
89 oss << DumpObjectInfo(holder.Ptr(), "holder"); in LogHeapCorruption()
Dverification.h43 std::string DumpObjectInfo(const void* obj, const char* tag) const