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

  /external/clang/test/SemaCXX/
warn-unused-result.cpp 50 inline void Update(const Status& new_status) {
52 *this = new_status; //no-warning
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
vp9_thread.c 52 VP9WorkerStatus new_status) {
62 if (new_status != OK) {
63 worker->status_ = new_status;
  /external/libvpx/libvpx/vp9/decoder/
vp9_thread.c 52 VP9WorkerStatus new_status) {
62 if (new_status != OK) {
63 worker->status_ = new_status;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_thread.c 52 VP9WorkerStatus new_status) {
62 if (new_status != OK) {
63 worker->status_ = new_status;
  /external/qemu/hw/android/goldfish/
mmc.c 234 int new_status = MMC_STAT_END_OF_CMD; local
349 new_status |= MMC_STAT_END_OF_DATA;
373 new_status |= MMC_STAT_END_OF_DATA;
395 new_status |= MMC_STAT_END_OF_DATA;
414 new_status |= MMC_STAT_END_OF_DATA;
428 s->int_status |= new_status;
audio.c 504 int new_status = 0; local
517 new_status |= AUDIO_INT_WRITE_BUFFER_1_EMPTY;
533 new_status |= AUDIO_INT_WRITE_BUFFER_2_EMPTY;
542 if (new_status && new_status != s->int_status) {
543 s->int_status |= new_status;
553 int new_status = 0; local
566 new_status |= AUDIO_INT_READ_BUFFER_FULL;
573 if (new_status && new_status != s->int_status)
    [all...]
battery.c 192 int new_status = (ac ? AC_STATUS_CHANGED : BATTERY_STATUS_CHANGED); local
220 if (new_status != battery_state->int_status) {
221 battery_state->int_status |= new_status;
  /hardware/libhardware/include/hardware/
camera_common.h 258 * new_status: The new status code, one of the camera_device_status_t enums,
264 int new_status);
  /art/runtime/mirror/
class.cc 60 void Class::SetStatus(Status new_status, Thread* self) {
65 if (UNLIKELY(new_status <= old_status && new_status != kStatusError &&
66 new_status != kStatusRetired)) {
68 << old_status << " -> " << new_status; local
70 if (new_status >= kStatusResolved || old_status >= kStatusResolved) {
74 << PrettyClass(this) << " " << old_status << " -> " << new_status; local
77 if (UNLIKELY(new_status == kStatusError)) {
122 SetField32Volatile<true>(OFFSET_OF_OBJECT_MEMBER(Class, status_), new_status); local
124 SetField32Volatile<false>(OFFSET_OF_OBJECT_MEMBER(Class, status_), new_status); local
    [all...]
class.h 157 void SetStatus(Status new_status, Thread* self) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
    [all...]
  /external/chromium_org/third_party/libwebp/utils/
thread.c 181 WebPWorkerStatus new_status) {
194 if (new_status != OK) {
195 worker->status_ = new_status;
  /external/webp/src/utils/
thread.c 181 WebPWorkerStatus new_status) {
194 if (new_status != OK) {
195 worker->status_ = new_status;
  /external/chromium_org/net/http/
http_response_headers.h 84 // Replaces the current status line with the provided one (|new_status| should
86 void ReplaceStatusLine(const std::string& new_status);
http_response_headers.cc 362 void HttpResponseHeaders::ReplaceStatusLine(const std::string& new_status) {
363 CheckDoesNotHaveEmbededNulls(new_status);
365 std::string new_raw_headers(new_status);
    [all...]
http_response_headers_unittest.cc 1808 const char* new_status; member in struct:__anon13335
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
web_view_impl.cc 349 Status new_status = client_->HandleEventsUntil( local
353 if (new_status.IsError())
354 status = new_status;
  /frameworks/av/services/camera/libcameraservice/
CameraService.cpp 81 int new_status) {
87 new_status);
    [all...]

Completed in 744 milliseconds