Searched refs:iface_name (Results 1 – 6 of 6) sorted by relevance
/system/connectivity/wificond/aidl/android/net/wifi/ |
D | IWificond.aidl | 28 @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/ |
D | server.cpp | 91 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 …]
|
D | server.h | 68 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/ |
D | mock_netlink_utils.h | 34 bool(uint32_t* out_wiphy_index, const std::string& iface_name));
|
/system/connectivity/wificond/net/ |
D | netlink_utils.cpp | 111 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()
|
D | netlink_utils.h | 175 const std::string& iface_name);
|