Home
last modified time | relevance | path

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

/freebsd/contrib/wpa/wpa_supplicant/binder/
H A Dbinder_manager.cpp59 if (iface_object_map_.find(iface_key) != iface_object_map_.end()) in registerInterface()
62 iface_object_map_[iface_key] = new Iface(wpa_s); in registerInterface()
63 if (!iface_object_map_[iface_key].get()) in registerInterface()
77 if (iface_object_map_.find(iface_key) == iface_object_map_.end()) in unregisterInterface()
81 iface_object_map_.erase(iface_key); in unregisterInterface()
93 if (iface_object_map_.find(iface_object_key) == iface_object_map_.end()) in getIfaceBinderObjectByKey()
96 *iface_object = iface_object_map_[iface_object_key]; in getIfaceBinderObjectByKey()
H A Dbinder_manager.h53 std::map<const void *, android::sp<Iface>> iface_object_map_; variable