HomeSort by relevance Sort by last modified time
    Searched full:lock (Results 101 - 125 of 1923) sorted by null

1 2 3 45 6 7 8 91011>>

  /system/core/libcutils/
atomic-android-sh.c 107 pthread_mutex_t* lock = SWAP_LOCK(addr); local
109 pthread_mutex_lock(lock);
117 pthread_mutex_unlock(lock);
123 pthread_mutex_t* lock = SWAP_LOCK(addr); local
125 pthread_mutex_lock(lock);
130 pthread_mutex_unlock(lock);
137 pthread_mutex_t* lock = SWAP_LOCK(addr); local
139 pthread_mutex_lock(lock);
147 pthread_mutex_unlock(lock);
153 pthread_mutex_t* lock = SWAP_LOCK(addr) local
    [all...]
  /cts/tools/host/src/com/android/cts/
HostLock.java 26 * Host lock to make sure just one CTS host is running.
34 * Lock the host.
38 public static boolean lock() { method in class:HostLock
57 * Release the host lock.
68 // On systems with permissions, it's possible for this lock file
69 // (depending on the default permissions set) to lock other users
  /bionic/libc/kernel/arch-arm/asm/
spinlock_types.h 20 volatile unsigned int lock; member in struct:__anon76
26 volatile unsigned int lock; member in struct:__anon77
  /bionic/libc/kernel/common/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)
notifier.h 25 spinlock_t lock; member in struct:atomic_notifier_head
38 #define ATOMIC_INIT_NOTIFIER_HEAD(name) do { spin_lock_init(&(name)->lock); (name)->head = NULL; } while (0)
42 #define ATOMIC_NOTIFIER_INIT(name) { .lock = __SPIN_LOCK_UNLOCKED(name.lock), .head = NULL }
  /external/kernel-headers/original/asm-x86/
mman.h 16 #define MCL_CURRENT 1 /* lock all current mappings */
17 #define MCL_FUTURE 2 /* lock all future mappings */
mmu.h 19 struct mutex lock; member in struct:__anon2864
  /external/kernel-headers/original/linux/
lockdep.h 19 * Lock-class usage-state bits:
60 * Lock-classes are keyed via unique addresses, by embedding the
62 * static locks we use the lock address itself as the key.)
73 * The lock-class itself:
82 * global list of all lock-classes:
96 * These fields represent a directed graph of lock dependencies,
118 * Map the lock object (the lock instance) to the lock-class object.
119 * This is embedded into specific lock instances
    [all...]
  /ndk/build/platforms/android-3/arch-arm/usr/include/asm/
spinlock_types.h 20 volatile unsigned int lock; member in struct:__anon9103
26 volatile unsigned int lock; member in struct:__anon9104
  /ndk/build/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)
  /ndk/build/platforms/android-4/arch-arm/usr/include/asm/
spinlock_types.h 20 volatile unsigned int lock; member in struct:__anon9457
26 volatile unsigned int lock; member in struct:__anon9458
  /ndk/build/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)
  /ndk/build/platforms/android-5/arch-arm/usr/include/asm/
spinlock_types.h 20 volatile unsigned int lock; member in struct:__anon9811
26 volatile unsigned int lock; member in struct:__anon9812
  /ndk/build/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)
  /ndk/build/platforms/android-5/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)
  /ndk/build/platforms/android-8/arch-arm/usr/include/asm/
spinlock_types.h 20 volatile unsigned int lock; member in struct:__anon10591
26 volatile unsigned int lock; member in struct:__anon10592
  /ndk/build/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)
  /ndk/build/platforms/android-8/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)
  /external/guava/src/com/google/common/util/concurrent/
