HomeSort by relevance Sort by last modified time
    Searched defs:StunErrorCodeAttribute (Results 1 - 3 of 3) 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();
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.h 140 class StunErrorCodeAttribute;
173 const StunErrorCodeAttribute* GetErrorCode() const;
255 static StunErrorCodeAttribute* CreateErrorCode();
428 class StunErrorCodeAttribute : public StunAttribute {
431 StunErrorCodeAttribute(uint16 type, int code, const std::string& reason);
432 StunErrorCodeAttribute(uint16 type, uint16 length);
433 ~StunErrorCodeAttribute();

Completed in 1257 milliseconds