Home | History | Annotate | Download | only in synchronization

Lines Matching refs:ret

31     const int ret = pthread_mutex_init(&mutex_, NULL);
32 (void) ret;
33 DCHECK_EQ(0, ret);
37 const int ret = pthread_mutex_destroy(&mutex_);
38 (void) ret;
39 DCHECK_EQ(0, ret);
43 int ret = pthread_mutex_lock(&mutex_);
44 (void) ret;
45 DCHECK_EQ(0, ret);
49 int ret = pthread_mutex_unlock(&mutex_);
50 (void) ret;
51 DCHECK_EQ(0, ret);