Home
last modified time | relevance | path

Searched refs:StunErrorCodeAttribute (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
Dstun.cc135 const StunErrorCodeAttribute* StunMessage::GetErrorCode() const { in GetErrorCode()
136 return static_cast<const StunErrorCodeAttribute*>( in GetErrorCode()
467 return new StunErrorCodeAttribute(type, length); in Create()
495 StunErrorCodeAttribute* StunAttribute::CreateErrorCode() { in CreateErrorCode()
496 return new StunErrorCodeAttribute( in CreateErrorCode()
497 STUN_ATTR_ERROR_CODE, StunErrorCodeAttribute::MIN_SIZE); in CreateErrorCode()
777 StunErrorCodeAttribute::StunErrorCodeAttribute(uint16 type, int code, in StunErrorCodeAttribute() function in cricket::StunErrorCodeAttribute
784 StunErrorCodeAttribute::StunErrorCodeAttribute(uint16 type, uint16 length) in StunErrorCodeAttribute() function in cricket::StunErrorCodeAttribute
788 StunErrorCodeAttribute::~StunErrorCodeAttribute() { in ~StunErrorCodeAttribute()
791 int StunErrorCodeAttribute::code() const { in code()
[all …]
Dstun.h141 class StunErrorCodeAttribute; variable
174 const StunErrorCodeAttribute* GetErrorCode() const;
256 static StunErrorCodeAttribute* CreateErrorCode();
429 class StunErrorCodeAttribute : public StunAttribute {
432 StunErrorCodeAttribute(uint16 type, int code, const std::string& reason);
433 StunErrorCodeAttribute(uint16 type, uint16 length);
434 ~StunErrorCodeAttribute();
Drelayserver_unittest.cc218 const StunErrorCodeAttribute* err = res->GetErrorCode(); in TEST_F()
238 const StunErrorCodeAttribute* err = res->GetErrorCode(); in TEST_F()
364 const StunErrorCodeAttribute* err = res->GetErrorCode(); in TEST_F()
388 const StunErrorCodeAttribute* err = res->GetErrorCode(); in TEST_F()
413 const StunErrorCodeAttribute* err = res->GetErrorCode(); in TEST_F()
438 const StunErrorCodeAttribute* err = res->GetErrorCode(); in TEST_F()
462 const StunErrorCodeAttribute* err = res->GetErrorCode(); in TEST_F()
535 const StunErrorCodeAttribute* err = res->GetErrorCode(); in TEST_F()
Dstunserver.cc94 StunErrorCodeAttribute* err_code = StunAttribute::CreateErrorCode(); in SendErrorResponse()
Dturnport.cc873 const StunErrorCodeAttribute* error_code = response->GetErrorCode(); in OnErrorResponse()
1008 const StunErrorCodeAttribute* error_code = response->GetErrorCode(); in OnErrorResponse()
1050 const StunErrorCodeAttribute* error_code = response->GetErrorCode(); in OnErrorResponse()
1099 const StunErrorCodeAttribute* error_code = response->GetErrorCode(); in OnErrorResponse()
Dport.cc436 if (const StunErrorCodeAttribute* error_code = stun_msg->GetErrorCode()) { in GetStunMessage()
674 StunErrorCodeAttribute* error_attr = StunAttribute::CreateErrorCode(); in SendBindingErrorResponse()
1280 const StunErrorCodeAttribute* error_attr = response->GetErrorCode(); in OnConnectionRequestErrorResponse()
Dstunport.cc85 const StunErrorCodeAttribute* attr = response->GetErrorCode(); in OnErrorResponse()
Dport_unittest.cc139 const StunErrorCodeAttribute* error_attr = last_stun_msg_->GetErrorCode(); in last_stun_error_code()
1398 const StunErrorCodeAttribute* error_attr = msg->GetErrorCode(); in TEST_F()
1505 const StunErrorCodeAttribute* error_attr = msg->GetErrorCode(); in TEST_F()
1635 in_msg->AddAttribute(new StunErrorCodeAttribute(STUN_ATTR_ERROR_CODE, in TEST_F()
1687 in_msg->AddAttribute(new StunErrorCodeAttribute(STUN_ATTR_ERROR_CODE, in TEST_F()
1996 in_msg->AddAttribute(new StunErrorCodeAttribute(STUN_ATTR_ERROR_CODE, in TEST_F()
Dstun_unittest.cc1008 const StunErrorCodeAttribute* errorcode = msg.GetErrorCode(); in TEST_F()
1049 StunErrorCodeAttribute* errorcode = StunAttribute::CreateErrorCode(); in TEST_F()
Drelayport.cc817 const StunErrorCodeAttribute* attr = response->GetErrorCode(); in OnErrorResponse()
Drelayserver.cc89 StunErrorCodeAttribute* err_code = StunAttribute::CreateErrorCode(); in SendStunError()
Dturnserver.cc202 VERIFY(resp->AddAttribute(new cricket::StunErrorCodeAttribute( in InitErrorResponse()