Home | History | Annotate | Download | only in base

Lines Matching defs:rc

346   int rc = pthread_mutex_destroy(&mutex_);
347 if (rc != 0) {
348 errno = rc;
534 int rc = pthread_rwlock_destroy(&rwlock_);
535 if (rc != 0) {
536 errno = rc;
768 int rc = pthread_cond_destroy(&cond_);
769 if (rc != 0) {
770 errno = rc;
906 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts));
907 if (rc == ETIMEDOUT) {
909 } else if (rc != 0) {
910 errno = rc;