Home | History | Annotate | Download | only in test

Lines Matching refs:sdp

123   std::string sdp;
124 EXPECT_TRUE(candidate->ToString(&sdp));
125 // Give the user a chance to modify sdp for testing.
126 SignalOnIceCandidateCreated(&sdp);
128 sdp);
139 std::string sdp;
140 EXPECT_TRUE(desc->ToString(&sdp));
143 << ": " << desc->type() << " sdp created: " << sdp;
145 // Give the user a chance to modify sdp for testing.
146 SignalOnSdpCreated(&sdp);
148 SetLocalDescription(desc->type(), sdp);
150 SignalOnSdpReady(sdp);
167 void PeerConnectionTestWrapper::ReceiveOfferSdp(const std::string& sdp) {
168 SetRemoteDescription(SessionDescriptionInterface::kOffer, sdp);
172 void PeerConnectionTestWrapper::ReceiveAnswerSdp(const std::string& sdp) {
173 SetRemoteDescription(SessionDescriptionInterface::kAnswer, sdp);
177 const std::string& sdp) {
179 << ": SetLocalDescription " << type << " " << sdp;
185 observer, webrtc::CreateSessionDescription(type, sdp, NULL));
189 const std::string& sdp) {
191 << ": SetRemoteDescription " << type << " " << sdp;
197 observer, webrtc::CreateSessionDescription(type, sdp, NULL));