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

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

Completed in 25 milliseconds