Searched refs:new_tag (Results 1 – 3 of 3) sorted by relevance
/art/runtime/openjdkjvmti/ |
D | object_tagging.cc | 45 bool ObjectTagTable::Set(art::mirror::Object* obj, jlong new_tag) { in Set() argument 46 if (new_tag == 0) { in Set() 50 return JvmtiWeakTable<jlong>::Set(obj, new_tag); in Set() 52 bool ObjectTagTable::SetLocked(art::mirror::Object* obj, jlong new_tag) { in SetLocked() argument 53 if (new_tag == 0) { in SetLocked() 57 return JvmtiWeakTable<jlong>::SetLocked(obj, new_tag); in SetLocked()
|
D | jvmti_weak_table-inl.h | 134 bool JvmtiWeakTable<T>::Set(art::mirror::Object* obj, T new_tag) { in Set() argument 139 return SetLocked(self, obj, new_tag); in Set() 142 bool JvmtiWeakTable<T>::SetLocked(art::mirror::Object* obj, T new_tag) { in SetLocked() argument 147 return SetLocked(self, obj, new_tag); in SetLocked() 151 bool JvmtiWeakTable<T>::SetLocked(art::Thread* self, art::mirror::Object* obj, T new_tag) { in SetLocked() argument 154 it->second = new_tag; in SetLocked() 168 return SetLocked(self, obj, new_tag); in SetLocked() 172 auto insert_it = tagged_objects_.emplace(art::GcRoot<art::mirror::Object>(obj), new_tag); in SetLocked()
|
/art/runtime/ |
D | debugger.cc | 4148 JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get()); in ExecuteMethodWithoutPendingException() local 4149 if (new_tag != result_tag) { in ExecuteMethodWithoutPendingException() 4150 VLOG(jdwp) << " JDWP promoted result from " << result_tag << " to " << new_tag; in ExecuteMethodWithoutPendingException() 4151 result_tag = new_tag; in ExecuteMethodWithoutPendingException()
|