/external/webrtc/webrtc/tools/loopback_test/ |
D | adapter.js | 32 for (var i = 0; i < pcConfig.iceServers.length; i++) { 33 if (pcConfig.iceServers[i].hasOwnProperty('urls')){ 34 pcConfig.iceServers[i]['url'] = pcConfig.iceServers[i]['urls']; 35 delete pcConfig.iceServers[i]['urls']; 97 var iceServers = []; 104 iceServers.push(iceServer); 107 return iceServers; 160 var iceServers = []; 163 iceServers = {'urls': urls, variable 172 iceServers.push(iceServer); [all …]
|
D | loopback_test.js | 95 var pcConfig = forceTurn ? { iceServers: [turnServer] } : null; 229 var iceServers = createIceServers(turnServer.uris, 232 if (iceServers !== null) { 233 successCallback(iceServers);
|
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/ |
D | AppRTCClient.java | 70 public final List<PeerConnection.IceServer> iceServers; field in AppRTCClient.SignalingParameters 79 List<PeerConnection.IceServer> iceServers, in SignalingParameters() argument 83 this.iceServers = iceServers; in SignalingParameters()
|
D | RoomParametersFetcher.java | 135 LinkedList<PeerConnection.IceServer> iceServers = in roomHttpResponseParse() local 138 for (PeerConnection.IceServer server : iceServers) { in roomHttpResponseParse() 151 iceServers.add(turnServer); in roomHttpResponseParse() 156 iceServers, initiator, in roomHttpResponseParse()
|
D | PeerConnectionClient.java | 452 new PeerConnection.RTCConfiguration(signalingParameters.iceServers); in createPeerConnectionInternal()
|
/external/webrtc/talk/app/webrtc/objc/ |
D | RTCPeerConnection+Internal.h | 40 iceServers:(const webrtc::PeerConnectionInterface::IceServers &)iceServers
|
D | RTCPeerConnectionFactory.mm | 105 webrtc::PeerConnectionInterface::IceServers iceServers; 107 iceServers.push_back(server.iceServer); 111 iceServers:iceServers
|
D | RTCPeerConnection.mm | 272 iceServers:(const webrtc::PeerConnectionInterface::IceServers&)iceServers 277 config.servers = iceServers;
|
D | RTCPeerConnectionInterface.mm | 36 @synthesize iceServers = _iceServers;
|
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/ |
D | PeerConnection.java | 146 public List<IceServer> iceServers; field in PeerConnection.RTCConfiguration 157 public RTCConfiguration(List<IceServer> iceServers) { in RTCConfiguration() argument 162 this.iceServers = iceServers; in RTCConfiguration()
|
D | PeerConnectionFactory.java | 110 List<PeerConnection.IceServer> iceServers, in createPeerConnection() argument 114 new PeerConnection.RTCConfiguration(iceServers); in createPeerConnection()
|
/external/webrtc/talk/app/webrtc/java/testcommon/src/org/webrtc/ |
D | PeerConnectionTest.java | 538 LinkedList<PeerConnection.IceServer> iceServers = 540 iceServers.add(new PeerConnection.IceServer( 542 iceServers.add(new PeerConnection.IceServer( 547 iceServers, pcConstraints, offeringExpectations); 553 iceServers, pcConstraints, answeringExpectations);
|
/external/webrtc/talk/app/webrtc/objc/public/ |
D | RTCPeerConnectionInterface.h | 61 @property(nonatomic, copy) NSArray *iceServers;
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/ |
D | ARDAppClient+Internal.h | 42 @property(nonatomic, strong) NSMutableArray *iceServers;
|
D | ARDAppClient.m | 112 @synthesize iceServers = _iceServers; 221 [strongSelf.iceServers addObjectsFromArray:turnServers]; 477 config.iceServers = _iceServers;
|
/external/webrtc/webrtc/examples/androidtests/src/org/appspot/apprtc/test/ |
D | PeerConnectionClientTest.java | 229 List<PeerConnection.IceServer> iceServers = in createPeerConnectionClient() local 232 iceServers, true, // iceServers, initiator. in createPeerConnectionClient()
|