HomeSort by relevance Sort by last modified time
    Searched refs:StunErrorCodeAttribute (Results 1 - 7 of 7) sorted by null

  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stun.cc 121 const StunErrorCodeAttribute* StunMessage::GetErrorCode() const {
122 return reinterpret_cast<const StunErrorCodeAttribute*>(
243 if (length < StunErrorCodeAttribute::MIN_SIZE)
245 return new StunErrorCodeAttribute(type, length);
308 StunErrorCodeAttribute* StunAttribute::CreateErrorCode() {
309 return new StunErrorCodeAttribute(
310 STUN_ATTR_ERROR_CODE, StunErrorCodeAttribute::MIN_SIZE);
418 StunErrorCodeAttribute::StunErrorCodeAttribute(uint16 type, uint16 length)
422 StunErrorCodeAttribute::~StunErrorCodeAttribute()
    [all...]
stun.h 110 class StunErrorCodeAttribute;
133 const StunErrorCodeAttribute* GetErrorCode() const;
181 static StunErrorCodeAttribute* CreateErrorCode();
272 class StunErrorCodeAttribute : public StunAttribute {
274 StunErrorCodeAttribute(uint16 type, uint16 length);
275 ~StunErrorCodeAttribute();
stunserver.cc 143 StunErrorCodeAttribute* err_code = StunAttribute::CreateErrorCode();
stunport.cc 83 const StunErrorCodeAttribute* attr = response->GetErrorCode();
port.cc 296 if (const StunErrorCodeAttribute* error_code = stun_msg->GetErrorCode()) {
395 StunErrorCodeAttribute* error_attr = StunAttribute::CreateErrorCode();
805 const StunErrorCodeAttribute* error = response->GetErrorCode();
relayport.cc 775 const StunErrorCodeAttribute* attr = response->GetErrorCode();
relayserver.cc 88 StunErrorCodeAttribute* err_code = StunAttribute::CreateErrorCode();

Completed in 55 milliseconds