Lines Matching refs:timeout

31 	unsigned long		timeout;  member
310 #define __wait_event_timeout(wq, condition, timeout) \ argument
312 TASK_UNINTERRUPTIBLE, 0, timeout, \
334 #define wait_event_timeout(wq, condition, timeout) \ argument
336 long __ret = timeout; \
339 __ret = __wait_event_timeout(wq, condition, timeout); \
343 #define __wait_event_freezable_timeout(wq, condition, timeout) \ argument
345 TASK_INTERRUPTIBLE, 0, timeout, \
352 #define wait_event_freezable_timeout(wq, condition, timeout) \ argument
354 long __ret = timeout; \
357 __ret = __wait_event_freezable_timeout(wq, condition, timeout); \
414 #define __wait_event_interruptible_timeout(wq, condition, timeout) \ argument
416 TASK_INTERRUPTIBLE, 0, timeout, \
439 #define wait_event_interruptible_timeout(wq, condition, timeout) \ argument
441 long __ret = timeout; \
445 condition, timeout); \
449 #define __wait_event_hrtimeout(wq, condition, timeout, state) \ argument
457 if ((timeout).tv64 != KTIME_MAX) \
458 hrtimer_start_range_ns(&__t.timer, timeout, \
490 #define wait_event_hrtimeout(wq, condition, timeout) \ argument
495 __ret = __wait_event_hrtimeout(wq, condition, timeout, \
516 #define wait_event_interruptible_hrtimeout(wq, condition, timeout) \ argument
521 __ret = __wait_event_hrtimeout(wq, condition, timeout, \
867 lock, timeout) \
869 TASK_INTERRUPTIBLE, 0, timeout, \
899 timeout) \
901 long __ret = timeout; \
904 wq, condition, lock, timeout); \
916 long wait_woken(wait_queue_t *wait, unsigned mode, long timeout);
1023 wait_on_bit_timeout(void *word, int bit, unsigned mode, unsigned long timeout) in wait_on_bit_timeout() argument
1030 mode, timeout); in wait_on_bit_timeout()