Searched refs:new_tag (Results 1 – 5 of 5) 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()
|
D | events-inl.h | 326 ArtJvmTiEnv* env, art::Thread* thread, jlong* obsolete_tag, jlong* new_tag) const { 329 if (ShouldDispatch<kEvent>(env, thread, obsolete_tag, new_tag)) { 332 ExecuteCallback<kEvent>(func, obsolete_tag, new_tag); 337 *obsolete_tag = *new_tag; 338 *new_tag = temp;
|
D | events.h | 106 jlong* new_tag);
|
D | ti_heap.cc | 1825 jlong new_tag = 0; in ReplaceWeakRoots() local 1828 bool had_new_tag = env->object_tag_table->RemoveLocked(it.second, &new_tag); in ReplaceWeakRoots() 1832 env, self, &obsolete_tag, &new_tag); in ReplaceWeakRoots() 1834 { it.first, obsolete_tag, it.second, new_tag }); in ReplaceWeakRoots()
|