Home
last modified time | relevance | path

Searched refs:write_shutdown (Results 1 – 2 of 2) sorted by relevance

/webrtc/sctp/src/stream/
H A Dmod.rs80 pub(crate) write_shutdown: AtomicBool, field
102 .field("write_shutdown", &self.write_shutdown) in fmt()
136 write_shutdown: AtomicBool::new(false), in new()
288 if self.write_shutdown.load(Ordering::SeqCst) { in prepare_write()
378 if self.read_shutdown.load(Ordering::SeqCst) && self.write_shutdown.load(Ordering::SeqCst) { in shutdown()
383 self.write_shutdown.store(true, Ordering::SeqCst); in shutdown()
394 && self.write_shutdown.load(Ordering::SeqCst)) in shutdown()
/webrtc/sctp/src/association/
H A Dassociation_internal.rs307 s.write_shutdown.store(true, Ordering::SeqCst); in unregister_stream()