HomeSort by relevance Sort by last modified time
    Searched refs:mutex_ (Results 26 - 50 of 163) sorted by null

12 3 4 5 6 7

  /external/webrtc/webrtc/modules/video_processing/
video_processing_impl.h 47 mutable rtc::CriticalSection mutex_; member in class:webrtc::VideoProcessingImpl
48 VPMDeflickering deflickering_ GUARDED_BY(mutex_);
  /external/webrtc/webrtc/base/
criticalsection.cc 24 pthread_mutex_init(&mutex_, &mutex_attribute);
35 pthread_mutex_destroy(&mutex_);
43 pthread_mutex_lock(&mutex_);
60 if (pthread_mutex_trylock(&mutex_) != 0)
85 pthread_mutex_unlock(&mutex_);
  /external/v8/src/
futex-emulation.cc 19 base::LazyMutex FutexEmulation::mutex_ = LAZY_MUTEX_INITIALIZER; member in class:v8::internal::FutexEmulation
33 base::LockGuard<base::Mutex> lock_guard(FutexEmulation::mutex_.Pointer());
84 base::LockGuard<base::Mutex> lock_guard(mutex_.Pointer());
128 // mutex_ and mutexes locked by HandleInterrupts.
129 mutex_.Pointer()->Unlock();
135 // 2) After interrupted has been checked here, but before mutex_ is
136 // acquired: interrupted is checked again below, with mutex_ locked.
137 // Because the wakeup signal also acquires mutex_, we know it will not
138 // be able to notify until mutex_ is released below, when waiting on the
147 mutex_.Pointer()->Lock()
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_dthread.c 43 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_[i])
    [all...]
vp9_dthread.h 35 pthread_mutex_t *mutex_; member in struct:VP9LfSyncData
  /bionic/libc/bionic/
dirent.cpp 54 pthread_mutex_t mutex_; member in struct:DIR
68 pthread_mutex_init(&d->mutex_, NULL);
120 ScopedPthreadMutexLocker locker(&d->mutex_);
131 ScopedPthreadMutexLocker locker(&d->mutex_);
153 pthread_mutex_destroy(&d->mutex_);
159 ScopedPthreadMutexLocker locker(&d->mutex_);
166 ScopedPthreadMutexLocker locker(&d->mutex_);
  /external/opencv3/3rdparty/libwebp/utils/
