Lines Matching refs:pending_entry
115 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()
237 auto& callbacks = pending_entry->second.callbacks; in CancelConnectRequest()
247 pending_connections_.erase(pending_entry); in CancelConnectRequest()