Home
last modified time | relevance | path

Searched refs:notify_tx (Results 1 – 8 of 8) sorted by relevance

/webrtc/examples/examples/play-from-disk-h264/
H A Dplay-from-disk-h264.rs137 let notify_tx = Arc::new(Notify::new()); in main() localVariable
138 let notify_video = notify_tx.clone(); in main()
139 let notify_audio = notify_tx.clone(); in main()
295 notify_tx.notify_waiters(); in main()
/webrtc/examples/examples/play-from-disk-vpx/
H A Dplay-from-disk-vpx.rs143 let notify_tx = Arc::new(Notify::new()); in main() localVariable
144 let notify_video = notify_tx.clone(); in main()
145 let notify_audio = notify_tx.clone(); in main()
306 notify_tx.notify_waiters(); in main()
/webrtc/examples/examples/insertable-streams/
H A Dinsertable-streams.rs147 let notify_tx = Arc::new(Notify::new()); in main() localVariable
148 let notify_video = notify_tx.clone(); in main()
203 notify_tx.notify_waiters(); in main()
/webrtc/webrtc/src/sctp_transport/
H A Dmod.rs94 notify_tx: Arc<Notify>, field
120 notify_tx: Arc::new(Notify::new()), in new()
151 _ = self.notify_tx.notified() => { in start()
178 notify_rx: self.notify_tx.clone(), in start()
210 self.notify_tx.notify_waiters(); in stop()
/webrtc/examples/examples/save-to-disk-h264/
H A Dsave-to-disk-h264.rs200 let notify_tx = Arc::new(Notify::new()); in main() localVariable
201 let notify_rx = notify_tx.clone(); in main()
263 notify_tx.notify_waiters(); in main()
/webrtc/examples/examples/save-to-disk-vpx/
H A Dsave-to-disk-vpx.rs225 let notify_tx = Arc::new(Notify::new()); in main() localVariable
226 let notify_rx = notify_tx.clone(); in main()
293 notify_tx.notify_waiters(); in main()
/webrtc/webrtc/src/data_channel/
H A Dmod.rs86 pub(crate) notify_tx: Arc<Notify>, field
115 notify_tx: Arc::new(Notify::new()), in new()
278 let notify_rx = self.notify_tx.clone(); in handle_open()
429 self.notify_tx.notify_waiters(); in close()
/webrtc/turn/src/allocation/
H A Dmod.rs252 if let Some(notify_tx) = &self.alloc_close_notify { in close()
253 let _ = notify_tx in close()