Home
last modified time | relevance | path

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

/system/connectivity/wificond/aidl/android/net/wifi/
DIWificond.aidl28 @nullable IApInterface createApInterface(@utf8InCpp String iface_name); in createApInterface() argument
31 @nullable IClientInterface createClientInterface(@utf8InCpp String iface_name); in createClientInterface() argument
34 boolean tearDownApInterface(@utf8InCpp String iface_name); in tearDownApInterface() argument
37 boolean tearDownClientInterface(@utf8InCpp String iface_name); in tearDownClientInterface() argument
/system/connectivity/wificond/
Dserver.cpp91 Status Server::createApInterface(const std::string& iface_name, in createApInterface() argument
94 if (!SetupInterface(iface_name, &interface)) { in createApInterface()
105 ap_interfaces_[iface_name] = std::move(ap_interface); in createApInterface()
110 Status Server::tearDownApInterface(const std::string& iface_name, in tearDownApInterface() argument
113 const auto iter = ap_interfaces_.find(iface_name); in tearDownApInterface()
122 Status Server::createClientInterface(const std::string& iface_name, in createClientInterface() argument
125 if (!SetupInterface(iface_name, &interface)) { in createClientInterface()
139 client_interfaces_[iface_name] = std::move(client_interface); in createClientInterface()
144 Status Server::tearDownClientInterface(const std::string& iface_name, in tearDownClientInterface() argument
147 const auto iter = client_interfaces_.find(iface_name); in tearDownClientInterface()
[all …]
Dserver.h68 const std::string& iface_name,
73 const std::string& iface_name,
78 const std::string& iface_name,
82 const std::string& iface_name,
99 bool SetupInterface(const std::string& iface_name, InterfaceInfo* interface);
/system/connectivity/wificond/tests/
Dmock_netlink_utils.h34 bool(uint32_t* out_wiphy_index, const std::string& iface_name));
/system/connectivity/wificond/net/
Dnetlink_utils.cpp111 const std::string& iface_name) { in GetWiphyIndex() argument
118 if (!iface_name.empty()) { in GetWiphyIndex()
119 int ifindex = if_nametoindex(iface_name.c_str()); in GetWiphyIndex()
Dnetlink_utils.h175 const std::string& iface_name);