Home
last modified time | relevance | path

Searched refs:pending_entry (Results 1 – 2 of 2) sorted by relevance

/external/openscreen/osp/impl/quic/
Dquic_client.cc115 auto pending_entry = pending_connections_.find(endpoint); in OnCryptoHandshakeComplete() local
116 if (pending_entry == pending_connections_.end()) in OnCryptoHandshakeComplete()
119 ServiceConnectionData connection_data = std::move(pending_entry->second.data); in OnCryptoHandshakeComplete()
125 for (auto& request : pending_entry->second.callbacks) { in OnCryptoHandshakeComplete()
133 pending_connections_.erase(pending_entry); in OnCryptoHandshakeComplete()
179 auto pending_entry = pending_connections_.find(endpoint); in CreatePendingConnection() local
180 if (pending_entry == pending_connections_.end()) { in CreatePendingConnection()
185 pending_entry->second.callbacks.emplace_back(request_id, request); in CreatePendingConnection()
235 auto pending_entry = pending_connections_.find(request_entry->second.first); in CancelConnectRequest() local
236 if (pending_entry != pending_connections_.end()) { in CancelConnectRequest()
[all …]
Dquic_server.cc119 auto pending_entry = pending_connections_.find(endpoint); in OnCryptoHandshakeComplete() local
120 if (pending_entry == pending_connections_.end()) in OnCryptoHandshakeComplete()
122 ServiceConnectionData connection_data = std::move(pending_entry->second); in OnCryptoHandshakeComplete()
123 pending_connections_.erase(pending_entry); in OnCryptoHandshakeComplete()