Searched refs:StunErrorCodeAttribute (Results 1 – 12 of 12) sorted by relevance
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
D | stun.cc | 135 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 …]
|
D | stun.h | 141 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();
|
D | relayserver_unittest.cc | 218 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()
|
D | stunserver.cc | 94 StunErrorCodeAttribute* err_code = StunAttribute::CreateErrorCode(); in SendErrorResponse()
|
D | turnport.cc | 873 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()
|
D | port.cc | 436 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()
|
D | stunport.cc | 85 const StunErrorCodeAttribute* attr = response->GetErrorCode(); in OnErrorResponse()
|
D | port_unittest.cc | 139 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()
|
D | stun_unittest.cc | 1008 const StunErrorCodeAttribute* errorcode = msg.GetErrorCode(); in TEST_F() 1049 StunErrorCodeAttribute* errorcode = StunAttribute::CreateErrorCode(); in TEST_F()
|
D | relayport.cc | 817 const StunErrorCodeAttribute* attr = response->GetErrorCode(); in OnErrorResponse()
|
D | relayserver.cc | 89 StunErrorCodeAttribute* err_code = StunAttribute::CreateErrorCode(); in SendStunError()
|
D | turnserver.cc | 202 VERIFY(resp->AddAttribute(new cricket::StunErrorCodeAttribute( in InitErrorResponse()
|