/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
p2ptransportchannel.h | 56 RemoteCandidate(const Candidate& c, Port* origin_port) 57 : Candidate(c), origin_port_(origin_port) {} 59 Port* origin_port() { return origin_port_; } function in class:cricket::RemoteCandidate 113 bool CreateConnections(const Candidate &remote_candidate, Port* origin_port, 116 Port* origin_port, bool readable); 118 Port* origin_port);
|
p2ptransportchannel.cc | 67 cricket::Port* origin_port) { 68 if (!origin_port) 70 else if (port == origin_port) 284 CreateConnection(port, *iter, iter->origin_port(), false); 370 Port* origin_port, 384 if (CreateConnection(*it, remote_candidate, origin_port, readable)) { 385 if (*it == origin_port) 390 if ((origin_port != NULL) && 391 std::find(ports_.begin(), ports_.end(), origin_port) == ports_.end()) { 392 if (CreateConnection(origin_port, remote_candidate, origin_port, readable) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
p2ptransportchannel.h | 57 RemoteCandidate(const Candidate& c, PortInterface* origin_port) 58 : Candidate(c), origin_port_(origin_port) {} 60 PortInterface* origin_port() { return origin_port_; } function in class:cricket::RemoteCandidate 184 PortInterface* origin_port, bool readable); 186 PortInterface* origin_port, bool readable); 191 PortInterface* origin_port);
|
p2ptransportchannel.cc | 64 cricket::PortInterface* origin_port) { 65 if (!origin_port) 67 else if (port == origin_port) 380 CreateConnection(port, *iter, iter->origin_port(), false); 627 PortInterface* origin_port, 655 if (CreateConnection(*it, new_remote_candidate, origin_port, readable)) { 656 if (*it == origin_port) 661 if ((origin_port != NULL) && 662 std::find(ports_.begin(), ports_.end(), origin_port) == ports_.end()) { 664 origin_port, new_remote_candidate, origin_port, readable) [all...] |