Home
last modified time | relevance | path

Searched refs:sdpMLineIndex (Results 1 – 9 of 9) sorted by relevance

/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DIceCandidate.java36 public final int sdpMLineIndex; field in IceCandidate
39 public IceCandidate(String sdpMid, int sdpMLineIndex, String sdp) { in IceCandidate() argument
41 this.sdpMLineIndex = sdpMLineIndex; in IceCandidate()
46 return sdpMid + ":" + sdpMLineIndex + ":" + sdp; in toString()
DPeerConnection.java210 candidate.sdpMid, candidate.sdpMLineIndex, candidate.sdp); in addIceCandidate()
291 String sdpMid, int sdpMLineIndex, String iceCandidateSdp); in nativeAddIceCandidate() argument
/external/webrtc/webrtc/api/objc/
DRTCIceCandidate.mm20 @synthesize sdpMLineIndex = _sdpMLineIndex;
24 sdpMLineIndex:(NSInteger)sdpMLineIndex
29 _sdpMLineIndex = sdpMLineIndex;
51 sdpMLineIndex:candidate->sdp_mline_index()
DRTCIceCandidate.h27 @property(nonatomic, readonly) NSInteger sdpMLineIndex;
38 sdpMLineIndex:(NSInteger)sdpMLineIndex
/external/webrtc/talk/app/webrtc/objc/
DRTCICECandidate.mm37 @synthesize sdpMLineIndex = _sdpMLineIndex;
41 index:(NSInteger)sdpMLineIndex
49 _sdpMLineIndex = sdpMLineIndex;
58 (long)self.sdpMLineIndex,
83 [self.sdpMid UTF8String], self.sdpMLineIndex, [self.sdp UTF8String],
/external/webrtc/talk/app/webrtc/objc/public/
DRTCICECandidate.h40 @property(nonatomic, assign, readonly) NSInteger sdpMLineIndex;
47 index:(NSInteger)sdpMLineIndex
/external/webrtc/webrtc/api/objctests/
DRTCIceCandidateTest.mm32 sdpMLineIndex:0
55 EXPECT_EQ(0, iceCandidate.sdpMLineIndex);
/external/webrtc/webrtc/examples/objc/AppRTCDemo/
DRTCICECandidate+JSON.m34 kRTCICECandidateMLineIndexKey : @(self.sdpMLineIndex),
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
DWebSocketRTCClient.java234 jsonPut(json, "label", candidate.sdpMLineIndex); in sendLocalIceCandidate()