OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StunErrorCodeAttribute
(Results
1 - 19
of
19
) sorted by null
/external/chromium/third_party/libjingle/source/talk/p2p/base/
stun.cc
121
const
StunErrorCodeAttribute
* StunMessage::GetErrorCode() const {
122
return reinterpret_cast<const
StunErrorCodeAttribute
*>(
243
if (length <
StunErrorCodeAttribute
::MIN_SIZE)
245
return new
StunErrorCodeAttribute
(type, length);
308
StunErrorCodeAttribute
* StunAttribute::CreateErrorCode() {
309
return new
StunErrorCodeAttribute
(
310
STUN_ATTR_ERROR_CODE,
StunErrorCodeAttribute
::MIN_SIZE);
418
StunErrorCodeAttribute
::
StunErrorCodeAttribute
(uint16 type, uint16 length)
422
StunErrorCodeAttribute
::~StunErrorCodeAttribute()
[
all
...]
stun.h
110
class
StunErrorCodeAttribute
;
133
const
StunErrorCodeAttribute
* GetErrorCode() const;
181
static
StunErrorCodeAttribute
* CreateErrorCode();
272
class
StunErrorCodeAttribute
: public StunAttribute {
274
StunErrorCodeAttribute
(uint16 type, uint16 length);
275
~
StunErrorCodeAttribute
();
stunserver.cc
143
StunErrorCodeAttribute
* err_code = StunAttribute::CreateErrorCode();
stunport.cc
83
const
StunErrorCodeAttribute
* attr = response->GetErrorCode();
port.cc
296
if (const
StunErrorCodeAttribute
* error_code = stun_msg->GetErrorCode()) {
395
StunErrorCodeAttribute
* error_attr = StunAttribute::CreateErrorCode();
805
const
StunErrorCodeAttribute
* error = response->GetErrorCode();
relayport.cc
775
const
StunErrorCodeAttribute
* attr = response->GetErrorCode();
relayserver.cc
88
StunErrorCodeAttribute
* err_code = StunAttribute::CreateErrorCode();
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.cc
134
const
StunErrorCodeAttribute
* StunMessage::GetErrorCode() const {
135
return static_cast<const
StunErrorCodeAttribute
*>(
465
return new
StunErrorCodeAttribute
(type, length);
493
StunErrorCodeAttribute
* StunAttribute::CreateErrorCode() {
494
return new
StunErrorCodeAttribute
(
495
STUN_ATTR_ERROR_CODE,
StunErrorCodeAttribute
::MIN_SIZE);
775
StunErrorCodeAttribute
::
StunErrorCodeAttribute
(uint16 type, int code,
782
StunErrorCodeAttribute
::
StunErrorCodeAttribute
(uint16 type, uint16 length
[
all
...]
stun.h
140
class
StunErrorCodeAttribute
;
173
const
StunErrorCodeAttribute
* GetErrorCode() const;
255
static
StunErrorCodeAttribute
* CreateErrorCode();
428
class
StunErrorCodeAttribute
: public StunAttribute {
431
StunErrorCodeAttribute
(uint16 type, int code, const std::string& reason);
432
StunErrorCodeAttribute
(uint16 type, uint16 length);
433
~
StunErrorCodeAttribute
();
relayserver_unittest.cc
212
const
StunErrorCodeAttribute
* err = res->GetErrorCode();
232
const
StunErrorCodeAttribute
* err = res->GetErrorCode();
358
const
StunErrorCodeAttribute
* err = res->GetErrorCode();
382
const
StunErrorCodeAttribute
* err = res->GetErrorCode();
407
const
StunErrorCodeAttribute
* err = res->GetErrorCode();
432
const
StunErrorCodeAttribute
* err = res->GetErrorCode();
456
const
StunErrorCodeAttribute
* err = res->GetErrorCode();
529
const
StunErrorCodeAttribute
* err = res->GetErrorCode();
stunserver.cc
94
StunErrorCodeAttribute
* err_code = StunAttribute::CreateErrorCode();
turnport.cc
711
const
StunErrorCodeAttribute
* error_code = response->GetErrorCode();
788
const
StunErrorCodeAttribute
* error_code = response->GetErrorCode();
830
const
StunErrorCodeAttribute
* error_code = response->GetErrorCode();
879
const
StunErrorCodeAttribute
* error_code = response->GetErrorCode();
[
all
...]
stunport.cc
85
const
StunErrorCodeAttribute
* attr = response->GetErrorCode();
port.cc
408
if (const
StunErrorCodeAttribute
* error_code = stun_msg->GetErrorCode()) {
636
StunErrorCodeAttribute
* error_attr = StunAttribute::CreateErrorCode();
[
all
...]
port_unittest.cc
138
const
StunErrorCodeAttribute
* error_attr = last_stun_msg_->GetErrorCode();
[
all
...]
stun_unittest.cc
[
all
...]
relayport.cc
824
const
StunErrorCodeAttribute
* attr = response->GetErrorCode();
relayserver.cc
90
StunErrorCodeAttribute
* err_code = StunAttribute::CreateErrorCode();
turnserver.cc
204
VERIFY(resp->AddAttribute(new cricket::
StunErrorCodeAttribute
(
[
all
...]
Completed in 38 milliseconds