Home
last modified time | relevance | path

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

/external/webrtc/talk/app/webrtc/java/testcommon/src/org/webrtc/
DPeerConnectionTest.java30 import org.webrtc.PeerConnection.IceConnectionState;
69 private LinkedList<IceConnectionState> expectedIceConnectionChanges =
70 new LinkedList<IceConnectionState>();
157 IceConnectionState newState) { in expectIceConnectionChange()
163 IceConnectionState newState) { in onIceConnectionChange()
166 if (newState.equals(IceConnectionState.COMPLETED)) { in onIceConnectionChange()
626 IceConnectionState.CHECKING);
628 IceConnectionState.CONNECTED);
635 IceConnectionState.CHECKING);
637 IceConnectionState.CONNECTED);
[all …]
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DPeerConnection.java51 public enum IceConnectionState { enum in PeerConnection
67 public void onIceConnectionChange(IceConnectionState newState); in onIceConnectionChange()
261 public native IceConnectionState iceConnectionState(); in iceConnectionState()
/external/webrtc/talk/app/webrtc/
Dwebrtcsession.h93 PeerConnectionInterface::IceConnectionState new_state) {} in OnIceConnectionChange()
423 void SetIceConnectionState(PeerConnectionInterface::IceConnectionState state);
449 void OnTransportControllerConnectionState(cricket::IceConnectionState state);
488 PeerConnectionInterface::IceConnectionState ice_connection_state_;
Dpeerconnectioninterface.h189 enum IceConnectionState { enum
429 virtual IceConnectionState ice_connection_state() = 0;
471 PeerConnectionInterface::IceConnectionState new_state) {} in OnIceConnectionChange()
Dpeerconnection.h111 IceConnectionState ice_connection_state() override;
182 void OnIceConnectionChange(IceConnectionState new_state) override;
354 IceConnectionState ice_connection_state_;
Dpeerconnectionproxy.h76 PROXY_METHOD0(IceConnectionState, ice_connection_state)
Dpeerconnectionfactory_unittest.cc94 PeerConnectionInterface::IceConnectionState new_state) {} in OnIceConnectionChange()
Dwebrtcsession.cc1518 PeerConnectionInterface::IceConnectionState state) { in SetIceConnectionState()
1570 cricket::IceConnectionState state) { in OnTransportControllerConnectionState()
Dpeerconnection.cc821 PeerConnectionInterface::IceConnectionState
1296 PeerConnectionInterface::IceConnectionState new_state) { in OnIceConnectionChange()
Dpeerconnection_unittest.cc235 webrtc::PeerConnectionInterface::IceConnectionState new_state) override { in OnIceConnectionChange()
702 webrtc::PeerConnectionInterface::IceConnectionState ice_connection_state() { in ice_connection_state()
Dwebrtcsession_unittest.cc183 PeerConnectionInterface::IceConnectionState new_state) { in OnIceConnectionChange()
233 PeerConnectionInterface::IceConnectionState ice_connection_state_;
Dpeerconnectioninterface_unittest.cc462 PeerConnectionInterface::IceConnectionState new_state) { in OnIceConnectionChange()
/external/webrtc/webrtc/p2p/base/
Dtransportcontroller.cc232 rtc::TypedMessageData<IceConnectionState>* data = in OnMessage()
233 static_cast<rtc::TypedMessageData<IceConnectionState>*>(pmsg->pdata); in OnMessage()
552 IceConnectionState new_connection_state = kIceConnectionConnecting; in UpdateAggregateStates_w()
587 new rtc::TypedMessageData<IceConnectionState>(new_connection_state)); in UpdateAggregateStates_w()
Dtransportcontroller.h97 sigslot::signal1<IceConnectionState> SignalConnectionState;
204 IceConnectionState connection_state_ = kIceConnectionConnecting;
Dtransportcontroller_unittest.cc36 using cricket::IceConnectionState;
146 void OnConnectionState(IceConnectionState state) { in OnConnectionState()
184 IceConnectionState connection_state_ = cricket::kIceConnectionConnecting;
Dtransport.h51 enum IceConnectionState { enum
/external/webrtc/talk/app/webrtc/objc/
DRTCPeerConnectionObserver.h62 PeerConnectionInterface::IceConnectionState new_state) override;
DRTCEnumConverter.h39 (webrtc::PeerConnectionInterface::IceConnectionState)nativeState;
DRTCPeerConnectionObserver.mm85 PeerConnectionInterface::IceConnectionState new_state) {
DRTCEnumConverter.mm35 (webrtc::PeerConnectionInterface::IceConnectionState)nativeState { argument
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
DPeerConnectionClient.java30 import org.webrtc.PeerConnection.IceConnectionState;
935 final PeerConnection.IceConnectionState newState) { in onIceConnectionChange()
940 if (newState == IceConnectionState.CONNECTED) { in onIceConnectionChange()
942 } else if (newState == IceConnectionState.DISCONNECTED) { in onIceConnectionChange()
944 } else if (newState == IceConnectionState.FAILED) { in onIceConnectionChange()
/external/webrtc/talk/app/webrtc/test/
Dpeerconnectiontestwrapper.h64 webrtc::PeerConnectionInterface::IceConnectionState new_state) {} in OnIceConnectionChange()
/external/webrtc/talk/app/webrtc/java/jni/
Dpeerconnection_jni.cc242 PeerConnectionInterface::IceConnectionState new_state) override { in OnIceConnectionChange()
1873 PeerConnectionInterface::IceConnectionState state = in JOW()