Home
last modified time | relevance | path

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

/external/openscreen/osp/impl/quic/
Dquic_client.cc115 auto pending_entry = pending_connections_.find(endpoint); in OnCryptoHandshakeComplete()
116 if (pending_entry == pending_connections_.end()) in OnCryptoHandshakeComplete()
133 pending_connections_.erase(pending_entry); in OnCryptoHandshakeComplete()
179 auto pending_entry = pending_connections_.find(endpoint); in CreatePendingConnection()
180 if (pending_entry == pending_connections_.end()) { in CreatePendingConnection()
204 auto pending_result = pending_connections_.emplace( in StartConnectionRequest()
213 for (auto& conn : pending_connections_) in CloseAllConnections()
216 pending_connections_.clear(); in CloseAllConnections()
235 auto pending_entry = pending_connections_.find(request_entry->second.first); in CancelConnectRequest()
236 if (pending_entry != pending_connections_.end()) { in CancelConnectRequest()
[all …]
Dquic_server.cc119 auto pending_entry = pending_connections_.find(endpoint); in OnCryptoHandshakeComplete()
120 if (pending_entry == pending_connections_.end()) in OnCryptoHandshakeComplete()
123 pending_connections_.erase(pending_entry); in OnCryptoHandshakeComplete()
159 for (auto& conn : pending_connections_) in CloseAllConnections()
162 pending_connections_.clear(); in CloseAllConnections()
186 pending_connections_.emplace( in OnIncomingConnection()
Dquic_server.h94 std::map<IPEndpoint, ServiceConnectionData> pending_connections_; variable
Dquic_client.h122 std::map<IPEndpoint, PendingConnectionData> pending_connections_; variable
/external/openscreen/cast/sender/channel/
Dsender_socket_factory.cc51 if (it == pending_connections_.end()) { in Connect()
52 pending_connections_.emplace_back( in Connect()
72 if (it == pending_connections_.end()) { in OnConnected()
79 pending_connections_.erase(it); in OnConnected()
108 if (it == pending_connections_.end()) { in OnConnectionFailed()
113 pending_connections_.erase(it); in OnConnectionFailed()
119 pending_connections_.swap(connections); in OnError()
127 return std::find_if(pending_connections_.begin(), pending_connections_.end(), in FindPendingConnection()
/external/openscreen/cast/sender/public/
Dsender_socket_factory.h103 std::vector<PendingConnection> pending_connections_; variable