Searched defs:new_tag (Results 1 - 3 of 3) sorted by relevance

/art/runtime/openjdkjvmti/
H A Dobject_tagging.cc45 bool ObjectTagTable::Set(art::mirror::Object* obj, jlong new_tag) { argument
46 if (new_tag == 0) {
50 return JvmtiWeakTable<jlong>::Set(obj, new_tag);
52 bool ObjectTagTable::SetLocked(art::mirror::Object* obj, jlong new_tag) { argument
53 if (new_tag == 0) {
57 return JvmtiWeakTable<jlong>::SetLocked(obj, new_tag);
H A Djvmti_weak_table-inl.h134 bool JvmtiWeakTable<T>::Set(art::mirror::Object* obj, T new_tag) { argument
139 return SetLocked(self, obj, new_tag);
142 bool JvmtiWeakTable<T>::SetLocked(art::mirror::Object* obj, T new_tag) { argument
147 return SetLocked(self, obj, new_tag);
151 bool JvmtiWeakTable<T>::SetLocked(art::Thread* self, art::mirror::Object* obj, T new_tag) { argument
154 it->second = new_tag;
168 return SetLocked(self, obj, new_tag);
172 auto insert_it = tagged_objects_.emplace(art::GcRoot<art::mirror::Object>(obj), new_tag);
/art/runtime/
H A Ddebugger.cc4136 JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get()); local
4137 if (new_tag != result_tag) {
4138 VLOG(jdwp) << " JDWP promoted result from " << result_tag << " to " << new_tag; local
4139 result_tag = new_tag;

Completed in 46 milliseconds