thread.c 140 pthread_mutex_lock(&worker->mutex_);
142 pthread_cond_wait(&worker->condition_, &worker->mutex_);
154 pthread_mutex_unlock(&worker->mutex_);
165 pthread_mutex_lock(&worker->mutex_);
168 pthread_cond_wait(&worker->condition_, &worker->mutex_);
175 pthread_mutex_unlock(&worker->mutex_);
200 if (pthread_mutex_init(&worker->mutex_, NULL) ||
204 pthread_mutex_lock(&worker->mutex_);
207 pthread_mutex_unlock(&worker->mutex_);
232 pthread_mutex_destroy(&worker->mutex_);
    [all...]
thread.h 59 pthread_mutex_t mutex_; member in struct:__anon20481
  /external/webp/src/utils/
thread.c 54 pthread_mutex_t mutex_; member in struct:WebPWorkerImpl
211 pthread_mutex_lock(&worker->impl_->mutex_);
213 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
223 pthread_mutex_unlock(&worker->impl_->mutex_);
236 pthread_mutex_lock(&worker->impl_->mutex_);
240 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
248 pthread_mutex_unlock(&worker->impl_->mutex_);
277 if (pthread_mutex_init(&worker->impl_->mutex_, NULL)) {
281 pthread_mutex_destroy(&worker->impl_->mutex_);
284 pthread_mutex_lock(&worker->impl_->mutex_);
    [all...]
  /external/webrtc/webrtc/system_wrappers/source/
condition_variable_posix.cc 75 pthread_cond_wait(&cond_, &cs->mutex_);
116 const int res = pthread_cond_timedwait(&cond_, &cs->mutex_, &ts);
119 pthread_cond_wait(&cond_, &cs->mutex_);
event_timer_posix.h 46 pthread_mutex_t mutex_; member in class:webrtc::EventTimerPosix
  /external/libvpx/libvpx/vp9/common/
vp9_thread_common.h 27 pthread_mutex_t *mutex_; member in struct:VP9LfSyncData
  /external/skia/src/ports/
SkFontConfigInterface_direct.h 34 SkMutex mutex_; member in class:SkFontConfigInterfaceDirect
  /external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
select_reactor.hpp 42 asio::detail::mutex::scoped_lock lock(mutex_);
61 asio::detail::mutex::scoped_lock lock(mutex_);
  /external/protobuf/src/google/protobuf/stubs/
once_unittest.cc 142 MutexLock lock(&mutex_);
155 Mutex mutex_; member in class:google::protobuf::__anon21888::OnceInitTest
162 MutexLock lock(&mutex_);
165 mutex_.Unlock();
168 mutex_.Lock();
  /bionic/libc/malloc_debug/
FreeTrackData.h 62 pthread_mutex_t mutex_ = PTHREAD_MUTEX_INITIALIZER; member in class:FreeTrackData
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libignore.h 63 BlockingMutex mutex_; member in class:__sanitizer::LibIgnore
sanitizer_libignore.cc 25 BlockingMutexLock lock(&mutex_);
39 BlockingMutexLock lock(&mutex_);
  /external/piex/src/binary_parse/
cached_paged_byte_array.h 64 mutable std::mutex mutex_; member in class:piex::binary_parse::CachedPagedByteArray
  /system/extras/memory_replay/
Thread.h 48 pthread_mutex_t mutex_ = PTHREAD_MUTEX_INITIALIZER; member in class:Thread
  /toolchain/binutils/binutils-2.25/gold/
gold-threads.cc 95 pthread_mutex_t mutex_; member in class:gold::Lock_impl_threads
110 err = pthread_mutex_init(&this->mutex_, &attr);
121 int err = pthread_mutex_destroy(&this->mutex_);
129 int err = pthread_mutex_lock(&this->mutex_);
137 int err = pthread_mutex_unlock(&this->mutex_);
234 int err = pthread_cond_wait(&this->cond_, &lit->mutex_);
  /system/bt/service/example/heart_rate/
heart_rate_server.cpp 98 std::lock_guard<std::mutex> lock(mutex_);
112 std::lock_guard<std::mutex> lock(mutex_);
147 std::lock_guard<std::mutex> lock(mutex_);
216 std::lock_guard<std::mutex> lock(mutex_);
308 std::lock_guard<std::mutex> lock(mutex_);
343 std::lock_guard<std::mutex> lock(mutex_);
364 std::lock_guard<std::mutex> lock(mutex_);
395 std::lock_guard<std::mutex> lock(mutex_);
436 std::lock_guard<std::mutex> lock(mutex_);
494 std::lock_guard<std::mutex> lock(mutex_);
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h 1249 pthread_mutex_t mutex_; member in class:testing::internal::Notification
1466 Mutex* const mutex_; member in class:testing::internal::GTestMutexLock
1668 pthread_mutex_t mutex_; \/\/ The underlying pthread mutex. member in class:testing::internal::MutexBase
1721 MutexBase* const mutex_; member in class:testing::internal::GTestMutexLock
    [all...]
  /development/ndk/sources/android/ndk_helper/
JNIHelper.h 56 mutable pthread_mutex_t mutex_; member in class:ndk_helper::JNIHelper
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-port.h 1141 pthread_mutex_t mutex_; member in class:testing::internal::Notification
1276 pthread_mutex_t mutex_; \/\/ The underlying pthread mutex. member in class:testing::internal::MutexBase
1327 MutexBase* const mutex_; member in class:testing::internal::GTestMutexLock
    [all...]

Completed in 1014 milliseconds

12 3 4 5 6 7