Lines Matching refs:id
29 << ",id=" << rhs.id << "]"; in operator <<()
56 dummy.id = 0; in InternalAdd()
62 return entry.id; in InternalAdd()
73 entry.id = next_id_++; in InternalAdd()
75 id_to_entry_.Put(entry.id, &entry); in InternalAdd()
79 return entry.id; in InternalAdd()
109 mirror::Object* ObjectRegistry::InternalGet(JDWP::ObjectId id) { in InternalGet() argument
112 id_iterator it = id_to_entry_.find(id); in InternalGet()
120 jobject ObjectRegistry::GetJObject(JDWP::ObjectId id) { in GetJObject() argument
123 id_iterator it = id_to_entry_.find(id); in GetJObject()
124 CHECK(it != id_to_entry_.end()) << id; in GetJObject()
129 void ObjectRegistry::DisableCollection(JDWP::ObjectId id) { in DisableCollection() argument
132 id_iterator it = id_to_entry_.find(id); in DisableCollection()
139 void ObjectRegistry::EnableCollection(JDWP::ObjectId id) { in EnableCollection() argument
142 id_iterator it = id_to_entry_.find(id); in EnableCollection()
171 bool ObjectRegistry::IsCollected(JDWP::ObjectId id) { in IsCollected() argument
174 id_iterator it = id_to_entry_.find(id); in IsCollected()
188 void ObjectRegistry::DisposeObject(JDWP::ObjectId id, uint32_t reference_count) { in DisposeObject() argument
191 id_iterator it = id_to_entry_.find(id); in DisposeObject()
207 id_to_entry_.erase(id); in DisposeObject()