Home
last modified time | relevance | path

Searched refs:new_status (Results 1 – 2 of 2) sorted by relevance

/art/runtime/mirror/
Dclass.cc154 void Class::SetStatus(Handle<Class> h_this, ClassStatus new_status, Thread* self) { in SetStatus() argument
159 if (UNLIKELY(new_status <= old_status && in SetStatus()
160 new_status != ClassStatus::kErrorUnresolved && in SetStatus()
161 new_status != ClassStatus::kErrorResolved && in SetStatus()
162 new_status != ClassStatus::kRetired)) { in SetStatus()
164 << " " << old_status << " -> " << new_status; in SetStatus()
166 if (new_status >= ClassStatus::kResolved || old_status >= ClassStatus::kResolved) { in SetStatus()
170 << h_this->PrettyClass() << " " << old_status << " -> " << new_status; in SetStatus()
173 if (UNLIKELY(IsErroneous(new_status))) { in SetStatus()
177 << " old_status: " << old_status << " new_status: " << new_status; in SetStatus()
[all …]
Dclass.h90 static void SetStatus(Handle<Class> h_this, ClassStatus new_status, Thread* self)