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/webrtc/webrtc/p2p/base/
stun.h
123
class
StunUInt64Attribute
;
154
const
StunUInt64Attribute
* GetUInt64(int type) const;
240
static
StunUInt64Attribute
* CreateUInt64(uint16_t type);
362
class
StunUInt64Attribute
: public StunAttribute {
365
StunUInt64Attribute
(uint16_t type, uint64_t value);
366
explicit
StunUInt64Attribute
(uint16_t type);
stun.cc
110
const
StunUInt64Attribute
* StunMessage::GetUInt64(int type) const {
111
return static_cast<const
StunUInt64Attribute
*>(GetAttribute(type));
447
return new
StunUInt64Attribute
(type);
467
StunUInt64Attribute
* StunAttribute::CreateUInt64(uint16_t type) {
468
return new
StunUInt64Attribute
(type);
674
StunUInt64Attribute
::
StunUInt64Attribute
(uint16_t type, uint64_t value)
678
StunUInt64Attribute
::
StunUInt64Attribute
(uint16_t type)
682
bool
StunUInt64Attribute
::Read(ByteBuffer* buf)
[
all
...]
port.cc
467
const
StunUInt64Attribute
* stun_attr =
697
request->AddAttribute(new
StunUInt64Attribute
(
709
request->AddAttribute(new
StunUInt64Attribute
(
[
all
...]
port_unittest.cc
[
all
...]
Completed in 47 milliseconds