HomeSort by relevance Sort by last modified time
    Searched defs:new_status (Results 1 - 2 of 2) sorted by null

  /system/update_engine/
update_attempter_android.cc 409 UpdateStatus new_status = local
412 SetStatusAndNotify(new_status);
  /art/runtime/mirror/
class.cc 69 void Class::SetStatus(Handle<Class> h_this, Status new_status, Thread* self) {
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 1155 milliseconds