/external/webrtc/api/ |
D | jsep.cc | 25 const char SessionDescriptionInterface::kPrAnswer[] = "pranswer"; member in webrtc::SessionDescriptionInterface 33 case SdpType::kPrAnswer: in SdpTypeToString() 34 return SessionDescriptionInterface::kPrAnswer; in SdpTypeToString() 46 } else if (type_str == SessionDescriptionInterface::kPrAnswer) { in SdpTypeFromString() 47 return SdpType::kPrAnswer; in SdpTypeFromString()
|
D | jsep.h | 105 kPrAnswer, // Description must be treated as an SDP answer, but not a final enumerator 133 static const char kPrAnswer[]; variable
|
/external/webrtc/pc/ |
D | jsep_transport_unittest.cc | 446 {CONNECTIONROLE_ACTIVE, CONNECTIONROLE_ACTPASS, SdpType::kPrAnswer, in TEST_P() 451 SdpType::kPrAnswer}}; in TEST_P() 488 {CONNECTIONROLE_PASSIVE, CONNECTIONROLE_ACTPASS, SdpType::kPrAnswer, in TEST_P() 493 SdpType::kPrAnswer}}; in TEST_P() 548 {CONNECTIONROLE_ACTIVE, CONNECTIONROLE_ACTIVE, SdpType::kPrAnswer, in TEST_P() 550 {CONNECTIONROLE_ACTPASS, CONNECTIONROLE_ACTPASS, SdpType::kPrAnswer, in TEST_P() 552 {CONNECTIONROLE_PASSIVE, CONNECTIONROLE_PASSIVE, SdpType::kPrAnswer, in TEST_P() 561 SdpType::kPrAnswer}, in TEST_P() 563 SdpType::kPrAnswer}, in TEST_P() 565 SdpType::kPrAnswer}}; in TEST_P() [all …]
|
D | jsep_transport.cc | 228 if (type == SdpType::kPrAnswer || type == SdpType::kAnswer) { in SetLocalJsepTransportDescription() 305 if (type == SdpType::kPrAnswer || type == SdpType::kAnswer) { in SetRemoteJsepTransportDescription() 458 case SdpType::kPrAnswer: in SetRtcpMux() 531 if ((type == SdpType::kPrAnswer || type == SdpType::kAnswer) && ret) { in SetSdes()
|
D | channel_unittest.cc | 367 SdpType::kPrAnswer, NULL); in SendProvisionalAnswer() 371 SdpType::kPrAnswer, NULL); in SendProvisionalAnswer() 609 channel1_->SetRemoteContent(&content, SdpType::kPrAnswer, NULL)); in TestSetContentsRtcpMuxWithPrAnswer() 618 channel2_->SetRemoteContent(&content, SdpType::kPrAnswer, NULL)); in TestSetContentsRtcpMuxWithPrAnswer() 772 channel2_->SetLocalContent(&content2, SdpType::kPrAnswer, NULL)); in TestMediaContentDirection() 774 channel1_->SetRemoteContent(&content2, SdpType::kPrAnswer, NULL)); in TestMediaContentDirection() 789 channel2_->SetLocalContent(&content2, SdpType::kPrAnswer, NULL)); in TestMediaContentDirection() 791 channel1_->SetRemoteContent(&content2, SdpType::kPrAnswer, NULL)); in TestMediaContentDirection() 1193 channel1_->SetLocalContent(content2.get(), SdpType::kPrAnswer, &err)); in TestSendPrAnswer() 1222 channel1_->SetRemoteContent(content2.get(), SdpType::kPrAnswer, &err)); in TestReceivePrAnswer()
|
D | srtp_filter.cc | 41 case webrtc::SdpType::kPrAnswer: in Process()
|
D | peer_connection_signaling_unittest.cc | 256 CloneSessionDescriptionAsType(answer.get(), SdpType::kPrAnswer)); in CreatePeerConnectionInState() 269 CloneSessionDescriptionAsType(answer.get(), SdpType::kPrAnswer)); in CreatePeerConnectionInState()
|
D | channel.cc | 1035 if (type == SdpType::kAnswer || type == SdpType::kPrAnswer) { in SetLocalContent_w() 1134 if (type == SdpType::kAnswer || type == SdpType::kPrAnswer) { in SetRemoteContent_w()
|
D | jsep_session_description_unittest.cc | 485 SdpType::kPrAnswer,
|
D | peer_connection.cc | 2675 if (type == SdpType::kPrAnswer || type == SdpType::kAnswer) { in ApplyLocalDescription() 3236 if (type == SdpType::kPrAnswer || type == SdpType::kAnswer) { in ApplyRemoteDescription() 5846 if (type == SdpType::kPrAnswer || type == SdpType::kAnswer) { in UpdateSessionState() 5856 } else if (type == SdpType::kPrAnswer) { in UpdateSessionState() 6679 if (type == SdpType::kPrAnswer || type == SdpType::kAnswer) { in ValidateSessionDescription() 6745 RTC_DCHECK(type == SdpType::kPrAnswer || type == SdpType::kAnswer); in ExpectSetLocalDescription() 6757 RTC_DCHECK(type == SdpType::kPrAnswer || type == SdpType::kAnswer); in ExpectSetRemoteDescription()
|
D | peer_connection_interface_unittest.cc | 1013 webrtc::CreateSessionDescription(SdpType::kPrAnswer, sdp)); in CreatePrAnswerAsLocalDescription() 1056 webrtc::CreateSessionDescription(SdpType::kPrAnswer, sdp)); in CreatePrAnswerAndAnswerAsRemoteDescription() 3403 webrtc::CreateSessionDescription(SdpType::kPrAnswer, sdp)); in TEST_P() 3433 webrtc::CreateSessionDescription(SdpType::kPrAnswer, sdp)); in TEST_P()
|
/external/webrtc/sdk/objc/api/peerconnection/ |
D | RTCSessionDescription.mm | 83 return webrtc::SessionDescriptionInterface::kPrAnswer; 92 } else if (string == webrtc::SessionDescriptionInterface::kPrAnswer) {
|