/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/ |
mempool.h | 23 spinlock_t lock; member in struct:mempool_s
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/ |
mempool.h | 23 spinlock_t lock; member in struct:mempool_s
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/ |
mempool.h | 23 spinlock_t lock; member in struct:mempool_s
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/ |
mempool.h | 23 spinlock_t lock; member in struct:mempool_s
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/ |
mempool.h | 23 spinlock_t lock; member in struct:mempool_s
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/ |
mempool.h | 23 spinlock_t lock; member in struct:mempool_s
|
/prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/ |
mempool.h | 23 spinlock_t lock; member in struct:mempool_s
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/ |
mempool.h | 23 spinlock_t lock; member in struct:mempool_s
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/ |
mempool.h | 23 spinlock_t lock; member in struct:mempool_s
|
/system/extras/tests/bionic/libc/common/ |
test_pthread_getcpuclockid.c | 36 static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER; variable 46 pthread_mutex_lock( &lock ); 51 pthread_mutex_unlock( &lock ); 62 pthread_mutex_unlock( &lock );
|
/external/clang/lib/Analysis/ |
ThreadSafety.cpp | 120 /// is built from an Expr* (i.e. calling a lock function). 122 /// Thread-safety analysis works by comparing lock expressions. Within the 131 /// of the same lock expression satisfies these criteria. 142 /// names when constructing a lock expression. 145 /// class C { Mutex Mu; void lock() EXCLUSIVE_LOCK_FUNCTION(this->Mu); }; 146 /// void myFunc(C *X) { ... X->lock() ... } 153 /// foo(MyL); // requires lock MyL->Mu to be held 157 /// Build a Decl sequence representing the lock from the given expression. 185 DeclSeq.clear(); // Mark as invalid lock expression. 192 /// \param D The declaration to which the lock/unlock attribute is attached [all...] |
/dalvik/vm/compiler/codegen/arm/Thumb2/ |
Gen.cpp | 211 * Handle simple case (thin lock) inline. If it's complicated, bail 212 * out to the heavyweight lock/unlock routines. We'll use dedicated 214 * to bail to dvm[Lock/Unlock]Object(self, object) 216 * r0 -> self pointer [arg0 for dvm[Lock/Unlock]Object 217 * r1 -> object [arg1 for dvm[Lock/Unlock]Object 218 * r2 -> intial contents of object->lock, later result of strex 220 * r7 -> temp to hold new lock value [unlock only] 223 * The result of the strex is 0 if we acquire the lock. 225 * See comments in Sync.c for the layout of the lock word. 228 * simple case is thin lock, held by no-one. For monitor exit [all...] |
/external/chromium/base/synchronization/ |
condition_variable_unittest.cc | 15 #include "base/synchronization/lock.h" 60 // The WorkQueue::lock_, as accessed via WorkQueue::lock(), should be used for 72 // They should use the lock to get exclusive access. 86 // Worker threads can call them but not needed to acquire a lock. 87 Lock* lock(); 113 // Caller must acquire lock before calling. 118 // should not hold the lock when calling this method. 123 Lock lock_; 150 Lock lock local 173 Lock lock; local 576 Lock* WorkQueue::lock() { function in class:base::__anon2374::WorkQueue [all...] |
/libcore/luni/src/main/java/java/io/ |
Writer.java | 41 protected Object lock; field in class:Writer 48 lock = this; 52 * Constructs a new {@code Writer} with {@code lock} used to synchronize 55 * @param lock 58 * if {@code lock} is {@code null}. 60 protected Writer(Object lock) { 61 if (lock == null) { 64 this.lock = lock; 125 synchronized (lock) { [all...] |
/hardware/ti/omap4xxx/camera/OMXCameraAdapter/ |
OMX3A.cpp | 83 Mutex::Autolock lock(m3ASettingsUpdateLock); 273 OMX_BOOL lock = OMX_FALSE; local 279 lock = OMX_TRUE; 287 if (mParameters3A.ExposureLock != lock) 289 mParameters3A.ExposureLock = lock; 290 CAMHAL_LOGDB("ExposureLock %d", lock); 298 OMX_BOOL lock = OMX_FALSE; local 304 lock = OMX_TRUE; 311 if (mParameters3A.WhiteBalanceLock != lock) 313 mParameters3A.WhiteBalanceLock = lock; 1323 OMX_IMAGE_CONFIG_LOCKTYPE lock; local 1355 OMX_IMAGE_CONFIG_LOCKTYPE lock; local 1387 OMX_IMAGE_CONFIG_LOCKTYPE lock; local 1418 OMX_IMAGE_CONFIG_LOCKTYPE lock; local [all...] |
/external/chromium/sdch/open-vcdiff/src/ |
mutex.h | 77 // look at the bool, and not try to lock/unlock until the bool makes 84 // state between a call to Lock() and a call to Unlock() (that would 85 // require a global constructor in one translation unit to call Lock() 105 typedef int MutexType; // to keep a lock-count 146 inline void Lock(); // Block if needed until free then acquire exclusively 147 inline void Unlock(); // Release a lock acquired via Lock() 149 inline bool TryLock(); // If free, Lock() and return true, else return false 152 // be implemented as synonyms to Lock() and Unlock(). So you can use 157 inline void WriterLock() { Lock(); } // Acquire an exclusive loc [all...] |
/bionic/libc/kernel/common/linux/lockd/ |
xdr.h | 45 struct nlm_lock lock; member in struct:nlm_args 59 struct nlm_lock lock; member in struct:nlm_res
|
/dalvik/vm/alloc/ |
DdmHeap.h | 34 * @param shouldLock If true, grab the heap lock. If false, 35 * the heap lock must already be held.
|
/development/ndk/platforms/android-3/include/linux/lockd/ |
xdr.h | 45 struct nlm_lock lock; member in struct:nlm_args 59 struct nlm_lock lock; member in struct:nlm_res
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
AuthenticatorTest.java | 135 final Object lock = new Object(); local 141 synchronized (lock) { 143 lock.notifyAll(); 159 synchronized (lock) { 162 lock.wait(); 169 synchronized (lock) { 177 synchronized (lock) { 188 synchronized (lock) {
|
/external/chromium/base/ |
at_exit.cc | 45 AutoLock lock(g_top_manager->lock_); 56 AutoLock lock(g_top_manager->lock_);
|
/external/chromium/base/threading/ |
thread_checker_impl.h | 10 #include "base/synchronization/lock.h" 36 mutable base::Lock lock_;
|
/external/chromium/chrome/browser/extensions/ |
extension_special_storage_policy.h | 12 #include "base/synchronization/lock.h" 57 base::Lock lock_; // Synchronize all access to the collections.
|
/external/chromium/chrome/browser/sync/engine/ |
all_status.h | 15 #include "base/synchronization/lock.h" 60 mutable base::Lock mutex_; // Protects all data members.
|
/external/chromium/chrome/common/deprecated/ |
event_sys.h | 14 class Lock; 32 template <typename EventTraits, typename NotifyLock = base::Lock,
|