Searched defs:StunErrorCodeAttribute (Results 1 - 2 of 2) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dstun.cc121 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) function in class:cricket::StunErrorCodeAttribute
422 StunErrorCodeAttribute
[all...]
H A Dstun.h110 class StunErrorCodeAttribute;
133 const StunErrorCodeAttribute* GetErrorCode() const;
181 static StunErrorCodeAttribute* CreateErrorCode();
272 class StunErrorCodeAttribute : public StunAttribute { class in namespace:cricket
274 StunErrorCodeAttribute(uint16 type, uint16 length);
275 ~StunErrorCodeAttribute();

Completed in 60 milliseconds