Home
last modified time | relevance | path

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

/external/webrtc/talk/app/webrtc/java/testcommon/src/org/webrtc/
DPeerConnectionTest.java276 public synchronized void expectStateChange(DataChannel.State state) { in expectStateChange() method in PeerConnectionTest.ObserverExpectations
660 offeringExpectations.expectStateChange(DataChannel.State.OPEN);
663 answeringExpectations.expectStateChange(DataChannel.State.OPEN);
706 offeringExpectations.expectStateChange(DataChannel.State.CLOSING);
707 answeringExpectations.expectStateChange(DataChannel.State.CLOSING);
708 offeringExpectations.expectStateChange(DataChannel.State.CLOSED);
709 answeringExpectations.expectStateChange(DataChannel.State.CLOSED);
/external/webrtc/talk/app/webrtc/objctests/
DRTCPeerConnectionTest.mm214 [offeringExpectations expectStateChange:kRTCDataChannelStateOpen];
216 [answeringExpectations expectStateChange:kRTCDataChannelStateOpen];
275 [offeringExpectations expectStateChange:kRTCDataChannelStateClosing];
276 [answeringExpectations expectStateChange:kRTCDataChannelStateClosing];
277 [offeringExpectations expectStateChange:kRTCDataChannelStateClosed];
278 [answeringExpectations expectStateChange:kRTCDataChannelStateClosed];
DRTCPeerConnectionSyncObserver.h53 - (void)expectStateChange:(RTCDataChannelState)state;
DRTCPeerConnectionSyncObserver.m132 - (void)expectStateChange:(RTCDataChannelState)state {