Home
last modified time | relevance | path

Searched refs:identity_hash_code (Results 1 – 2 of 2) sorted by relevance

/art/runtime/jdwp/
Dobject_registry.cc94 int32_t identity_hash_code = obj_h->IdentityHashCode(); in InternalAdd() local
99 if (ContainsLocked(soa.Self(), obj_h.Get(), identity_hash_code, &entry)) { in InternalAdd()
108 entry->identity_hash_code = identity_hash_code; in InternalAdd()
109 object_to_entry_.insert(std::make_pair(identity_hash_code, entry)); in InternalAdd()
130 int32_t identity_hash_code, in ContainsLocked() argument
133 for (auto it = object_to_entry_.lower_bound(identity_hash_code), end = object_to_entry_.end(); in ContainsLocked()
134 it != end && it->first == identity_hash_code; ++it) { in ContainsLocked()
269 int32_t hash_code = entry->identity_hash_code; in DisposeObject()
Dobject_registry.h53 int32_t identity_hash_code; member
128 int32_t identity_hash_code,