Lines Matching refs:notified
17 let mut notified = spawn(async { notify.notified().await }); in notify_notified_one() localVariable
20 assert_ready!(notified.poll()); in notify_notified_one()
26 let mut notified = spawn(async { notify.notified().await }); in notified_one_notify() localVariable
28 assert_pending!(notified.poll()); in notified_one_notify()
31 assert!(notified.is_woken()); in notified_one_notify()
32 assert_ready!(notified.poll()); in notified_one_notify()
38 let mut notified1 = spawn(async { notify.notified().await }); in notified_multi_notify()
39 let mut notified2 = spawn(async { notify.notified().await }); in notified_multi_notify()
58 let mut notified1 = spawn(async { notify.notified().await }); in notify_notified_multi()
59 let mut notified2 = spawn(async { notify.notified().await }); in notify_notified_multi()
73 let mut notified1 = spawn(async { notify.notified().await }); in notified_drop_notified_notify()
74 let mut notified2 = spawn(async { notify.notified().await }); in notified_drop_notified_notify()
90 let mut notified1 = spawn(async { notify.notified().await }); in notified_multi_notify_drop_one()
91 let mut notified2 = spawn(async { notify.notified().await }); in notified_multi_notify_drop_one()
128 notify.notified().await; in notify_in_drop_after_wake()
144 let mut notified1 = spawn(async { notify.notified().await }); in notify_one_after_dropped_all()
153 let mut notified2 = spawn(async { notify.notified().await }); in notify_one_after_dropped_all()
161 let mut future = spawn(notify.notified()); in test_notify_one_not_enabled()
170 let mut future = spawn(notify.notified()); in test_notify_one_after_enable()
182 let mut future = spawn(notify.notified()); in test_poll_after_enable()
191 let mut future = spawn(notify.notified()); in test_enable_after_poll()
204 let mut future1 = spawn(notify.notified()); in test_enable_consumes_permit()
207 let mut future2 = spawn(notify.notified()); in test_enable_consumes_permit()
218 let mut future = spawn(notify.notified()); in test_waker_update()