Home
last modified time | relevance | path

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

/aosp_15_r20/external/openscreen/osp/impl/quic/
H A 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 …]
H A 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()
H A Dquic_server.h94 std::map<IPEndpoint, ServiceConnectionData> pending_connections_; variable
H A Dquic_client.h122 std::map<IPEndpoint, PendingConnectionData> pending_connections_; variable
/aosp_15_r20/external/openscreen/cast/sender/channel/
H A Dsender_socket_factory.cc53 if (it == pending_connections_.end()) { in Connect()
54 pending_connections_.emplace_back( in Connect()
74 if (it == pending_connections_.end()) { in OnConnected()
81 pending_connections_.erase(it); in OnConnected()
110 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()
/aosp_15_r20/external/perfetto/src/traced_relay/
H A Drelay_service.cc262 pending_connections_.push_back( in OnNewIncomingConnection()
269 std::find_if(pending_connections_.begin(), pending_connections_.end(), in OnConnect()
273 PERFETTO_CHECK(it != pending_connections_.end()); in OnConnect()
276 auto remover = base::OnScopeExit([&]() { pending_connections_.erase(it); }); in OnConnect()
H A Drelay_service.h161 std::vector<PendingConnection> pending_connections_; variable
/aosp_15_r20/external/openscreen/cast/sender/public/
H A Dsender_socket_factory.h107 std::vector<PendingConnection> pending_connections_; variable