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

/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dstun.cc105 const StunByteStringAttribute*
113 return reinterpret_cast<const StunByteStringAttribute*>(GetAttribute(type));
234 return (length % 4 == 0) ? new StunByteStringAttribute(type, length) : 0;
237 return (length == 20) ? new StunByteStringAttribute(type, length) : 0;
240 return new StunByteStringAttribute(type, length);
293 StunByteStringAttribute* StunAttribute::CreateByteString(uint16 type) {
300 return new StunByteStringAttribute(type, 0);
371 StunByteStringAttribute::StunByteStringAttribute(uint16 type, uint16 length) function in class:cricket::StunByteStringAttribute
375 StunByteStringAttribute
[all...]
H A Dstun.h109 class StunByteStringAttribute;
132 const StunByteStringAttribute* GetByteString(StunAttributeType type) const;
180 static StunByteStringAttribute* CreateByteString(uint16 type);
249 class StunByteStringAttribute : public StunAttribute { class in namespace:cricket
251 StunByteStringAttribute(uint16 type, uint16 length);
252 ~StunByteStringAttribute();

Completed in 80 milliseconds