HomeSort by relevance Sort by last modified time
    Searched defs:lock (Results 151 - 175 of 1530) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/linux/
blockgroup_lock.h 21 spinlock_t lock; member in struct:bgl_lock
28 #define sb_bgl_lock(sb, block_group) (&(sb)->s_blockgroup_lock.locks[(block_group) & (NR_BG_LOCKS-1)].lock)
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/
blockgroup_lock.h 21 spinlock_t lock; member in struct:bgl_lock
28 #define sb_bgl_lock(sb, block_group) (&(sb)->s_blockgroup_lock.locks[(block_group) & (NR_BG_LOCKS-1)].lock)
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/
blockgroup_lock.h 21 spinlock_t lock; member in struct:bgl_lock
28 #define sb_bgl_lock(sb, block_group) (&(sb)->s_blockgroup_lock.locks[(block_group) & (NR_BG_LOCKS-1)].lock)
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/
blockgroup_lock.h 21 spinlock_t lock; member in struct:bgl_lock
28 #define sb_bgl_lock(sb, block_group) (&(sb)->s_blockgroup_lock.locks[(block_group) & (NR_BG_LOCKS-1)].lock)
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
blockgroup_lock.h 21 spinlock_t lock; member in struct:bgl_lock
28 #define sb_bgl_lock(sb, block_group) (&(sb)->s_blockgroup_lock.locks[(block_group) & (NR_BG_LOCKS-1)].lock)
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
blockgroup_lock.h 21 spinlock_t lock; member in struct:bgl_lock
28 #define sb_bgl_lock(sb, block_group) (&(sb)->s_blockgroup_lock.locks[(block_group) & (NR_BG_LOCKS-1)].lock)
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
blockgroup_lock.h 21 spinlock_t lock; member in struct:bgl_lock
28 #define sb_bgl_lock(sb, block_group) (&(sb)->s_blockgroup_lock.locks[(block_group) & (NR_BG_LOCKS-1)].lock)
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
blockgroup_lock.h 21 spinlock_t lock; member in struct:bgl_lock
28 #define sb_bgl_lock(sb, block_group) (&(sb)->s_blockgroup_lock.locks[(block_group) & (NR_BG_LOCKS-1)].lock)
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
blockgroup_lock.h 21 spinlock_t lock; member in struct:bgl_lock
28 #define sb_bgl_lock(sb, block_group) (&(sb)->s_blockgroup_lock.locks[(block_group) & (NR_BG_LOCKS-1)].lock)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mutex.py 6 representing functions (or methods) waiting to acquire the lock.
9 implying it now has the lock.
12 for lock, where a function is called once the lock is aquired.
31 """Atomic test-and-set -- grab the lock if it is not set,
39 def lock(self, function, argument): member in class:mutex
40 """Lock a mutex, call the function with supplied argument
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mutex.py 6 representing functions (or methods) waiting to acquire the lock.
9 implying it now has the lock.
12 for lock, where a function is called once the lock is aquired.
31 """Atomic test-and-set -- grab the lock if it is not set,
39 def lock(self, function, argument): member in class:mutex
40 """Lock a mutex, call the function with supplied argument
  /libcore/luni/src/main/java/java/util/concurrent/
DelayQueue.java 44 private final transient ReentrantLock lock = new ReentrantLock(); field in class:DelayQueue
70 private final Condition available = lock.newCondition();
108 final ReentrantLock lock = this.lock; local
109 lock.lock();
118 lock.unlock();
155 final ReentrantLock lock = this.lock; local
156 lock.lock()
176 final ReentrantLock lock = this.lock; local
221 final ReentrantLock lock = this.lock; local
271 final ReentrantLock lock = this.lock; local
281 final ReentrantLock lock = this.lock; local
312 final ReentrantLock lock = this.lock; local
362 final ReentrantLock lock = this.lock; local
395 final ReentrantLock lock = this.lock; local
440 final ReentrantLock lock = this.lock; local
454 final ReentrantLock lock = this.lock; local
467 final ReentrantLock lock = this.lock; local
    [all...]
  /frameworks/testing/uiautomator/utils/SleepUtils/AlarmService/src/com/android/testing/alarmservice/
AlarmImpl.java 43 Log.d(LOG_TAG, "AlarmService prepared, wake lock acquired");
56 Log.d(LOG_TAG, String.format("Alarm set: %d, giving up wake lock", atTime));
57 Object lock = WakeUpController.getController().getWakeSync(); local
58 // release wakelock and wait for the lock to be poked from the broadcast receiver
60 // does not really matter if device enters suspend before we start waiting on lock
61 synchronized (lock) {
63 lock.wait();
  /bionic/libc/kernel/common/linux/
mempool.h 27 spinlock_t lock; member in struct:mempool_s
  /bootable/recovery/minadbd/
usb_linux_client.c 37 adb_mutex_t lock; member in struct:usb_handle
52 adb_mutex_lock(&usb->lock);
54 adb_cond_wait(&usb->notify, &usb->lock);
55 adb_mutex_unlock(&usb->lock);
121 adb_mutex_init(&h->lock, 0);
144 adb_mutex_lock(&h->lock);
150 adb_mutex_unlock(&h->lock);
  /dalvik/vm/
LinearAlloc.h 35 pthread_mutex_t lock; /* controls updates to this struct */ member in struct:LinearAllocHdr
  /development/ndk/platforms/android-3/include/linux/
mempool.h 23 spinlock_t lock; member in struct:mempool_s
  /device/asus/flo/camera/QCamera2/stack/common/
cam_queue.h 40 pthread_mutex_t lock; member in struct:__anon1634
45 pthread_mutex_init(&queue->lock, NULL);
62 pthread_mutex_lock(&queue->lock);
65 pthread_mutex_unlock(&queue->lock);
77 pthread_mutex_lock(&queue->lock);
85 pthread_mutex_unlock(&queue->lock);
101 pthread_mutex_lock(&queue->lock);
121 pthread_mutex_unlock(&queue->lock);
128 pthread_mutex_destroy(&queue->lock);
  /external/chromium/chrome/browser/content_settings/
content_settings_base_provider.h 13 #include "base/synchronization/lock.h"
107 base::Lock& lock() const { function in class:content_settings::BaseProvider
129 mutable base::Lock lock_;
  /external/chromium_org/net/cert/
cert_database_nss.cc 99 crypto::AutoNSSWriteLock lock; local
  /external/chromium_org/ppapi/proxy/
plugin_resource_tracker_unittest.cc 44 ProxyAutoLock lock; local
ppp_messaging_proxy_unittest.cc 57 ProxyAutoLock lock; local
  /external/chromium_org/ppapi/shared_impl/
ppb_url_util_shared.cc 49 ProxyAutoLock lock; local
61 ProxyAutoLock lock; local
76 ProxyAutoLock lock; local
proxy_lock.cc 8 #include "base/synchronization/lock.h"
14 base::LazyInstance<base::Lock>::Leaky
21 // Simple single-thread deadlock detector for the proxy lock.
22 // |true| when the current thread has the lock.
27 base::Lock* ProxyLock::Get() {
33 // Functions below should only access the lock via Get to ensure that they don't
34 // try to use the lock on the host side of the proxy, where locking is
40 base::Lock* lock = Get(); local
41 if (lock) {
53 base::Lock* lock = Get(); local
66 base::Lock* lock = Get(); local
96 ProxyAutoUnlock lock; local
    [all...]
resource_tracker_unittest.cc 63 ProxyAutoLock lock; local
86 ProxyAutoLock lock; local
105 ProxyAutoLock lock; local

Completed in 349 milliseconds

1 2 3 4 5 67 8 91011>>