AbstractService.java 44 private final ReentrantLock lock = new ReentrantLock(); field in class:AbstractService
51 * shutdownWhenStartupFinishes is true. Guarded by {@code lock}.
57 * up. Guarded by {@code lock}.
87 lock.lock();
97 lock.unlock();
104 lock.lock();
121 lock.unlock();
158 lock.lock()
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java 65 /** The lock protecting all mutators */
66 transient final ReentrantLock lock = new ReentrantLock(); field in class:CopyOnWriteArrayList
370 final ReentrantLock lock = this.lock; local
371 lock.lock();
387 lock.unlock();
398 final ReentrantLock lock = this.lock; local
399 lock.lock()
420 final ReentrantLock lock = this.lock; local
453 final ReentrantLock lock = this.lock; local
489 final ReentrantLock lock = this.lock; local
536 final ReentrantLock lock = this.lock; local
567 final ReentrantLock lock = this.lock; local
624 final ReentrantLock lock = this.lock; local
664 final ReentrantLock lock = this.lock; local
705 final ReentrantLock lock = this.lock; local
733 final ReentrantLock lock = this.lock; local
788 final ReentrantLock lock = this.lock; local
1059 final ReentrantLock lock = this.lock; local
1119 final ReentrantLock lock = l.lock; local
1133 final ReentrantLock lock = l.lock; local
1145 final ReentrantLock lock = l.lock; local
1156 final ReentrantLock lock = l.lock; local
1171 final ReentrantLock lock = l.lock; local
1184 final ReentrantLock lock = l.lock; local
1207 final ReentrantLock lock = l.lock; local
1218 final ReentrantLock lock = l.lock; local
1232 final ReentrantLock lock = l.lock; local
    [all...]
  /external/bluetooth/glib/glib/
gthread.c 630 /* the lock makes sure, that thread->system_thread is written,
784 g_static_rw_lock_init (GStaticRWLock* lock)
788 g_return_if_fail (lock);
790 *lock = init_lock;
802 g_static_rw_lock_signal (GStaticRWLock* lock)
804 if (lock->want_to_write && lock->write_cond)
805 g_cond_signal (lock->write_cond);
806 else if (lock->want_to_read && lock->read_cond
    [all...]
  /external/webkit/WebCore/bindings/js/
ScriptObject.cpp 65 JSLock lock(SilenceAssertionsOnly);
77 JSLock lock(SilenceAssertionsOnly);
85 JSLock lock(SilenceAssertionsOnly);
93 JSLock lock(SilenceAssertionsOnly);
101 JSLock lock(SilenceAssertionsOnly);
109 JSLock lock(SilenceAssertionsOnly);
117 JSLock lock(SilenceAssertionsOnly);
125 JSLock lock(SilenceAssertionsOnly);
133 JSLock lock(SilenceAssertionsOnly);
141 JSLock lock(SilenceAssertionsOnly)
    [all...]
  /frameworks/base/media/libmediaplayerservice/
MediaRecorderClient.cpp 65 Mutex::Autolock lock(mLock);
76 Mutex::Autolock lock(mLock);
90 Mutex::Autolock lock(mLock);
104 Mutex::Autolock lock(mLock);
115 Mutex::Autolock lock(mLock);
126 Mutex::Autolock lock(mLock);
137 Mutex::Autolock lock(mLock);
148 Mutex::Autolock lock(mLock);
159 Mutex::Autolock lock(mLock);
170 Mutex::Autolock lock(mLock)
    [all...]
  /dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
IOUtil.java 50 CharBuffer chars, CharsetDecoder decoder, Object lock)
52 synchronized (lock) {
72 CharsetDecoder decoder, Object lock) throws IOException {
73 synchronized (lock) {
145 CharsetEncoder encoder, Object lock) throws IOException {
148 convert(lock, encoder, bytes, chars, out);
155 ByteBuffer bytes, CharsetEncoder encoder, Object lock)
157 synchronized (lock) {
163 convert(lock, encoder, bytes, chars, out);
172 CharsetEncoder encoder, Object lock) throws IOException
    [all...]
  /external/clearsilver/man/man3/
dictNext.3 31 plock - place for value lock (or NULL).
38 the lock returned in <plock> will be associated with
39 the returned value. Until this lock is passed to
46 plock - set to value lock.

Completed in 169 milliseconds

1 2 3 45 6 7 8 91011>>