Home | History | Annotate | Download | only in vpx_util

Lines Matching refs:status_

37     while (worker->status_ == OK) {  // wait in idling mode
40 if (worker->status_ == WORK) {
42 worker->status_ = OK;
43 } else if (worker->status_ == NOT_OK) { // finish the worker
56 // Checking status_ without acquiring the lock first would result in a data
61 if (worker->status_ >= OK) {
63 while (worker->status_ != OK) {
68 worker->status_ = new_status;
81 worker->status_ = NOT_OK;
88 assert(worker->status_ <= OK);
95 if (worker->status_ < OK) {
110 if (ok) worker->status_ = OK;
121 worker->status_ = OK;
123 } else if (worker->status_ > OK) {
126 assert(!ok || (worker->status_ == OK));
155 worker->status_ = NOT_OK;
158 assert(worker->status_ == NOT_OK);