Lines Matching refs:completion
10 struct completion struct
17 struct completion name = {0}; \ argument
23 void completion_init(struct completion *x);
24 void complete(struct completion *x);
25 void complete_all(struct completion *x);
26 void wait_for_completion(struct completion *x);
27 long wait_for_completion_timeout(struct completion *x, long timeout);
28 void wait_for_completion_interruptible(struct completion *x);
29 long wait_for_completion_interruptible_timeout(struct completion *x, long timeout);
30 void wait_for_multicompletion(struct completion x[], int n);
31 bool try_wait_for_completion(struct completion *x);
32 bool completion_done(struct completion *x);
40 struct completion *one_to_one;
41 struct completion *one_to_many;
42 struct completion *many_to_one;