OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StunUInt64Attribute
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.h
138
class
StunUInt64Attribute
;
169
const
StunUInt64Attribute
* GetUInt64(int type) const;
253
static
StunUInt64Attribute
* CreateUInt64(uint16 type);
376
class
StunUInt64Attribute
: public StunAttribute {
379
StunUInt64Attribute
(uint16 type, uint64 value);
380
explicit
StunUInt64Attribute
(uint16 type);
stun.cc
126
const
StunUInt64Attribute
* StunMessage::GetUInt64(int type) const {
127
return static_cast<const
StunUInt64Attribute
*>(GetAttribute(type));
461
return new
StunUInt64Attribute
(type);
481
StunUInt64Attribute
* StunAttribute::CreateUInt64(uint16 type) {
482
return new
StunUInt64Attribute
(type);
687
StunUInt64Attribute
::
StunUInt64Attribute
(uint16 type, uint64 value)
691
StunUInt64Attribute
::
StunUInt64Attribute
(uint16 type)
695
bool
StunUInt64Attribute
::Read(ByteBuffer* buf)
[
all
...]
port.cc
497
const
StunUInt64Attribute
* stun_attr =
767
request->AddAttribute(new
StunUInt64Attribute
(
779
request->AddAttribute(new
StunUInt64Attribute
(
[
all
...]
port_unittest.cc
[
all
...]
Completed in 36 milliseconds