Home
last modified time | relevance | path

Searched refs:error_desc (Results 1 – 10 of 10) sorted by relevance

/external/webrtc/webrtc/p2p/base/
Ddtlstransport.h63 std::string* error_desc) override { in ApplyLocalTransportDescription() argument
79 return BadTransportDescription(desc.str(), error_desc); in ApplyLocalTransportDescription()
84 error_desc); in ApplyLocalTransportDescription()
92 error_desc); in ApplyLocalTransportDescription()
96 return Base::ApplyLocalTransportDescription(channel, error_desc); in ApplyLocalTransportDescription()
100 std::string* error_desc) override { in NegotiateTransportDescription() argument
104 return BadTransportDescription(msg, error_desc); in NegotiateTransportDescription()
148 error_desc); in NegotiateTransportDescription()
159 return BadTransportDescription(msg, error_desc); in NegotiateTransportDescription()
167 error_desc); in NegotiateTransportDescription()
[all …]
Dtransport.cc99 std::string* error_desc) { in SetLocalTransportDescription() argument
104 error_desc); in SetLocalTransportDescription()
120 ret &= ApplyLocalTransportDescription(kv.second, error_desc); in SetLocalTransportDescription()
128 ret &= NegotiateTransportDescription(action, error_desc); in SetLocalTransportDescription()
141 std::string* error_desc) { in SetRemoteTransportDescription() argument
146 error_desc); in SetRemoteTransportDescription()
151 ret &= ApplyRemoteTransportDescription(kv.second, error_desc); in SetRemoteTransportDescription()
156 ret = NegotiateTransportDescription(CA_OFFER, error_desc); in SetRemoteTransportDescription()
343 std::string* error_desc) { in ApplyLocalTransportDescription() argument
350 std::string* error_desc) { in ApplyRemoteTransportDescription() argument
[all …]
Dtransport.h213 std::string* error_desc);
218 std::string* error_desc);
275 std::string* error_desc);
280 std::string* error_desc);
288 std::string* error_desc);
295 std::string* error_desc);
Dstunserver.cc60 int error_code, const char* error_desc) { in SendErrorResponse() argument
67 err_code->SetReason(error_desc); in SendErrorResponse()
Dstunserver.h49 int error_code, const char* error_desc);
Drelayserver.cc57 const char* error_desc, const std::string& magic_cookie) { in SendStunError() argument
75 err_code->SetReason(error_desc); in SendStunError()
633 const StunMessage& request, int error_code, const char* error_desc) { in SendStunError() argument
638 request, socket_, addr_pair_.source(), error_code, error_desc, in SendStunError()
/external/webrtc/talk/session/media/
Dchannel.cc75 static void SafeSetError(const std::string& message, std::string* error_desc) { in SafeSetError() argument
76 if (error_desc) { in SafeSetError()
77 *error_desc = message; in SafeSetError()
411 std::string* error_desc) { in SetLocalContent() argument
414 this, content, action, error_desc)); in SetLocalContent()
419 std::string* error_desc) { in SetRemoteContent() argument
422 this, content, action, error_desc)); in SetRemoteContent()
761 std::string* error_desc) { in PushdownLocalDescription() argument
766 !SetLocalContent(content_desc, action, error_desc)) { in PushdownLocalDescription()
775 std::string* error_desc) { in PushdownRemoteDescription() argument
[all …]
Dchannel.h126 std::string* error_desc);
129 std::string* error_desc);
133 std::string* error_desc);
136 std::string* error_desc);
259 std::string* error_desc);
262 std::string* error_desc);
265 std::string* error_desc) = 0;
268 std::string* error_desc) = 0;
272 std::string* error_desc);
281 std::string* error_desc);
[all …]
/external/webrtc/talk/app/webrtc/
Dwebrtcsession.h187 const std::string& error_desc() const { return error_desc_; } in error_desc() function
353 virtual void SetError(Error error, const std::string& error_desc);
362 std::string* error_desc);
366 std::string* error_desc);
372 std::string* error_desc);
376 std::string* error_desc);
Dwebrtcsession.cc936 void WebRtcSession::SetError(Error error, const std::string& error_desc) { in SetError() argument
940 error_desc_ = error_desc; in SetError()
1044 std::string* error_desc) { in PushdownTransportDescription() argument
1049 error_desc); in PushdownTransportDescription()
1052 error_desc); in PushdownTransportDescription()
2032 desc << kSessionErrorDesc << error_desc() << "."; in GetSessionErrorMsg()