Lines Matching defs:sem
54 void down(struct semaphore *sem) in down()
76 int down_interruptible(struct semaphore *sem) in down_interruptible()
102 int down_killable(struct semaphore *sem) in down_killable()
131 int down_trylock(struct semaphore *sem) in down_trylock()
156 int down_timeout(struct semaphore *sem, long timeout) in down_timeout()
179 void up(struct semaphore *sem) in up()
205 static inline int __sched __down_common(struct semaphore *sem, long state, in __down_common()
236 static noinline void __sched __down(struct semaphore *sem) in __down()
241 static noinline int __sched __down_interruptible(struct semaphore *sem) in __down_interruptible()
246 static noinline int __sched __down_killable(struct semaphore *sem) in __down_killable()
251 static noinline int __sched __down_timeout(struct semaphore *sem, long timeout) in __down_timeout()
256 static noinline void __sched __up(struct semaphore *sem) in __up()