Home
last modified time | relevance | path

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

/external/openscreen/osp/impl/discovery/mdns/
Dmdns_responder_adapter_impl.cc219 responder_interface_info_.clear(); in Close()
252 const auto info_it = responder_interface_info_.find(socket); in RegisterInterface()
253 if (info_it != responder_interface_info_.end()) in RegisterInterface()
256 NetworkInterfaceInfo& info = responder_interface_info_[socket]; in RegisterInterface()
291 const auto info_it = responder_interface_info_.find(socket); in DeregisterInterface()
292 if (info_it == responder_interface_info_.end()) in DeregisterInterface()
304 responder_interface_info_.erase(info_it); in DeregisterInterface()
1001 for (auto& info : responder_interface_info_) { in AdvertiseInterfaces()
1025 for (auto& info : responder_interface_info_) { in DeadvertiseInterfaces()
Dmdns_responder_adapter_impl.h142 std::map<UdpSocket*, NetworkInterfaceInfo> responder_interface_info_; variable