Home
last modified time | relevance | path

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

/webrtc/srtp/src/session/
H A Dmod.rs33 streams_map: Arc<Mutex<HashMap<u32, Arc<Stream>>>>, field
75 let streams_map = Arc::new(Mutex::new(HashMap::new())); in new() localVariable
81 let cloned_streams_map = Arc::clone(&streams_map); in new()
115 streams_map, in new()
124 async fn close_stream(streams_map: &Arc<Mutex<HashMap<u32, Arc<Stream>>>>, ssrc: u32) { in close_stream()
125 let mut streams = streams_map.lock().await; in close_stream()
132 streams_map: &Arc<Mutex<HashMap<u32, Arc<Stream>>>>, in incoming()
159 Session::get_or_create_stream(streams_map, close_stream_tx.clone(), is_rtp, ssrc) in incoming()
185 streams_map: &Arc<Mutex<HashMap<u32, Arc<Stream>>>>, in get_or_create_stream()
190 let mut streams = streams_map.lock().await; in get_or_create_stream()
[all …]