Lines Matching defs:lock
20 # define rwlock_init(lock) \ argument
27 # define rwlock_init(lock) \ argument
52 #define read_trylock(lock) __cond_lock(lock, _raw_read_trylock(lock)) argument
53 #define write_trylock(lock) __cond_lock(lock, _raw_write_trylock(lock)) argument
55 #define write_lock(lock) _raw_write_lock(lock) argument
56 #define read_lock(lock) _raw_read_lock(lock) argument
59 #define write_lock_nested(lock, subclass) _raw_write_lock_nested(lock, subclass) argument
61 #define write_lock_nested(lock, subclass) _raw_write_lock(lock) argument
66 #define read_lock_irqsave(lock, flags) \ argument
71 #define write_lock_irqsave(lock, flags) \ argument
79 #define read_lock_irqsave(lock, flags) \ argument
84 #define write_lock_irqsave(lock, flags) \ argument
92 #define read_lock_irq(lock) _raw_read_lock_irq(lock) argument
93 #define read_lock_bh(lock) _raw_read_lock_bh(lock) argument
94 #define write_lock_irq(lock) _raw_write_lock_irq(lock) argument
95 #define write_lock_bh(lock) _raw_write_lock_bh(lock) argument
96 #define read_unlock(lock) _raw_read_unlock(lock) argument
97 #define write_unlock(lock) _raw_write_unlock(lock) argument
98 #define read_unlock_irq(lock) _raw_read_unlock_irq(lock) argument
99 #define write_unlock_irq(lock) _raw_write_unlock_irq(lock) argument
101 #define read_unlock_irqrestore(lock, flags) \ argument
106 #define read_unlock_bh(lock) _raw_read_unlock_bh(lock) argument
108 #define write_unlock_irqrestore(lock, flags) \ argument
113 #define write_unlock_bh(lock) _raw_write_unlock_bh(lock) argument
115 #define write_trylock_irqsave(lock, flags) \ argument
123 #define rwlock_is_contended(lock) \ argument
126 #define rwlock_is_contended(lock) ((void)(lock), 0) argument