Lines Matching refs:unlockRet
52 int unlockRet = pthread_mutex_unlock(&condition->mutex); in HksConditionWait() local
53 if (unlockRet != 0) { in HksConditionWait()
54 HKS_LOG_ERRNO("HksConditionWait notified pthread_mutex_unlock fail!", unlockRet); in HksConditionWait()
63 int unlockRet = pthread_mutex_unlock(&condition->mutex); in HksConditionWait() local
64 if (unlockRet != 0) { in HksConditionWait()
65 HKS_LOG_ERRNO("HksConditionWait waited pthread_mutex_unlock fail!", unlockRet); in HksConditionWait()
92 int unlockRet = pthread_mutex_unlock(&condition->mutex); in HksConditionNotify() local
93 if (unlockRet != 0) { in HksConditionNotify()
94 HKS_LOG_ERRNO("HksConditionNotify pthread_mutex_unlock fail!", unlockRet); in HksConditionNotify()
120 int unlockRet = pthread_mutex_unlock(&condition->mutex); in HksConditionNotifyAll() local
121 if (unlockRet != 0) { in HksConditionNotifyAll()
122 HKS_LOG_ERRNO("HksConditionNotifyAll pthread_mutex_unlock fail!", unlockRet); in HksConditionNotifyAll()