Home
last modified time | relevance | path

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

/external/chromium_org/content/renderer/pepper/
Dpepper_broker.cc121 DCHECK(pending_connects_.find(client) == pending_connects_.end()) in AddPendingConnect()
133 pending_connects_[client].client = client->AsWeakPtr(); in AddPendingConnect()
139 pending_connects_.erase(client); in Disconnect()
161 for (ClientMap::iterator i = pending_connects_.begin(); in OnBrokerChannelConnected()
162 i != pending_connects_.end();) { in OnBrokerChannelConnected()
172 pending_connects_.erase(i++); in OnBrokerChannelConnected()
178 ClientMap::iterator entry = pending_connects_.find(client); in OnBrokerPermissionResult()
179 if (entry == pending_connects_.end()) in OnBrokerPermissionResult()
184 pending_connects_.erase(entry); in OnBrokerPermissionResult()
193 pending_connects_.erase(entry); in OnBrokerPermissionResult()
[all …]
Dpepper_broker.h92 ClientMap pending_connects_; variable
/external/chromium_org/content/common/mojo/
Dservice_registry_impl.cc21 while (!pending_connects_.empty()) { in ~ServiceRegistryImpl()
22 mojo::CloseRaw(pending_connects_.front().second); in ~ServiceRegistryImpl()
23 pending_connects_.pop(); in ~ServiceRegistryImpl()
32 while (!pending_connects_.empty()) { in BindRemoteServiceProvider()
34 mojo::String::From(pending_connects_.front().first), in BindRemoteServiceProvider()
35 mojo::ScopedMessagePipeHandle(pending_connects_.front().second)); in BindRemoteServiceProvider()
36 pending_connects_.pop(); in BindRemoteServiceProvider()
60 pending_connects_.push( in ConnectToRemoteService()
Dservice_registry_impl.h57 pending_connects_; variable
/external/chromium_org/net/socket/
Dwebsocket_transport_client_socket_pool.cc254 DCHECK(pending_connects_.empty()); in ~WebSocketTransportClientSocketPool()
397 for (PendingConnectsMap::iterator it = pending_connects_.begin(); in FlushWithError()
398 it != pending_connects_.end(); in FlushWithError()
404 pending_connects_.clear(); in FlushWithError()
446 dict->SetInteger("connecting_socket_count", pending_connects_.size()); in GetInfoAsValue()
535 base::checked_cast<int>(pending_connects_.size()) >= in ReachedMaxSocketsLimit()
562 pending_connects_.insert(PendingConnectsMap::value_type( in AddJob()
568 PendingConnectsMap::iterator it = pending_connects_.find(handle); in DeleteJob()
569 if (it == pending_connects_.end()) in DeleteJob()
577 DCHECK(pending_connects_.find(handle) == it); in DeleteJob()
[all …]
Dwebsocket_transport_client_socket_pool.h230 PendingConnectsMap pending_connects_; variable