HomeSort by relevance Sort by last modified time
    Searched refs:IceGatheringState (Results 1 - 25 of 28) sorted by null

1 2

  /external/webrtc/talk/app/webrtc/objc/
RTCPeerConnectionObserver.h 64 // Called any time the ICEGatheringState changes
66 PeerConnectionInterface::IceGatheringState new_state) override;
RTCEnumConverter.h 42 (webrtc::PeerConnectionInterface::IceGatheringState)nativeState;
RTCPeerConnectionObserver.mm 93 PeerConnectionInterface::IceGatheringState new_state) {
RTCEnumConverter.mm 58 (webrtc::PeerConnectionInterface::IceGatheringState)nativeState {
  /external/webrtc/talk/app/webrtc/
peerconnectionproxy.h 77 PROXY_METHOD0(IceGatheringState, ice_gathering_state)
peerconnectioninterface.h 183 enum IceGatheringState {
430 virtual IceGatheringState ice_gathering_state() = 0;
473 // Called any time the IceGatheringState changes
475 PeerConnectionInterface::IceGatheringState new_state) {}
peerconnection.h 112 IceGatheringState ice_gathering_state() override;
183 void OnIceGatheringChange(IceGatheringState new_state) override;
355 IceGatheringState ice_gathering_state_;
webrtcsession.h 94 // Called any time the IceGatheringState changes
96 PeerConnectionInterface::IceGatheringState new_state) {}
451 void OnTransportControllerGatheringState(cricket::IceGatheringState state);
peerconnectionfactory_unittest.cc 96 PeerConnectionInterface::IceGatheringState new_state) {}
peerconnection.cc 826 PeerConnectionInterface::IceGatheringState
    [all...]
peerconnection_unittest.cc 239 webrtc::PeerConnectionInterface::IceGatheringState new_state) override {
706 webrtc::PeerConnectionInterface::IceGatheringState ice_gathering_state() {
    [all...]
  /external/webrtc/webrtc/p2p/base/
transportchannelimpl.h 85 virtual IceGatheringState gathering_state() const = 0;
p2ptransportchannel.h 87 IceGatheringState gathering_state() const override {
290 IceGatheringState gathering_state_;
transportcontroller.h 105 sigslot::signal1<IceGatheringState> SignalGatheringState;
206 IceGatheringState gathering_state_ = kIceGatheringNew;
transport.h 75 enum IceGatheringState {
transportcontroller.cc 246 rtc::TypedMessageData<IceGatheringState>* data =
247 static_cast<rtc::TypedMessageData<IceGatheringState>*>(pmsg->pdata);
553 IceGatheringState new_gathering_state = kIceGatheringNew;
605 new rtc::TypedMessageData<IceGatheringState>(new_gathering_state));
faketransportcontroller.h 130 IceGatheringState gathering_state() const override {
339 IceGatheringState gathering_state_ = kIceGatheringNew;
dtlstransportchannel.h 186 IceGatheringState gathering_state() const override {
transportcontroller_unittest.cc 37 using cricket::IceGatheringState;
162 void OnGatheringState(IceGatheringState state) {
186 IceGatheringState gathering_state_ = cricket::kIceGatheringNew;
p2ptransportchannel_unittest.cc     [all...]
  /external/webrtc/talk/app/webrtc/java/testcommon/src/org/webrtc/
PeerConnectionTest.java 31 import org.webrtc.PeerConnection.IceGatheringState;
71 private LinkedList<IceGatheringState> expectedIceGatheringChanges =
72 new LinkedList<IceGatheringState>();
184 IceGatheringState newState) {
189 public synchronized void onIceGatheringChange(IceGatheringState newState) {
193 if (newState == IceGatheringState.GATHERING) {
607 offeringExpectations.expectIceGatheringChange(IceGatheringState.COMPLETE);
608 answeringExpectations.expectIceGatheringChange(IceGatheringState.COMPLETE);
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
PeerConnection.java 46 /** Tracks PeerConnectionInterface::IceGatheringState */
47 public enum IceGatheringState { NEW, GATHERING, COMPLETE };
72 /** Triggered when the IceGatheringState changes. */
73 public void onIceGatheringChange(IceGatheringState newState);
263 public native IceGatheringState iceGatheringState();
  /external/webrtc/talk/app/webrtc/test/
peerconnectiontestwrapper.h 66 webrtc::PeerConnectionInterface::IceGatheringState new_state) {}
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
PeerConnectionClient.java     [all...]
  /external/webrtc/talk/app/webrtc/java/jni/
peerconnection_jni.cc 262 PeerConnectionInterface::IceGatheringState new_state) override {
266 "(Lorg/webrtc/PeerConnection$IceGatheringState;)V");
268 jni(), "PeerConnection$IceGatheringState", new_state);
    [all...]

Completed in 140 milliseconds

1 2