HomeSort by relevance Sort by last modified time
    Searched refs:identity_hash_code (Results 1 - 2 of 2) sorted by null

  /art/runtime/jdwp/
object_registry.cc 52 int32_t identity_hash_code = o->IdentityHashCode(); local
56 if (ContainsLocked(soa.Self(), o, identity_hash_code, &entry)) {
65 entry->identity_hash_code = identity_hash_code;
66 object_to_entry_.insert(std::make_pair(identity_hash_code, entry));
90 int32_t identity_hash_code = o->IdentityHashCode(); local
93 return ContainsLocked(self, o, identity_hash_code, out_entry);
96 bool ObjectRegistry::ContainsLocked(Thread* self, mirror::Object* o, int32_t identity_hash_code,
99 for (auto it = object_to_entry_.lower_bound(identity_hash_code), end = object_to_entry_.end();
100 it != end && it->first == identity_hash_code; ++it)
    [all...]
object_registry.h 50 int32_t identity_hash_code; member in struct:art::ObjectRegistryEntry
120 bool ContainsLocked(Thread* self, mirror::Object* o, int32_t identity_hash_code,

Completed in 4979 milliseconds