Home
last modified time | relevance | path

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

/webrtc/webrtc/src/rtp_transceiver/rtp_receiver/
H A Dmod.rs30 pub enum State { enum
51 v if v == State::Started as u8 => State::Started, in from()
52 v if v == State::Paused as u8 => State::Paused, in from()
53 v if v == State::Stopped as u8 => State::Stopped, in from()
75 impl State { implementation
168 State::wait_for(&mut state_watch_rx, &[State::Started, State::Paused]).await?; in read()
198 State::wait_for(&mut state_watch_rx, &[State::Started, State::Paused]).await?; in read_simulcast()
366 State::Unstarted => State::transition(State::UnstartedPaused, &self.state_tx), in pause()
367 State::Started => State::transition(State::Paused, &self.state_tx), in pause()
376 State::UnstartedPaused => State::transition(State::Unstarted, &self.state_tx), in resume()
[all …]
/webrtc/dtls/src/flight/
H A Dmod.rs75 state: &mut State, in parse() argument
82 state: &mut State, in generate() argument
H A Dflight2.rs31 state: &mut State, in parse() argument
110 state: &mut State, in generate() argument
H A Dflight6.rs30 state: &mut State, in parse() argument
72 state: &mut State, in generate() argument
H A Dflight1.rs40 state: &mut State, in parse() argument
120 state: &mut State, in generate() argument
H A Dflight0.rs30 state: &mut State, in parse() argument
184 state: &mut State, in generate() argument
H A Dflight3.rs44 state: &mut State, in parse() argument
348 state: &mut State, in generate() argument
415 state: &mut State, in handle_server_key_exchange() argument
H A Dflight5.rs42 state: &mut State, in parse() argument
177 state: &mut State, in generate() argument
602 state: &mut State, in initalize_cipher_suite() argument
H A Dflight4.rs48 state: &mut State, in parse() argument
499 state: &mut State, in generate() argument
779 let mut state = State { in test_flight4_process_certificateverify()
/webrtc/dtls/src/
H A Dstate.rs20 pub struct State { struct
67 impl Default for State { argument
69 State { in default()
103 impl State { implementation
105 let mut state = State::default(); in clone()
253 impl KeyingMaterialExporter for State { implementation
/webrtc/webrtc/src/
H A Derror.rs324 from: rtp_receiver::State,
325 to: rtp_receiver::State,
/webrtc/dtls/src/conn/
H A Dmod.rs75 pub(crate) state: State, // Internal state
148 initial_state: Option<State>, in new() argument
245 State { in new()
486 pub async fn connection_state(&self) -> State { in connection_state() argument
H A Dconn_test.rs403 state: State { in test_export_keying_material()