Home
last modified time | relevance | path

Searched refs:tcptype (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
Dcandidate.h142 const std::string& tcptype() const { return tcptype_; } in tcptype() function
143 void set_tcptype(const std::string& tcptype){ in set_tcptype() argument
144 tcptype_ = tcptype; in set_tcptype()
Dtcpport.cc84 if (address.tcptype() == TCPTYPE_ACTIVE_STR || in CreateConnection()
85 (address.tcptype().empty() && address.address().port() == 0)) { in CreateConnection()
Dport.cc259 const std::string& tcptype, in AddAddress() argument
265 ASSERT(!tcptype.empty()); in AddAddress()
273 c.set_tcptype(tcptype); in AddAddress()
Dport.h322 const std::string& protocol, const std::string& tcptype,
Dtransport.cc443 (cand.tcptype() == TCPTYPE_ACTIVE_STR || port == 0)) { in VerifyCandidate()
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
Dwebrtcsdp.cc1039 std::string tcptype; in ParseCandidate() local
1042 tcptype = fields[++current_position]; in ParseCandidate()
1045 if (tcptype != cricket::TCPTYPE_ACTIVE_STR && in ParseCandidate()
1046 tcptype != cricket::TCPTYPE_PASSIVE_STR && in ParseCandidate()
1047 tcptype != cricket::TCPTYPE_SIMOPEN_STR) { in ParseCandidate()
1088 candidate->set_tcptype(tcptype); in ParseCandidate()
1766 os << kTcpCandidateType << " " << it->tcptype() << " "; in BuildCandidate()