Lines Matching refs:__ret
257 long __ret = timeout; \
259 __wait_event_timeout(wq, condition, __ret); \
260 __ret; \
298 int __ret = 0; \
300 __wait_event_interruptible(wq, condition, __ret); \
301 __ret; \
343 long __ret = timeout; \
345 __wait_event_interruptible_timeout(wq, condition, __ret); \
346 __ret; \
373 int __ret = 0; \
375 __wait_event_interruptible_exclusive(wq, condition, __ret);\
376 __ret; \
382 int __ret = 0; \
391 __ret = -ERESTARTSYS; \
406 __ret; \
563 int __ret = 0; \
565 __wait_event_killable(wq, condition, __ret); \
566 __ret; \