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

  /external/qemu/hw/
goldfish_battery.c 173 int new_status = (ac ? AC_STATUS_CHANGED : BATTERY_STATUS_CHANGED); local
198 if (new_status != battery_state->int_status) {
199 battery_state->int_status |= new_status;
goldfish_mmc.c 218 int new_status = MMC_STAT_END_OF_CMD; local
329 new_status |= MMC_STAT_END_OF_DATA;
353 new_status |= MMC_STAT_END_OF_DATA;
375 new_status |= MMC_STAT_END_OF_DATA;
394 new_status |= MMC_STAT_END_OF_DATA;
408 s->int_status |= new_status;
goldfish_audio.c 460 int new_status = 0; local
473 new_status |= AUDIO_INT_WRITE_BUFFER_1_EMPTY;
489 new_status |= AUDIO_INT_WRITE_BUFFER_2_EMPTY;
498 if (new_status && new_status != s->int_status) {
499 s->int_status |= new_status;
509 int new_status = 0; local
522 new_status |= AUDIO_INT_READ_BUFFER_FULL;
529 if (new_status && new_status != s->int_status)
    [all...]
  /external/chromium/net/http/
http_response_headers_unittest.cc 1611 const char* new_status; member in struct:__anon5534
    [all...]
  /external/chromium_org/net/http/
http_response_headers_unittest.cc 1802 const char* new_status; member in struct:__anon11202
    [all...]
  /art/runtime/mirror/
class.cc 53 void Class::SetStatus(Status new_status, Thread* self) {
57 if (UNLIKELY(new_status <= old_status && new_status != kStatusError)) {
59 << old_status << " -> " << new_status; local
61 if (new_status >= kStatusResolved || old_status >= kStatusResolved) {
65 << PrettyClass(this) << " " << old_status << " -> " << new_status; local
68 if (new_status == kStatusError) {
108 SetField32(OFFSET_OF_OBJECT_MEMBER(Class, status_), new_status, false); local
111 if ((old_status >= kStatusResolved || new_status >= kStatusResolved) &&
  /external/chromium_org/chrome/test/chromedriver/chrome/
web_view_impl.cc 333 Status new_status = client_->HandleEventsUntil( local
337 if (new_status.IsError())
338 status = new_status;
  /external/chromium_org/chrome/browser/net/
load_time_stats.cc 189 void OnStatusChange(RequestStatus new_status) {
193 DCHECK_GE(new_status, 0);
195 DCHECK_LE(new_status, REQUEST_STATUS_ACTIVE);
200 status_ = new_status;
377 RequestStatus new_status = REQUEST_STATUS_NONE; local
382 new_status = REQUEST_STATUS_CACHE_WAIT;
387 new_status = REQUEST_STATUS_ACTIVE;
392 new_status = REQUEST_STATUS_NETWORK_WAIT;
397 new_status = REQUEST_STATUS_ACTIVE;
400 new_status = REQUEST_STATUS_NONE
    [all...]

Completed in 558 milliseconds