Home | History | Annotate | Download | only in synchronization

Lines Matching refs:result

15   int result = pthread_rwlock_destroy(&native_handle_);
16 DCHECK_EQ(result, 0) << ". " << strerror(result);
20 int result = pthread_rwlock_rdlock(&native_handle_);
21 DCHECK_EQ(result, 0) << ". " << strerror(result);
25 int result = pthread_rwlock_unlock(&native_handle_);
26 DCHECK_EQ(result, 0) << ". " << strerror(result);
30 int result = pthread_rwlock_wrlock(&native_handle_);
31 DCHECK_EQ(result, 0) << ". " << strerror(result);
35 int result = pthread_rwlock_unlock(&native_handle_);
36 DCHECK_EQ(result, 0) << ". " << strerror(result);