Searched refs:IdentityHashCode (Results 1 - 14 of 14) sorted by relevance

/art/runtime/
H A Djobject_comparator.cc44 return obj1->GetClass()->IdentityHashCode() < obj2->GetClass()->IdentityHashCode();
53 return obj1->IdentityHashCode() < obj2->IdentityHashCode();
H A Djni_env_ext.cc198 // IdentityHashCode can cause thread suspension, which would invalidate o if it moved. So
199 // we get the pretty type before we call IdentityHashCode.
201 return StringPrintf("<0x%08x> (a %s)", o->IdentityHashCode(), pretty_type.c_str());
H A Dmonitor_test.cc131 monitor_test_->object_.Get()->IdentityHashCode();
H A Dmonitor.cc1186 // Call PrettyTypeOf before IdentityHashCode since IdentityHashCode can cause thread
1189 os << wait_message << StringPrintf("<0x%08x> (a %s)", pretty_object->IdentityHashCode(),
H A Dthread.cc1755 // IdentityHashCode call below will crash. So explicitly mark/forward it here.
1765 // IdentityHashCode can cause thread suspension, which would invalidate o if it moved. So
1766 // we get the pretty type beofre we call IdentityHashCode.
1768 os << StringPrintf("<0x%08x> (a %s)", o->IdentityHashCode(), pretty_type.c_str());
/art/runtime/openjdkjvmti/
H A Dti_object.cc71 *hash_code_ptr = object->IdentityHashCode();
/art/runtime/native/
H A Djava_lang_Object.cc54 return static_cast<jint>(o->IdentityHashCode());
/art/runtime/jdwp/
H A Dobject_registry.cc88 // Object::IdentityHashCode may cause these locks to be held so check we do not already
93 // Call IdentityHashCode here to avoid a lock level violation between lock_ and monitor_lock.
94 int32_t identity_hash_code = obj_h->IdentityHashCode();
/art/runtime/mirror/
H A Dobject.cc186 int32_t Object::IdentityHashCode() { function in class:art::mirror::Object
H A Dobject.h137 int32_t IdentityHashCode()
H A Dobject_test.cc721 TEST_F(ObjectTest, IdentityHashCode) {
/art/runtime/interpreter/
H A Dunstarted_runtime_test.cc1371 TEST_F(UnstartedRuntimeTest, IdentityHashCode) {
1386 EXPECT_EQ(str->IdentityHashCode(), result.GetI());
H A Dunstarted_runtime.cc1125 result->SetI(obj->IdentityHashCode());
1634 result->SetI((obj != nullptr) ? obj->IdentityHashCode() : 0);
/art/runtime/arch/
H A Dstub_test.cc623 obj2->IdentityHashCode();
723 objects[index]->IdentityHashCode();

Completed in 206 milliseconds