Home | History | Annotate | Download | only in jdwp

Lines Matching refs:id

29      << ",id=" << rhs.id << "]";
56 dummy.id = 0;
62 return entry.id;
73 entry.id = next_id_++;
75 id_to_entry_.Put(entry.id, &entry);
79 return entry.id;
109 mirror::Object* ObjectRegistry::InternalGet(JDWP::ObjectId id) {
112 id_iterator it = id_to_entry_.find(id);
120 jobject ObjectRegistry::GetJObject(JDWP::ObjectId id) {
123 id_iterator it = id_to_entry_.find(id);
124 CHECK(it != id_to_entry_.end()) << id;
129 void ObjectRegistry::DisableCollection(JDWP::ObjectId id) {
132 id_iterator it = id_to_entry_.find(id);
139 void ObjectRegistry::EnableCollection(JDWP::ObjectId id) {
142 id_iterator it = id_to_entry_.find(id);
171 bool ObjectRegistry::IsCollected(JDWP::ObjectId id) {
174 id_iterator it = id_to_entry_.find(id);
176 return true; // TODO: can we report that this was an invalid id?
188 void ObjectRegistry::DisposeObject(JDWP::ObjectId id, uint32_t reference_count) {
191 id_iterator it = id_to_entry_.find(id);
207 id_to_entry_.erase(id);