Searched refs:new_tag (Results 1 – 3 of 3) sorted by relevance
/art/openjdkjvmti/ |
D | object_tagging.cc | 74 bool ObjectTagTable::Set(art::ObjPtr<art::mirror::Object> obj, jlong new_tag) { in Set() argument 75 if (new_tag == 0) { in Set() 79 return JvmtiWeakTable<jlong>::Set(obj, new_tag); in Set() 82 bool ObjectTagTable::SetLocked(art::ObjPtr<art::mirror::Object> obj, jlong new_tag) { in SetLocked() argument 83 if (new_tag == 0) { in SetLocked() 87 return JvmtiWeakTable<jlong>::SetLocked(obj, new_tag); in SetLocked()
|
D | jvmti_weak_table-inl.h | 135 bool JvmtiWeakTable<T>::Set(art::ObjPtr<art::mirror::Object> obj, T new_tag) { in Set() argument 140 return SetLocked(self, obj, new_tag); in Set() 143 bool JvmtiWeakTable<T>::SetLocked(art::ObjPtr<art::mirror::Object> obj, T new_tag) { in SetLocked() argument 148 return SetLocked(self, obj, new_tag); in SetLocked() 152 … JvmtiWeakTable<T>::SetLocked(art::Thread* self, art::ObjPtr<art::mirror::Object> obj, T new_tag) { in SetLocked() argument 155 it->second = new_tag; in SetLocked() 169 return SetLocked(self, obj, new_tag); in SetLocked() 173 auto insert_it = tagged_objects_.emplace(art::GcRoot<art::mirror::Object>(obj), new_tag); in SetLocked()
|
/art/runtime/ |
D | debugger.cc | 4081 JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get()); in ExecuteMethodWithoutPendingException() local 4082 if (new_tag != result_tag) { in ExecuteMethodWithoutPendingException() 4083 VLOG(jdwp) << " JDWP promoted result from " << result_tag << " to " << new_tag; in ExecuteMethodWithoutPendingException() 4084 result_tag = new_tag; in ExecuteMethodWithoutPendingException()
|