Lines Matching refs:status
64 int status;
75 status = pthread_cond_wait(&gTimerCond, &gTimerMutex);
77 status = pthread_cond_timedwait(&gTimerCond, &gTimerMutex, &spec);
79 if (status == 0) // someone signaled us with a new time
85 SkASSERT(status == ETIMEDOUT); // no need to unlock the mutex (its unlocked)
140 int status;
143 status = pthread_attr_init(&attr);
144 SkASSERT(status == 0);
145 status = pthread_create(&gTimerThread, &attr, timer_event_thread_proc, 0);
146 SkASSERT(status == 0);
151 int status = pthread_cancel(gTimerThread);
152 SkASSERT(status == 0);