Home
last modified time | relevance | path

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

/external/openscreen/osp/impl/quic/
Dquic_service_common.cc88 auto stream_entry = streams_.find(connection->stream()->id()); in DropProtocolConnection() local
89 if (stream_entry == streams_.end()) in DropProtocolConnection()
91 stream_entry->second.protocol_connection = nullptr; in DropProtocolConnection()
132 auto stream_entry = streams_.find(stream->id()); in OnReceived() local
133 if (stream_entry == streams_.end()) in OnReceived()
135 ServiceStreamPair& stream_pair = stream_entry->second; in OnReceived()
142 auto stream_entry = streams_.find(stream_id); in OnClose() local
143 if (stream_entry == streams_.end()) in OnClose()
145 ServiceStreamPair& stream_pair = stream_entry->second; in OnClose()
155 closed_streams_.push_back(std::move(stream_entry->second)); in OnClose()
[all …]