Searched refs:mutex_ (Results 1 - 7 of 7) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
H A Dvp9_thread.c33 pthread_mutex_lock(&worker->mutex_);
35 pthread_cond_wait(&worker->condition_, &worker->mutex_);
45 pthread_mutex_unlock(&worker->mutex_);
56 pthread_mutex_lock(&worker->mutex_);
59 pthread_cond_wait(&worker->condition_, &worker->mutex_);
66 pthread_mutex_unlock(&worker->mutex_);
91 if (pthread_mutex_init(&worker->mutex_, NULL) ||
95 pthread_mutex_lock(&worker->mutex_);
98 pthread_mutex_unlock(&worker->mutex_);
128 pthread_mutex_destroy(&worker->mutex_);
[all...]
H A Dvp9_dthread.c43 mutex_lock(&lf_sync->mutex_[r - 1]);
47 &lf_sync->mutex_[r - 1]);
49 pthread_mutex_unlock(&lf_sync->mutex_[r - 1]);
75 mutex_lock(&lf_sync->mutex_[r]);
80 pthread_mutex_unlock(&lf_sync->mutex_[r]);
226 CHECK_MEM_ERROR(cm, lf_sync->mutex_,
227 vpx_malloc(sizeof(*lf_sync->mutex_) * rows));
229 pthread_mutex_init(&lf_sync->mutex_[i], NULL);
252 if (lf_sync->mutex_ != NULL) {
254 pthread_mutex_destroy(&lf_sync->mutex_[
[all...]
H A Dvp9_dthread.h35 pthread_mutex_t *mutex_; member in struct:VP9LfSyncData
H A Dvp9_thread.h169 pthread_mutex_t mutex_; member in struct:__anon1139
/hardware/qcom/display/msm8996/sdm/include/utils/
H A Dlocker.h128 pthread_mutex_init(&mutex_, 0);
133 pthread_mutex_destroy(&mutex_);
137 void Lock() { pthread_mutex_lock(&mutex_); }
138 void Unlock() { pthread_mutex_unlock(&mutex_); }
141 void Wait() { pthread_cond_wait(&condition_, &mutex_); }
150 return pthread_cond_timedwait(&condition_, &mutex_, &ts);
154 pthread_mutex_t mutex_; member in class:sdm::Locker
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc846 GTEST_LOCK_EXCLUDED_(mutex_);
848 virtual void UponLeavingGTest() GTEST_LOCK_EXCLUDED_(mutex_);
855 Mutex mutex_; // protects all internal state member in class:testing::internal::OsStackTraceGetter
4971 GTEST_LOCK_EXCLUDED_(&UnitTest::mutex_) {
4982 GTEST_LOCK_EXCLUDED_(&UnitTest::mutex_) {
4998 GTEST_LOCK_EXCLUDED_(mutex_) {
5003 GTEST_LOCK_EXCLUDED_(mutex_) {
5122 // We don't protect this under mutex_ as a user is not supposed to
5246 // We don't protect this under mutex_, as we only support calling it
5266 const std::string& os_stack_trace) GTEST_LOCK_EXCLUDED_(mutex_) {
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h2312 GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, NULL));
2315 pthread_mutex_destroy(&mutex_);
2321 pthread_mutex_lock(&mutex_);
2323 pthread_mutex_unlock(&mutex_);
2330 pthread_mutex_lock(&mutex_);
2332 pthread_mutex_unlock(&mutex_);
2340 pthread_mutex_t mutex_; member in class:std::tr1::Notification
2447 GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_lock(&mutex_));
2459 GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_unlock(&mutex_));
2475 pthread_mutex_t mutex_; // Th member in class:std::tr1::MutexBase
2526 MutexBase* const mutex_; member in class:std::tr1::GTestMutexLock
18701 mutable internal::Mutex mutex_; member in class:testing::UnitTest
[all...]

Completed in 289 milliseconds