Home
last modified time | relevance | path

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

/external/webrtc/talk/app/webrtc/java/testcommon/src/org/webrtc/
DPeerConnectionTest.java81 private DataChannel dataChannel; field in PeerConnectionTest.ObserverExpectations
96 public synchronized void setDataChannel(DataChannel dataChannel) { in setDataChannel() argument
97 assertNull(this.dataChannel); in setDataChannel()
98 this.dataChannel = dataChannel; in setDataChannel()
99 this.dataChannel.registerObserver(this); in setDataChannel()
100 assertNotNull(this.dataChannel); in setDataChannel()
241 assertEquals(DataChannel.State.CONNECTING, dataChannel.state()); in onDataChannel()
268 assertFalse(previousAmount == dataChannel.bufferedAmount()); in onBufferedAmountChange()
273 assertEquals(expectedStateChanges.removeFirst(), dataChannel.state()); in onStateChange()
690 assertTrue(offeringExpectations.dataChannel.send(buffer));
[all …]
/external/webrtc/talk/app/webrtc/objc/
DRTCDataChannel+Internal.h50 rtc::scoped_refptr<webrtc::DataChannelInterface> dataChannel;
53 (rtc::scoped_refptr<webrtc::DataChannelInterface>)dataChannel;
DRTCDataChannel.mm277 dataChannel {
278 NSAssert(dataChannel != NULL, @"dataChannel cannot be NULL");
280 _dataChannel = dataChannel;
286 - (rtc::scoped_refptr<webrtc::DataChannelInterface>)dataChannel { method in Internal
DRTCPeerConnectionObserver.mm73 RTCDataChannel* dataChannel =
76 didOpenDataChannel:dataChannel];
DRTCPeerConnection.mm166 rtc::scoped_refptr<webrtc::DataChannelInterface> dataChannel =
169 return [[RTCDataChannel alloc] initWithDataChannel:dataChannel];
/external/webrtc/talk/app/webrtc/objctests/
DRTCPeerConnectionSyncObserver.m225 didOpenDataChannel:(RTCDataChannel*)dataChannel {
228 NSAssert([expectedLabel isEqual:dataChannel.label],
230 self.dataChannel = dataChannel;
231 dataChannel.delegate = self;
232 NSAssert(kRTCDataChannelStateConnecting == dataChannel.state,
DRTCPeerConnectionTest.mm151 offeringExpectations.dataChannel = offerDC;
259 EXPECT_TRUE([offeringExpectations.dataChannel sendData:buffer]);
270 EXPECT_TRUE([offeringExpectations.dataChannel sendData:buffer]);
280 [answeringExpectations.dataChannel close];
281 [offeringExpectations.dataChannel close];
291 offeringExpectations.dataChannel.delegate = nil;
292 answeringExpectations.dataChannel.delegate = nil;
DRTCPeerConnectionSyncObserver.h37 @property(nonatomic) RTCDataChannel* dataChannel;
/external/webrtc/talk/app/webrtc/objc/public/
DRTCPeerConnectionDelegate.h70 didOpenDataChannel:(RTCDataChannel*)dataChannel;
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DPeerConnection.java85 public void onDataChannel(DataChannel dataChannel); in onDataChannel() argument
/external/webrtc/webrtc/examples/objc/AppRTCDemo/
DARDAppClient.m384 didOpenDataChannel:(RTCDataChannel *)dataChannel {