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

  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stun.cc 71 const StunAddressAttribute*
82 return reinterpret_cast<const StunAddressAttribute*>(GetAttribute(type));
219 if (length != StunAddressAttribute::SIZE)
221 return new StunAddressAttribute(type);
261 StunAddressAttribute* StunAttribute::CreateAddress(uint16 type) {
271 return new StunAddressAttribute(type);
322 StunAddressAttribute::StunAddressAttribute(uint16 type)
326 bool StunAddressAttribute::Read(ByteBuffer* buf) {
339 void StunAddressAttribute::Write(ByteBuffer* buf) const
    [all...]
stun.h 107 class StunAddressAttribute;
130 const StunAddressAttribute* GetAddress(StunAttributeType type) const;
178 static StunAddressAttribute* CreateAddress(uint16 type);
196 class StunAddressAttribute : public StunAttribute {
198 StunAddressAttribute(uint16 type);
336 const StunAddressAttribute* address() const { return addr_; }
342 void SetPreallocateAddress(StunAddressAttribute* addr);
350 StunAddressAttribute* addr_;
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.cc 105 const StunAddressAttribute* StunMessage::GetAddress(int type) const {
114 return reinterpret_cast<const StunAddressAttribute*>(mapped_address);
118 return static_cast<const StunAddressAttribute*>(GetAttribute(type));
455 return new StunAddressAttribute(type, length);
473 StunAddressAttribute* StunAttribute::CreateAddress(uint16 type) {
474 return new StunAddressAttribute(type, 0);
502 StunAddressAttribute::StunAddressAttribute(uint16 type,
508 StunAddressAttribute::StunAddressAttribute(uint16 type, uint16 length
    [all...]
stun.h 135 class StunAddressAttribute;
167 const StunAddressAttribute* GetAddress(int type) const;
250 static StunAddressAttribute* CreateAddress(uint16 type);
270 class StunAddressAttribute : public StunAttribute {
275 StunAddressAttribute(uint16 type, const talk_base::SocketAddress& addr);
276 StunAddressAttribute(uint16 type, uint16 length);
332 class StunXorAddressAttribute : public StunAddressAttribute {

Completed in 101 milliseconds