/bionic/libc/kernel/common/linux/ |
D | spinlock_api_up.h | 26 #define assert_spin_locked(lock) do { (void)(lock); } while (0) argument 27 #define __LOCK(lock) do { preempt_disable(); __acquire(lock); (void)(lock); } while (0) argument 29 #define __LOCK_BH(lock) do { local_bh_disable(); __LOCK(lock); } while (0) argument 30 #define __LOCK_IRQ(lock) do { local_irq_disable(); __LOCK(lock); } while (0) argument 31 #define __LOCK_IRQSAVE(lock, flags) do { local_irq_save(flags); __LOCK(lock); } while (0) argument 32 #define __UNLOCK(lock) do { preempt_enable(); __release(lock); (void)(lock); } while (0) argument 34 #define __UNLOCK_BH(lock) do { preempt_enable_no_resched(); local_bh_enable(); __release(lock); (… argument 35 #define __UNLOCK_IRQ(lock) do { local_irq_enable(); __UNLOCK(lock); } while (0) argument 36 #define __UNLOCK_IRQRESTORE(lock, flags) do { local_irq_restore(flags); __UNLOCK(lock); } while (… argument 37 #define _spin_lock(lock) __LOCK(lock) argument [all …]
|
D | spinlock.h | 37 #define spin_lock_init(lock) do { *(lock) = SPIN_LOCK_UNLOCKED; } while (0) argument 39 #define rwlock_init(lock) do { *(lock) = RW_LOCK_UNLOCKED; } while (0) argument 40 #define spin_is_locked(lock) __raw_spin_is_locked(&(lock)->raw_lock) argument 41 #define spin_unlock_wait(lock) __raw_spin_unlock_wait(&(lock)->raw_lock) argument 44 #define _raw_spin_lock(lock) __raw_spin_lock(&(lock)->raw_lock) argument 45 #define _raw_spin_lock_flags(lock, flags) __raw_spin_lock_flags(&(lock)->raw_lock, *(flags)) argument 46 #define _raw_spin_trylock(lock) __raw_spin_trylock(&(lock)->raw_lock) argument 47 #define _raw_spin_unlock(lock) __raw_spin_unlock(&(lock)->raw_lock) argument 59 #define spin_trylock(lock) __cond_lock(_spin_trylock(lock)) argument 60 #define read_trylock(lock) __cond_lock(_read_trylock(lock)) argument [all …]
|
D | spinlock_up.h | 25 #define __raw_spin_is_locked(lock) ((void)(lock), 0) argument 26 #define __raw_spin_lock(lock) do { (void)(lock); } while (0) argument 27 #define __raw_spin_unlock(lock) do { (void)(lock); } while (0) argument 29 #define __raw_spin_trylock(lock) ({ (void)(lock); 1; }) argument 30 #define __raw_read_can_lock(lock) (((void)(lock), 1)) argument 31 #define __raw_write_can_lock(lock) (((void)(lock), 1)) argument 32 #define __raw_spin_unlock_wait(lock) do { cpu_relax(); } while (__raw_spin_is_locked(lock)) argument
|
D | seqlock.h | 26 spinlock_t lock; member 40 #define write_seqlock_irqsave(lock, flags) do { local_irq_save(flags); write_seqlock(lock); } whi… argument 41 #define write_seqlock_irq(lock) do { local_irq_disable(); write_seqlock(lock); } while (0) argument 42 #define write_seqlock_bh(lock) do { local_bh_disable(); write_seqlock(lock); } while (0) argument 44 #define write_sequnlock_irqrestore(lock, flags) do { write_sequnlock(lock); local_irq_restore(fla… argument 45 #define write_sequnlock_irq(lock) do { write_sequnlock(lock); local_irq_enable(); } while(0) argument 46 #define write_sequnlock_bh(lock) do { write_sequnlock(lock); local_bh_enable(); } while(0) argument 47 #define read_seqbegin_irqsave(lock, flags) ({ local_irq_save(flags); read_seqbegin(lock); }) argument 49 #define read_seqretry_irqrestore(lock, iv, flags) ({ int ret = read_seqretry(lock, iv); local… argument
|
D | notifier.h | 32 spinlock_t lock; member 45 #define ATOMIC_INIT_NOTIFIER_HEAD(name) do { spin_lock_init(&(name)->lock); (name)->head = NULL… 49 #define ATOMIC_NOTIFIER_INIT(name) { .lock = __SPIN_LOCK_UNLOCKED(name.lock), .head = NULL }
|
D | blockgroup_lock.h | 26 spinlock_t lock; member 32 …_bgl_lock(sb, block_group) (&(sb)->s_blockgroup_lock.locks[(block_group) & (NR_BG_LOCKS-1)].lock)
|
D | lockdep.h | 31 #define lockdep_init_map(lock, name, key) do { (void)(key); } while (0) argument 32 #define lockdep_set_class(lock, key) do { (void)(key); } while (0) argument 34 #define lockdep_set_class_and_name(lock, key, name) do { (void)(key); } while (0) argument
|
D | mutex.h | 46 #define mutex_lock_nested(lock, subclass) mutex_lock(lock) argument
|
D | mempool.h | 27 spinlock_t lock; member
|
D | irq.h | 100 spinlock_t lock; member
|
D | skbuff.h | 56 spinlock_t lock; member
|
/bionic/libc/kernel/arch-arm/asm/ |
D | spinlock.h | 25 #define __raw_spin_is_locked(x) ((x)->lock != 0) 26 #define __raw_spin_unlock_wait(lock) do { while (__raw_spin_is_locked(lock)) cpu_relax(); } while… argument 27 #define __raw_spin_lock_flags(lock, flags) __raw_spin_lock(lock) argument 30 #define __raw_write_can_lock(x) ((x)->lock == 0x80000000) 31 #define __raw_read_can_lock(x) ((x)->lock < 0x80000000)
|
D | spinlock_types.h | 26 volatile unsigned int lock; member 31 volatile unsigned int lock; member
|
/bionic/libc/kernel/arch-x86/asm/ |
D | spinlock_32.h | 32 #define _raw_spin_relax(lock) cpu_relax() argument 34 #define _raw_read_relax(lock) cpu_relax() argument 35 #define _raw_write_relax(lock) cpu_relax() argument
|
D | mmu.h | 27 struct mutex lock; member
|
D | spinlock_types.h | 31 unsigned int lock; member
|
/bionic/libc/bionic/ |
D | pthread-rwlocks.c | 124 ret = pthread_mutex_init(&rwlock->lock, lock_attr); in pthread_rwlock_init() 130 pthread_mutex_destroy(&rwlock->lock); in pthread_rwlock_init() 151 pthread_mutex_destroy(&rwlock->lock); in pthread_rwlock_destroy() 211 pthread_mutex_lock(&rwlock->lock); in pthread_rwlock_tryrdlock() 216 pthread_mutex_unlock(&rwlock->lock); in pthread_rwlock_tryrdlock() 228 pthread_mutex_lock(&rwlock->lock); in pthread_rwlock_timedrdlock() 233 ret = pthread_cond_timedwait(&rwlock->cond, &rwlock->lock, abs_timeout); in pthread_rwlock_timedrdlock() 241 pthread_mutex_unlock(&rwlock->lock); in pthread_rwlock_timedrdlock() 258 pthread_mutex_lock(&rwlock->lock); in pthread_rwlock_trywrlock() 266 pthread_mutex_unlock(&rwlock->lock); in pthread_rwlock_trywrlock() [all …]
|
D | pthread-timers.c | 121 pthread_mutex_t lock; member 135 pthread_mutex_init( &t->lock, NULL ); in thr_timer_table_init() 154 pthread_mutex_lock(&t->lock); in thr_timer_table_alloc() 161 pthread_mutex_unlock(&t->lock); in thr_timer_table_alloc() 169 pthread_mutex_lock( &t->lock ); in thr_timer_table_free() 174 pthread_mutex_unlock( &t->lock ); in thr_timer_table_free() 183 pthread_mutex_lock(&t->lock); in thr_timer_table_start_stop() 194 pthread_mutex_unlock(&t->lock); in thr_timer_table_start_stop() 216 pthread_mutex_lock(&t->lock); in thr_timer_table_from_id() 229 pthread_mutex_unlock(&t->lock); in thr_timer_table_from_id()
|
D | malloc_debug_check.cpp | 115 static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER; variable 186 ScopedPthreadMutexLocker locker(&lock); in add() 200 ScopedPthreadMutexLocker locker(&lock); in del() 307 ScopedPthreadMutexLocker locker(&lock); in del_leak()
|
/bionic/libc/kernel/common/linux/lockd/ |
D | xdr.h | 52 struct nlm_lock lock; member 67 struct nlm_lock lock; member
|
/bionic/libc/kernel/common/linux/raid/ |
D | md_k.h | 214 …lock, cmd) do { wait_queue_t __wait; init_waitqueue_entry(&__wait, current); add_wait_que… argument 215 …it_event_lock_irq(wq, condition, lock, cmd) do { if (condition) break; __wait_event_lock_ir… argument
|
/bionic/libc/kernel/common/linux/mtd/ |
D | flashchip.h | 72 spinlock_t lock; member
|
D | blktrans.h | 34 struct mutex lock; member
|
/bionic/libc/kernel/common/linux/sunrpc/ |
D | sched.h | 154 spinlock_t lock; member 171 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_IN… 174 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_IN…
|
/bionic/libc/kernel/common/linux/mmc/ |
D | host.h | 111 spinlock_t lock; member
|