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

/art/runtime/mirror/
H A Dclass.cc69 void Class::SetStatus(Handle<Class> h_this, Status new_status, Thread* self) { argument
74 if (UNLIKELY(new_status <= old_status && new_status != kStatusError &&
75 new_status != kStatusRetired)) {
77 << " " << old_status << " -> " << new_status; local
79 if (new_status >= kStatusResolved || old_status >= kStatusResolved) {
83 << PrettyClass(h_this.Get()) << " " << old_status << " -> " << new_status; local
86 if (UNLIKELY(new_status == kStatusError)) {
103 h_this->SetField32Volatile<true>(OFFSET_OF_OBJECT_MEMBER(Class, status_), new_status); local
105 h_this->SetField32Volatile<false>(OFFSET_OF_OBJECT_MEMBER(Class, status_), new_status); local
[all...]

Completed in 233 milliseconds