Lines Matching refs:id
32 << ",id=" << rhs.id << "]"; in operator <<()
107 entry->id = 0; in InternalAdd()
119 entry->id = next_id_++; in InternalAdd()
121 id_to_entry_.Put(entry->id, entry); in InternalAdd()
125 return entry->id; in InternalAdd()
179 mirror::Object* ObjectRegistry::InternalGet(JDWP::ObjectId id, JDWP::JdwpError* error) { in InternalGet() argument
182 auto it = id_to_entry_.find(id); in InternalGet()
192 jobject ObjectRegistry::GetJObject(JDWP::ObjectId id) { in GetJObject() argument
193 if (id == 0) { in GetJObject()
198 auto it = id_to_entry_.find(id); in GetJObject()
199 CHECK(it != id_to_entry_.end()) << id; in GetJObject()
204 void ObjectRegistry::DisableCollection(JDWP::ObjectId id) { in DisableCollection() argument
207 auto it = id_to_entry_.find(id); in DisableCollection()
212 void ObjectRegistry::EnableCollection(JDWP::ObjectId id) { in EnableCollection() argument
215 auto it = id_to_entry_.find(id); in EnableCollection()
242 bool ObjectRegistry::IsCollected(JDWP::ObjectId id) { in IsCollected() argument
245 auto it = id_to_entry_.find(id); in IsCollected()
256 void ObjectRegistry::DisposeObject(JDWP::ObjectId id, uint32_t reference_count) { in DisposeObject() argument
259 auto it = id_to_entry_.find(id); in DisposeObject()
282 id_to_entry_.erase(id); in DisposeObject()