Home
last modified time | relevance | path

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

/external/openscreen/osp/impl/quic/
Dquic_server.cc94 auto connection_entry = connections_.find(endpoint_id); in CreateProtocolConnection() local
95 if (connection_entry == connections_.end()) { in CreateProtocolConnection()
99 this, connection_entry->second.connection.get(), in CreateProtocolConnection()
100 connection_entry->second.delegate.get(), endpoint_id); in CreateProtocolConnection()
107 auto connection_entry = connections_.find(connection->endpoint_id()); in OnConnectionDestroyed() local
108 if (connection_entry == connections_.end()) in OnConnectionDestroyed()
111 connection_entry->second.delegate->DropProtocolConnection(connection); in OnConnectionDestroyed()
139 auto connection_entry = connections_.find(endpoint_id); in OnConnectionClosed() local
140 if (connection_entry == connections_.end()) in OnConnectionClosed()
Dquic_client.cc92 auto connection_entry = connections_.find(endpoint_id); in CreateProtocolConnection() local
93 if (connection_entry == connections_.end()) in CreateProtocolConnection()
96 this, connection_entry->second.connection.get(), in CreateProtocolConnection()
97 connection_entry->second.delegate.get(), endpoint_id); in CreateProtocolConnection()
104 auto connection_entry = connections_.find(connection->endpoint_id()); in OnConnectionDestroyed() local
105 if (connection_entry == connections_.end()) in OnConnectionDestroyed()
108 connection_entry->second.delegate->DropProtocolConnection(connection); in OnConnectionDestroyed()
149 auto connection_entry = connections_.find(endpoint_id); in OnConnectionClosed() local
150 if (connection_entry == connections_.end()) in OnConnectionClosed()