Home
last modified time | relevance | path

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

/external/openscreen/cast/sender/channel/
Dsender_socket_factory.cc90 pending_auth_.emplace_back( in OnConnected()
94 PendingAuth& pending = *pending_auth_.back(); in OnConnected()
100 pending_auth_.pop_back(); in OnConnected()
134 auto it = std::find_if(pending_auth_.begin(), pending_auth_.end(), in OnError()
139 if (it == pending_auth_.end()) { in OnError()
144 pending_auth_.erase(it); in OnError()
149 auto it = std::find_if(pending_auth_.begin(), pending_auth_.end(), in OnMessage()
154 if (it == pending_auth_.end()) { in OnMessage()
160 pending_auth_.erase(it); in OnMessage()
/external/openscreen/cast/sender/public/
Dsender_socket_factory.h104 std::vector<std::unique_ptr<PendingAuth>> pending_auth_; variable