HomeSort by relevance Sort by last modified time
    Searched defs:StunUInt32Attribute (Results 1 - 4 of 4) sorted by null

  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stun.cc 90 const StunUInt32Attribute*
97 return reinterpret_cast<const StunUInt32Attribute*>(GetAttribute(type));
227 if (length != StunUInt32Attribute::SIZE)
229 return new StunUInt32Attribute(type);
279 StunUInt32Attribute* StunAttribute::CreateUInt32(uint16 type) {
285 return new StunUInt32Attribute(type);
346 StunUInt32Attribute::StunUInt32Attribute(uint16 type)
350 bool StunUInt32Attribute::GetBit(int index) const {
355 void StunUInt32Attribute::SetBit(int index, bool value)
    [all...]
stun.h 108 class StunUInt32Attribute;
131 const StunUInt32Attribute* GetUInt32(StunAttributeType type) const;
179 static StunUInt32Attribute* CreateUInt32(uint16 type);
224 class StunUInt32Attribute : public StunAttribute {
226 StunUInt32Attribute(uint16 type);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.cc 122 const StunUInt32Attribute* StunMessage::GetUInt32(int type) const {
123 return static_cast<const StunUInt32Attribute*>(GetAttribute(type));
267 kStunAttributeHeaderSize + StunUInt32Attribute::SIZE;
281 StunUInt32Attribute::SIZE)
294 StunUInt32Attribute* fingerprint_attr =
295 new StunUInt32Attribute(STUN_ATTR_FINGERPRINT, 0);
459 return new StunUInt32Attribute(type);
485 StunUInt32Attribute* StunAttribute::CreateUInt32(uint16 type) {
486 return new StunUInt32Attribute(type);
657 StunUInt32Attribute::StunUInt32Attribute(uint16 type, uint32 value
    [all...]
stun.h 137 class StunUInt32Attribute;
168 const StunUInt32Attribute* GetUInt32(int type) const;
252 static StunUInt32Attribute* CreateUInt32(uint16 type);
353 class StunUInt32Attribute : public StunAttribute {
356 StunUInt32Attribute(uint16 type, uint32 value);
357 explicit StunUInt32Attribute(uint16 type);

Completed in 3037 milliseconds