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

/art/runtime/jdwp/
H A Dobject_registry.cc87 int32_t identity_hash_code = obj_h->IdentityHashCode(); local
92 if (ContainsLocked(soa.Self(), obj_h.Get(), identity_hash_code, &entry)) {
101 entry->identity_hash_code = identity_hash_code;
102 object_to_entry_.insert(std::make_pair(identity_hash_code, entry));
121 bool ObjectRegistry::ContainsLocked(Thread* self, mirror::Object* o, int32_t identity_hash_code, argument
124 for (auto it = object_to_entry_.lower_bound(identity_hash_code), end = object_to_entry_.end();
125 it != end && it->first == identity_hash_code; ++it) {
260 int32_t hash_code = entry->identity_hash_code;
H A Dobject_registry.h52 int32_t identity_hash_code; member in struct:art::ObjectRegistryEntry
124 bool ContainsLocked(Thread* self, mirror::Object* o, int32_t identity_hash_code,

Completed in 64 milliseconds