Home
last modified time | relevance | path

Searched refs:StunUInt16ListAttribute (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/p2p/base/
Dstun.cc123 const StunUInt16ListAttribute* StunMessage::GetUnknownAttributes() const { in GetUnknownAttributes()
124 return static_cast<const StunUInt16ListAttribute*>( in GetUnknownAttributes()
453 return new StunUInt16ListAttribute(type, length); in Create()
484 StunUInt16ListAttribute* StunAttribute::CreateUnknownAttributes() { in CreateUnknownAttributes()
485 return new StunUInt16ListAttribute(STUN_ATTR_UNKNOWN_ATTRIBUTES, 0); in CreateUnknownAttributes()
816 StunUInt16ListAttribute::StunUInt16ListAttribute(uint16_t type, uint16_t length) in StunUInt16ListAttribute() function in cricket::StunUInt16ListAttribute
821 StunUInt16ListAttribute::~StunUInt16ListAttribute() { in ~StunUInt16ListAttribute()
825 size_t StunUInt16ListAttribute::Size() const { in Size()
829 uint16_t StunUInt16ListAttribute::GetType(int index) const { in GetType()
833 void StunUInt16ListAttribute::SetType(int index, uint16_t value) { in SetType()
[all …]
Dstun.h126 class StunUInt16ListAttribute; variable
159 const StunUInt16ListAttribute* GetUnknownAttributes() const;
243 static StunUInt16ListAttribute* CreateUnknownAttributes();
447 class StunUInt16ListAttribute : public StunAttribute {
449 StunUInt16ListAttribute(uint16_t type, uint16_t length);
450 ~StunUInt16ListAttribute();
Dstun_unittest.cc1019 const StunUInt16ListAttribute* types = msg.GetUnknownAttributes(); in TEST_F()
1080 StunUInt16ListAttribute* list = StunAttribute::CreateUnknownAttributes(); in TEST_F()