Lines Matching refs:id
30 << ",id=" << rhs.id << "]"; in operator <<()
100 entry->id = 0; in InternalAdd()
112 entry->id = next_id_++; in InternalAdd()
114 id_to_entry_.Put(entry->id, entry); in InternalAdd()
118 return entry->id; in InternalAdd()
170 mirror::Object* ObjectRegistry::InternalGet(JDWP::ObjectId id, JDWP::JdwpError* error) { in InternalGet() argument
173 auto it = id_to_entry_.find(id); in InternalGet()
183 jobject ObjectRegistry::GetJObject(JDWP::ObjectId id) { in GetJObject() argument
184 if (id == 0) { in GetJObject()
189 auto it = id_to_entry_.find(id); in GetJObject()
190 CHECK(it != id_to_entry_.end()) << id; in GetJObject()
195 void ObjectRegistry::DisableCollection(JDWP::ObjectId id) { in DisableCollection() argument
198 auto it = id_to_entry_.find(id); in DisableCollection()
203 void ObjectRegistry::EnableCollection(JDWP::ObjectId id) { in EnableCollection() argument
206 auto it = id_to_entry_.find(id); in EnableCollection()
233 bool ObjectRegistry::IsCollected(JDWP::ObjectId id) { in IsCollected() argument
236 auto it = id_to_entry_.find(id); in IsCollected()
247 void ObjectRegistry::DisposeObject(JDWP::ObjectId id, uint32_t reference_count) { in DisposeObject() argument
250 auto it = id_to_entry_.find(id); in DisposeObject()
273 id_to_entry_.erase(id); in DisposeObject()