/frameworks/base/core/java/android/view/ |
SurfaceView.java | 500 mSurfaceLock.lock(); 655 surfaceView.mSurfaceLock.lock(); 806 mSurfaceLock.lock(); [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/ |
CodecTest.java | 56 private static final Object lock = new Object(); field in class:CodecTest 262 synchronized (lock) { 265 lock.wait(WAIT_FOR_COMMAND_TO_COMPLETE); 298 synchronized (lock) { 301 lock.wait(WAIT_FOR_COMMAND_TO_COMPLETE); 679 synchronized (lock) { 681 lock.notify(); 718 synchronized (lock) { 721 lock.wait(WAIT_FOR_COMMAND_TO_COMPLETE); 803 synchronized (lock) { [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
MediaAudioEffectTest.java | 58 private final Object lock = new Object(); field in class:MediaAudioEffectTest 353 synchronized(lock) { 355 lock.wait(1000); 368 synchronized(lock) { 371 lock.wait(1000); [all...] |
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
OldFileChannelTest.java | 239 FileLock lock = readWriteFileChannel.tryLock(tooBig, 1, false); local 241 lock.release(); 243 lock = readWriteFileChannel.tryLock(0, tooBig, false); 245 lock.release(); [all...] |
/packages/apps/Camera/src/com/android/camera/ |
CameraManager.java | 57 private static final int LOCK = 4; 155 case LOCK: 156 mCamera.lock(); 322 public void lock() { method in class:CameraManager.CameraProxy 324 mCameraHandler.sendEmptyMessage(LOCK);
|
/packages/apps/Camera2/src/com/android/camera/ |
AndroidCameraManagerImpl.java | 60 private static final int LOCK = 5; 225 case LOCK: 226 mCamera.lock(); 407 public void lock() { method in class:AndroidCameraManagerImpl.AndroidCameraProxyImpl 408 mCameraHandler.sendEmptyMessage(LOCK);
|
/bionic/libc/bionic/ |
malloc_debug_check.cpp | 115 static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER; variable 186 ScopedPthreadMutexLocker locker(&lock); 200 ScopedPthreadMutexLocker locker(&lock); 307 ScopedPthreadMutexLocker locker(&lock);
|
pthread-timers.c | 109 pthread_mutex_t mutex; /* lock */ 121 pthread_mutex_t lock; member in struct:thr_timer_table 135 pthread_mutex_init( &t->lock, NULL ); 154 pthread_mutex_lock(&t->lock); 161 pthread_mutex_unlock(&t->lock); 169 pthread_mutex_lock( &t->lock ); 174 pthread_mutex_unlock( &t->lock ); 183 pthread_mutex_lock(&t->lock); 194 pthread_mutex_unlock(&t->lock); 216 pthread_mutex_lock(&t->lock); [all...] |
/bionic/libc/kernel/common/linux/mmc/ |
host.h | 111 spinlock_t lock; member in struct:mmc_host
|
/cts/tests/tests/widget/src/android/widget/cts/ |
SlidingDrawerTest.java | 242 drawer.lock();
|
/development/ndk/platforms/android-3/include/linux/mmc/ |
host.h | 107 spinlock_t lock; member in struct:mmc_host
|
/device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/inc/ |
mm_jpeg.h | 55 pthread_mutex_t lock; member in struct:__anon1810 72 pthread_mutex_t lock; member in struct:__anon1812 104 pthread_mutex_t lock; member in struct:__anon1814 142 pthread_mutex_t lock; /* job lock */ member in struct:__anon1818 158 pthread_mutex_t job_lock; /* job lock */
|
/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::__anon1476::WorkQueue [all...] |
/external/chromium_org/base/synchronization/ |
condition_variable_unittest.cc | 15 #include "base/synchronization/lock.h" 62 // The WorkQueue::lock_, as accessed via WorkQueue::lock(), should be used for 74 // They should use the lock to get exclusive access. 88 // Worker threads can call them but not needed to acquire a lock. 89 Lock* lock(); 115 // Caller must acquire lock before calling. 120 // should not hold the lock when calling this method. 125 Lock lock_; 152 Lock lock local 175 Lock lock; local 218 Lock lock; local 594 Lock* WorkQueue::lock() { function in class:base::__anon3667::WorkQueue [all...] |
/external/chromium_org/components/breakpad/tools/ |
crash_service.cc | 164 base::AutoLock lock(sending_); 287 ProcessingLock lock; local 295 ProcessingLock lock; local 310 // thread takes the sending_ lock, so the sleep is just to give it a 313 base::AutoLock lock(self->sending_); 326 ProcessingLock lock; local 404 // Take the server lock while sending. This also prevent early 406 base::AutoLock lock(info->self->sending_);
|
/external/chromium_org/ppapi/proxy/ |
ppapi_proxy_test.cc | 167 // Some of the methods called during set-up check that the lock is held. 168 ProxyAutoLock lock; local 194 // Some of the methods called during set-up check that the lock is held. 195 ProxyAutoLock lock; local 215 // Some of the methods called during tear-down check that the lock is held. 216 ProxyAutoLock lock; local 334 // MessageLoopResource assumes that the proxy lock has been acquired. 478 // The host side of the proxy does not lock.
|
/external/chromium_org/third_party/icu/source/common/ |
normalizer2.cpp | 570 Mutex lock; local 579 Mutex lock; local
|
/external/guava/guava/src/com/google/common/collect/ |
ComputingConcurrentHashMap.java | 97 lock(); method
|
/external/jmdns/src/javax/jmdns/impl/ |
DNSStatefulObject.java | 146 this.lock(); 163 this.lock(); 179 this.lock(); 196 this.lock(); 219 this.lock(); 240 this.lock(); 260 this.lock(); 281 this.lock(); 301 this.lock();
|
/external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/ |
AwtPanel.java | 47 private final Object lock = new Object(); field in class:AwtPanel 59 synchronized (lock){ 77 synchronized (lock){ 87 synchronized (lock){ 98 synchronized (lock){ 129 synchronized (lock){ 143 synchronized (lock){ 218 synchronized (lock){ 222 // synchronized (lock){
|
/external/kernel-headers/original/linux/ |
irq.h | 131 * @lock: locking for SMP 155 spinlock_t lock; member in struct:irq_desc
|
sem.h | 133 spinlock_t lock; member in struct:sem_undo_list
|
wait.h | 51 spinlock_t lock; member in struct:__wait_queue_head 71 .lock = __SPIN_LOCK_UNLOCKED(name.lock), \ 437 * when one intends to set it, for instance, trying to lock bitflags.
|
/external/kernel-headers/original/linux/mmc/ |
host.h | 107 spinlock_t lock; /* card_busy lock */ member in struct:mmc_host
|
/external/kernel-headers/original/linux/netfilter/ |
x_tables.h | 258 /* Lock for the curtain */ 259 rwlock_t lock; member in struct:xt_table
|