/external/valgrind/drd/tests/ |
pth_inconsistent_cond_wait.stderr.exp2 | 3 Inconsistent association of condition variable and mutex: condition variable 0x........, mutexes 0x........ and 0x........ 10 mutex 0x........ was first observed at: 13 mutex 0x........ was first observed at: 18 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread. 24 mutex 0x........ was first observed at: 28 Probably a race condition: condition variable 0x........ has been signaled but the associated mutex 0x........ is not locked by the signalling thread. 34 mutex 0x........ was first observed at:
|
thread_name.stderr.exp | 6 The object at address 0x........ is not a mutex. 15 The object at address 0x........ is not a mutex. 24 The object at address 0x........ is not a mutex. 33 The object at address 0x........ is not a mutex. 42 The object at address 0x........ is not a mutex. 51 The object at address 0x........ is not a mutex. 60 The object at address 0x........ is not a mutex. 69 The object at address 0x........ is not a mutex. 78 The object at address 0x........ is not a mutex. 87 The object at address 0x........ is not a mutex [all...] |
/frameworks/base/libs/hwui/ |
ResourceCache.cpp | 43 Mutex::Autolock _l(mLock); 48 Mutex::Autolock _l(mLock); 61 Mutex::Autolock _l(mLock); 80 Mutex::Autolock _l(mLock); 106 Mutex::Autolock _l(mLock); 131 * This method should only be called while the mLock mutex is held (that mutex is grabbed
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ |
mutex | 0 // <mutex> -*- C++ -*- 25 /** @file include/mutex 55 // Common base class for std::mutex and std::timed_mutex 112 * Classes for mutex support. 116 /// mutex 117 class mutex : private __mutex_base 125 mutex() noexcept = default; 126 ~mutex() = default; 128 mutex(const mutex&) = delete [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ |
mutex | 0 // <mutex> -*- C++ -*- 25 /** @file include/mutex 55 // Common base class for std::mutex and std::timed_mutex 112 * Classes for mutex support. 116 /// mutex 117 class mutex : private __mutex_base 125 mutex() noexcept = default; 126 ~mutex() = default; 128 mutex(const mutex&) = delete [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ |
mutex | 0 // <mutex> -*- C++ -*- 25 /** @file include/mutex 55 // Common base class for std::mutex and std::timed_mutex 112 * Classes for mutex support. 116 /// mutex 117 class mutex : private __mutex_base 125 mutex() noexcept = default; 126 ~mutex() = default; 128 mutex(const mutex&) = delete [all...] |
/prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/ |
server.go | 31 mutex sync.Mutex // protects seq, pending 74 c.mutex.Lock() 79 c.mutex.Unlock() 103 c.mutex.Lock() 106 c.mutex.Unlock() 110 c.mutex.Unlock()
|
/prebuilts/go/darwin-x86/src/runtime/race/testdata/ |
sync_test.go | 16 var mu sync.Mutex 35 var mu sync.Mutex 179 // A nil pointer in a mutex method call should not 183 var mutex sync.Mutex 187 mutex.Lock() 189 mutex.Unlock()
|
/prebuilts/go/linux-x86/src/net/rpc/jsonrpc/ |
server.go | 31 mutex sync.Mutex // protects seq, pending 74 c.mutex.Lock() 79 c.mutex.Unlock() 103 c.mutex.Lock() 106 c.mutex.Unlock() 110 c.mutex.Unlock()
|
/prebuilts/go/linux-x86/src/runtime/race/testdata/ |
sync_test.go | 16 var mu sync.Mutex 35 var mu sync.Mutex 179 // A nil pointer in a mutex method call should not 183 var mutex sync.Mutex 187 mutex.Lock() 189 mutex.Unlock()
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ |
mutex | 0 // <mutex> -*- C++ -*- 25 /** @file include/mutex 56 // Common base class for std::mutex and std::timed_mutex 113 * Classes for mutex support. 117 /// mutex 118 class mutex : private __mutex_base 126 mutex() noexcept = default; 127 ~mutex() = default; 129 mutex(const mutex&) = delete [all...] |
/device/google/contexthub/contexthubhal/ |
system_comms.h | 21 #include <utils/Mutex.h> 121 mutable Mutex mDoneLock; // controls condition and state transitions 126 mutable Mutex mLock; // serializes message handling 136 Mutex::Autolock _l(mDoneLock); 146 Mutex::Autolock _l(mDoneLock); 153 Mutex::Autolock _l(mLock); 157 Mutex::Autolock _l(mDoneLock); 164 Mutex::Autolock _l(mDoneLock); 168 Mutex::Autolock _l(mDoneLock); 172 Mutex::Autolock _l(mDoneLock) [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
Queue.py | 29 # mutex must be held whenever the queue is mutating. All methods 30 # that acquire mutex must release it before returning. mutex 32 # releasing the conditions also acquires and releases mutex. 33 self.mutex = _threading.Lock() 36 self.not_empty = _threading.Condition(self.mutex) 39 self.not_full = _threading.Condition(self.mutex) 42 self.all_tasks_done = _threading.Condition(self.mutex) 88 self.mutex.acquire() 90 self.mutex.release( [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
Queue.py | 29 # mutex must be held whenever the queue is mutating. All methods 30 # that acquire mutex must release it before returning. mutex 32 # releasing the conditions also acquires and releases mutex. 33 self.mutex = _threading.Lock() 36 self.not_empty = _threading.Condition(self.mutex) 39 self.not_full = _threading.Condition(self.mutex) 42 self.all_tasks_done = _threading.Condition(self.mutex) 88 self.mutex.acquire() 90 self.mutex.release( [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
Queue.py | 29 # mutex must be held whenever the queue is mutating. All methods 30 # that acquire mutex must release it before returning. mutex 32 # releasing the conditions also acquires and releases mutex. 33 self.mutex = _threading.Lock() 36 self.not_empty = _threading.Condition(self.mutex) 39 self.not_full = _threading.Condition(self.mutex) 42 self.all_tasks_done = _threading.Condition(self.mutex) 88 self.mutex.acquire() 90 self.mutex.release( [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
Queue.py | 29 # mutex must be held whenever the queue is mutating. All methods 30 # that acquire mutex must release it before returning. mutex 32 # releasing the conditions also acquires and releases mutex. 33 self.mutex = _threading.Lock() 36 self.not_empty = _threading.Condition(self.mutex) 39 self.not_full = _threading.Condition(self.mutex) 42 self.all_tasks_done = _threading.Condition(self.mutex) 88 self.mutex.acquire() 90 self.mutex.release( [all...] |
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
task_io_service.ipp | 50 mutex::scoped_lock* lock_; 78 mutex::scoped_lock* lock_; 98 mutex::scoped_lock lock(mutex_); 117 mutex::scoped_lock lock(mutex_); 139 mutex::scoped_lock lock(mutex_); 161 mutex::scoped_lock lock(mutex_); 179 mutex::scoped_lock lock(mutex_); 208 mutex::scoped_lock lock(mutex_); 222 mutex::scoped_lock lock(mutex_); 228 mutex::scoped_lock lock(mutex_) [all...] |
/hardware/intel/common/libwsbm/src/ |
wsbm_fencemgr.c | 48 struct _WsbmMutex mutex; member in struct:_WsbmFenceClass 53 * Note: The struct _WsbmFenceMgr::Mutex should never be held 61 * Constant members. Need no mutex protection. 67 * Atomic members. No mutex protection. 73 * These members are protected by this->mutex 84 * These members are constant and need no mutex protection. 86 * mutex protection, that we don't care about. 95 * Atomic members. No mutex protection. note that 104 * These members are protected by mgr->mutex. 135 ret = WSBM_MUTEX_INIT(&fc->mutex); [all...] |
/system/core/libutils/ |
Threads.cpp | 340 * Mutex class 348 Mutex::Mutex() 358 Mutex::Mutex(const char* name) 369 Mutex::Mutex(int type, const char* name) 380 Mutex::~Mutex() 385 status_t Mutex::lock( [all...] |
/development/ndk/platforms/android-3/include/ |
pthread.h | 166 int pthread_mutex_init(pthread_mutex_t *mutex, 168 int pthread_mutex_destroy(pthread_mutex_t *mutex); 169 int pthread_mutex_lock(pthread_mutex_t *mutex); 170 int pthread_mutex_unlock(pthread_mutex_t *mutex); 171 int pthread_mutex_trylock(pthread_mutex_t *mutex); 172 int pthread_mutex_timedlock(pthread_mutex_t *mutex, struct timespec* ts); 179 int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex); 181 pthread_mutex_t * mutex, 189 pthread_mutex_t *mutex, 193 pthread_mutex_t * mutex, [all...] |
/external/llvm/include/llvm/Support/ |
RWMutex.h | 86 /// SmartMutex - An R/W mutex with a compile time constant parameter that 87 /// indicates whether this mutex should become a no-op when we're not 148 SmartRWMutex<mt_only>& mutex; member in struct:llvm::sys::SmartScopedReader 150 explicit SmartScopedReader(SmartRWMutex<mt_only>& m) : mutex(m) { 151 mutex.lock_shared(); 155 mutex.unlock_shared(); 163 SmartRWMutex<mt_only>& mutex; member in struct:llvm::sys::SmartScopedWriter 165 explicit SmartScopedWriter(SmartRWMutex<mt_only>& m) : mutex(m) { 166 mutex.lock(); 170 mutex.unlock() [all...] |
/external/mesa3d/src/gallium/auxiliary/pipebuffer/ |
pb_bufmgr_mm.c | 56 pipe_mutex mutex; member in struct:mm_pb_manager 102 pipe_mutex_lock(mm->mutex); 105 pipe_mutex_unlock(mm->mutex); 187 pipe_mutex_lock(mm->mutex); 191 pipe_mutex_unlock(mm->mutex); 211 pipe_mutex_unlock(mm->mutex); 219 pipe_mutex_unlock(mm->mutex); 236 pipe_mutex_lock(mm->mutex); 243 pipe_mutex_unlock(mm->mutex); 269 pipe_mutex_init(mm->mutex); [all...] |
/prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/ |
pthread.h | 166 int pthread_mutex_init(pthread_mutex_t *mutex, 168 int pthread_mutex_destroy(pthread_mutex_t *mutex); 169 int pthread_mutex_lock(pthread_mutex_t *mutex); 170 int pthread_mutex_unlock(pthread_mutex_t *mutex); 171 int pthread_mutex_trylock(pthread_mutex_t *mutex); 172 int pthread_mutex_timedlock(pthread_mutex_t *mutex, struct timespec* ts); 179 int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex); 181 pthread_mutex_t * mutex, 189 pthread_mutex_t *mutex, 193 pthread_mutex_t * mutex, [all...] |
/prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/ |
pthread.h | 166 int pthread_mutex_init(pthread_mutex_t *mutex, 168 int pthread_mutex_destroy(pthread_mutex_t *mutex); 169 int pthread_mutex_lock(pthread_mutex_t *mutex); 170 int pthread_mutex_unlock(pthread_mutex_t *mutex); 171 int pthread_mutex_trylock(pthread_mutex_t *mutex); 172 int pthread_mutex_timedlock(pthread_mutex_t *mutex, struct timespec* ts); 179 int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex); 181 pthread_mutex_t * mutex, 189 pthread_mutex_t *mutex, 193 pthread_mutex_t * mutex, [all...] |
/development/ndk/platforms/android-9/include/ |
pthread.h | 166 int pthread_mutex_init(pthread_mutex_t *mutex, 168 int pthread_mutex_destroy(pthread_mutex_t *mutex); 169 int pthread_mutex_lock(pthread_mutex_t *mutex); 170 int pthread_mutex_unlock(pthread_mutex_t *mutex); 171 int pthread_mutex_trylock(pthread_mutex_t *mutex); 173 int pthread_mutex_timedlock(pthread_mutex_t *mutex, struct timespec* ts); 186 int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex); 188 pthread_mutex_t * mutex, 196 pthread_mutex_t *mutex, 203 pthread_mutex_t *mutex, [all...] |