OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:connections_
(Results
1 - 10
of
10
) sorted by null
/external/webrtc/webrtc/base/
httpserver.cc
35
for (ConnectionMap::iterator it =
connections_
.begin();
36
it !=
connections_
.end();
49
connections_
.insert(ConnectionMap::value_type(connection_id, connection));
75
if (
connections_
.empty()) {
81
for (ConnectionMap::const_iterator it =
connections_
.begin();
82
it !=
connections_
.end(); ++it) {
93
ConnectionMap::iterator it =
connections_
.find(connection_id);
94
if (it ==
connections_
.end())
101
ConnectionMap::iterator it =
connections_
.find(connection_id);
102
if (it ==
connections_
.end())
[
all
...]
httpserver.h
109
ConnectionMap
connections_
;
member in class:rtc::HttpServer
virtualsocketserver.cc
506
bindings_(new AddressMap()),
connections_
(new ConnectionMap()),
521
delete
connections_
;
702
connections_
->insert(std::pair<SocketAddressPair,
714
ConnectionMap::iterator it =
connections_
->find(address_pair);
715
return (
connections_
->end() != it) ? it->second : NULL;
725
connections_
->erase(address_pair);
[
all
...]
virtualsocketserver.h
234
ConnectionMap*
connections_
;
member in class:rtc::VirtualSocketServer
/external/webrtc/webrtc/p2p/base/
p2ptransportchannel.cc
262
connections_
.push_back(connection);
311
for (Connection* connection :
connections_
) {
364
for (Connection* conn :
connections_
) {
391
for (Connection* connection :
connections_
) {
799
<<
connections_
.size() << " total)";
808
std::find(
connections_
.begin(),
connections_
.end(), connection);
809
return citer !=
connections_
.end();
[
all
...]
relayserver.cc
151
return static_cast<int>(
connections_
.size());
156
for (ConnectionMap::const_iterator it =
connections_
.begin();
157
it !=
connections_
.end(); ++it) {
167
for (ConnectionMap::const_iterator it =
connections_
.begin();
168
it !=
connections_
.end(); ++it) {
192
ConnectionMap::iterator piter =
connections_
.find(ap);
193
if (piter ==
connections_
.end()) {
236
ConnectionMap::iterator piter =
connections_
.find(ap);
237
if (piter !=
connections_
.end()) {
510
ASSERT(
connections_
.find(conn->addr_pair()) == connections_.end())
[
all
...]
port.cc
207
AddressMap::iterator iter =
connections_
.begin();
208
while (iter !=
connections_
.end()) {
218
AddressMap::const_iterator iter =
connections_
.find(remote_addr);
219
if (iter !=
connections_
.end())
265
connections_
[conn->remote_candidate().address()] = conn;
314
AddressMap::iterator iter =
connections_
.begin();
315
for (; iter !=
connections_
.end(); ++iter) {
644
connections_
.find(conn->remote_candidate().address());
645
ASSERT(iter !=
connections_
.end());
646
connections_
.erase(iter)
[
all
...]
p2ptransportchannel.h
174
const std::vector<Connection*>& connections() const { return
connections_
; }
274
std::vector<Connection *>
connections_
;
member in class:cricket::P2PTransportChannel
281
bool had_connection_ = false; // if
connections_
has ever been nonempty
port.h
216
const AddressMap& connections() { return
connections_
; }
357
return ice_role_ == ICEROLE_CONTROLLED &&
connections_
.empty();
382
AddressMap
connections_
;
member in class:cricket::Port
relayserver.h
85
ConnectionMap
connections_
;
member in class:cricket::RelayServer
Completed in 81 milliseconds