Home
last modified time | relevance | path

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

/webrtc/webrtc/src/ice_transport/
H A Dice_transport_state.rs17 Checking, enumerator
59 ICE_TRANSPORT_STATE_CHECKING_STR => RTCIceTransportState::Checking, in from()
74 2 => Self::Checking, in from()
89 RTCIceTransportState::Checking => write!(f, "{ICE_TRANSPORT_STATE_CHECKING_STR}"), in fmt()
112 ConnectionState::Checking => RTCIceTransportState::Checking, in from()
127 RTCIceTransportState::Checking => ConnectionState::Checking, in to_ice()
147 (RTCIceTransportState::Checking, "checking"), in test_ice_transport_state_string()
168 (RTCIceTransportState::Checking, ConnectionState::Checking), in test_ice_transport_state_convert()
H A Dice_connection_state.rs18 Checking, enumerator
57 ICE_CONNECTION_STATE_CHECKING_STR => RTCIceConnectionState::Checking, in from()
72 2 => RTCIceConnectionState::Checking, in from()
87 RTCIceConnectionState::Checking => ICE_CONNECTION_STATE_CHECKING_STR, in fmt()
108 ("checking", RTCIceConnectionState::Checking), in test_new_ice_connection_state()
130 (RTCIceConnectionState::Checking, "checking"), in test_ice_connection_state_string()
/webrtc/ice/src/state/
H A Dmod.rs15 Checking, enumerator
44 Self::Checking => "Checking", in fmt()
59 2 => Self::Checking, in from()
H A Dstate_test.rs9 (ConnectionState::Checking, "Checking"), in test_connected_state_string()
/webrtc/examples/examples/data-channels/
H A DREADME.md36 Under Start Session you should see 'Checking' as it starts connecting. If everything worked you sho…
/webrtc/examples/examples/data-channels-detach/
H A DREADME.md36 Under Start Session you should see 'Checking' as it starts connecting. If everything worked you sho…
/webrtc/ice/src/agent/
H A Dagent_internal.rs195 self.update_connection_state(ConnectionState::Checking) in start_connectivity_checks()
216 if self.connection_state.load(Ordering::SeqCst) == ConnectionState::Checking as u8 { in contact()
271 ConnectionState::New | ConnectionState::Checking => { in connectivity_checks()
H A Dmod.rs424 .update_connection_state(ConnectionState::Checking) in restart()
H A Dagent_test.rs468 if s == ConnectionState::Checking { in test_connectivity_on_startup()
978 ConnectionState::Checking => { in test_connection_state_callback()
1723 } else if c == ConnectionState::Checking { in test_connection_state_connecting_to_failed()
/webrtc/webrtc/src/peer_connection/
H A Dpeer_connection_internal.rs1119 RTCIceTransportState::Checking => RTCIceConnectionState::Checking, in create_ice_transport()
H A Dmod.rs882 …} else if ice_connection_state == RTCIceConnectionState::Checking && dtls_transport_state == RTCDt… in update_connection_state()