HomeSort by relevance Sort by last modified time
    Searched refs:connections_ (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/content/browser/dom_storage/
dom_storage_host.cc 20 AreaMap::const_iterator it = connections_.begin();
21 for (; it != connections_.end(); ++it)
23 connections_.clear(); // Clear prior to releasing the context_
41 connections_[connection_id] = references;
46 AreaMap::iterator found = connections_.find(connection_id);
47 if (found == connections_.end())
50 connections_.erase(found);
141 AreaMap::const_iterator it = connections_.begin();
142 for (; it != connections_.end(); ++it) {
152 AreaMap::iterator found = connections_.find(connection_id)
    [all...]
dom_storage_host.h 67 AreaMap connections_; member in class:content::DOMStorageHost
  /external/chromium_org/webkit/common/database/
database_connections.cc 19 DCHECK(connections_.empty());
23 return connections_.empty();
30 connections_.find(origin_identifier);
31 if (origin_it == connections_.end())
39 return (connections_.find(origin_identifier) != connections_.end());
45 int& count = connections_[origin_identifier][database_name].first;
56 connections_.clear();
63 connections.connections_.begin();
64 origin_it != connections.connections_.end()
    [all...]
database_connections.h 61 mutable OriginConnections connections_; // mutable for GetOpenDatabaseSize member in class:webkit_database::DatabaseConnections
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
p2ptransportchannel.cc 226 connections_.clear();
424 connections_.push_back(connection);
433 << connections_.size() << " total)";
518 for (uint32 i = 0; i < connections_.size(); ++i)
519 connections_[i]->UpdateState(now);
545 for (uint32 i = 0; i < connections_.size(); ++i)
546 networks.insert(connections_[i]->port()->network());
554 std::stable_sort(connections_.begin(), connections_.end(), cmp);
556 if (connections_.size() > 0
    [all...]
p2ptransportchannel.h 93 const std::vector<Connection *>& connections() const { return connections_; }
148 std::vector<Connection *> connections_; member in class:cricket::P2PTransportChannel
relayserver.cc 163 return connections_.size();
168 for (ConnectionMap::const_iterator it = connections_.begin();
169 it != connections_.end(); ++it) {
179 for (ConnectionMap::const_iterator it = connections_.begin();
180 it != connections_.end(); ++it) {
207 ConnectionMap::iterator piter = connections_.find(ap);
208 if (piter == connections_.end()) {
253 ConnectionMap::iterator piter = connections_.find(ap);
254 if (piter != connections_.end()) {
534 ASSERT(connections_.find(conn->addr_pair()) == connections_.end())
    [all...]
port.cc 153 AddressMap::iterator iter = connections_.begin();
154 while (iter != connections_.end()) {
164 AddressMap::const_iterator iter = connections_.find(remote_addr);
165 if (iter != connections_.end())
191 connections_[conn->remote_candidate().address()] = conn;
439 connections_.find(conn->remote_candidate().address());
440 ASSERT(iter != connections_.end());
441 connections_.erase(iter);
447 ASSERT(connections_.empty());
458 if ((lifetime_ == LT_POSTTIMEOUT) && connections_.empty())
    [all...]
port.h 141 const AddressMap& connections() { return connections_; }
253 AddressMap connections_; member in class:cricket::Port
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpserver.cc 52 for (ConnectionMap::iterator it = connections_.begin();
53 it != connections_.end();
66 connections_.insert(ConnectionMap::value_type(connection_id, connection));
92 if (connections_.empty()) {
98 for (ConnectionMap::const_iterator it = connections_.begin();
99 it != connections_.end(); ++it) {
110 ConnectionMap::iterator it = connections_.find(connection_id);
111 if (it == connections_.end())
118 ConnectionMap::iterator it = connections_.find(connection_id);
119 if (it == connections_.end())
    [all...]
httpserver.h 126 ConnectionMap connections_; member in class:talk_base::HttpServer
virtualsocketserver.h 232 ConnectionMap* connections_; member in class:talk_base::VirtualSocketServer
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
p2ptransportchannel.cc 204 connections_.push_back(connection);
320 connections_.clear();
690 << connections_.size() << " total)";
704 std::find(connections_.begin(), connections_.end(), connection);
705 return citer != connections_.end();
800 for (it = connections_.begin(); it != connections_.end(); ++it) {
840 for (uint32 i = 0; i < connections_.size(); ++i)
841 connections_[i]->UpdateState(now)
    [all...]
relayserver.cc 169 return static_cast<int>(connections_.size());
174 for (ConnectionMap::const_iterator it = connections_.begin();
175 it != connections_.end(); ++it) {
185 for (ConnectionMap::const_iterator it = connections_.begin();
186 it != connections_.end(); ++it) {
209 ConnectionMap::iterator piter = connections_.find(ap);
210 if (piter == connections_.end()) {
252 ConnectionMap::iterator piter = connections_.find(ap);
253 if (piter != connections_.end()) {
526 ASSERT(connections_.find(conn->addr_pair()) == connections_.end())
    [all...]
port.cc 231 AddressMap::iterator iter = connections_.begin();
232 while (iter != connections_.end()) {
242 AddressMap::const_iterator iter = connections_.find(remote_addr);
243 if (iter != connections_.end())
277 connections_[conn->remote_candidate().address()] = conn;
323 AddressMap::iterator iter = connections_.begin();
324 for (; iter != connections_.end(); ++iter) {
700 connections_.find(conn->remote_candidate().address());
701 ASSERT(iter != connections_.end());
702 connections_.erase(iter)
    [all...]
p2ptransportchannel.h 171 std::vector<Connection *> connections_; member in class:cricket::P2PTransportChannel
  /external/chromium_org/net/test/embedded_test_server/
embedded_test_server.cc 175 STLDeleteContainerPairSecondPointers(connections_.begin(),
176 connections_.end());
177 connections_.clear();
207 connections_.erase(connection->socket_.get());
235 connections_[connection] = http_connection;
260 connections_.erase(connection);
268 connections_.find(socket);
269 if (it == connections_.end()) {
embedded_test_server.h 155 std::map<StreamListenSocket*, HttpConnection*> connections_; member in class:net::test_server::EmbeddedTestServer
  /external/chromium_org/content/browser/indexed_db/
indexed_db_context_impl.cc 292 if (connections_.find(origin_url) != connections_.end()) {
293 ConnectionSet& connections = connections_[origin_url];
301 DCHECK_EQ(connections_[origin_url].size(), 0UL);
302 connections_.erase(origin_url);
311 if (connections_.find(origin_url) == connections_.end())
314 return connections_[origin_url].size();
336 DCHECK_EQ(connections_[origin_url].count(connection), 0UL);
343 connections_[origin_url].insert(connection)
    [all...]
indexed_db_database.cc     [all...]
indexed_db_context_impl.h 138 std::map<GURL, ConnectionSet> connections_; member in class:content::IndexedDBContextImpl
  /external/chromium_org/chrome_frame/test/
test_server.cc 151 for (it = connections_.begin(); it != connections_.end(); ++it)
153 connections_.clear();
193 for (it = connections_.begin(); it != connections_.end(); it++) {
203 connections_.push_back(new Connection(connection));
251 connections_.erase(std::find(connections_.begin(), connections_.end(), c));
test_server.h 319 return connections_;
340 ConnectionList connections_; member in class:test_server::SimpleWebServer
  /external/chromium_org/chrome/test/chromedriver/net/
test_http_server.cc 84 connections_.insert(connection_id);
124 connections_.erase(connection_id);
125 if (connections_.empty())
test_http_server.h 83 std::set<int> connections_; member in class:TestHttpServer

Completed in 904 milliseconds

1 2