Home | History | Annotate | Download | only in 1.0

Lines Matching refs:Hostapd

17 #include "hostapd.h"
25 // The HIDL implementation for hostapd creates a hostapd.conf dynamically for
27 // file parsing logic in hostapd code. Helps us to avoid duplication of code
31 constexpr char kConfFileNameFmt[] = "/data/vendor/wifi/hostapd/hostapd_%s.conf";
36 using android::hardware::wifi::hostapd::V1_0::IHostapd;
51 MSG_ERROR, "Cannot write hostapd config to %s, error: %s",
57 MSG_ERROR, "hostapd config file uid: %d, gid: %d, mode: %d",
62 "Error calling stat() on hostapd config file: %s",
170 "ctrl_interface=/data/vendor/wifi/hostapd/ctrl\n"
171 // ssid2 signals to hostapd that the value is not a literal value
173 // std::string and hostapd needs to expect that.
195 namespace hostapd {
200 Hostapd::Hostapd(struct hapd_interfaces* interfaces) : interfaces_(interfaces)
203 Return<void> Hostapd::addAccessPoint(
208 this, &Hostapd::addAccessPointInternal, _hidl_cb, iface_params,
212 Return<void> Hostapd::removeAccessPoint(
216 this, &Hostapd::removeAccessPointInternal, _hidl_cb, iface_name);
219 Return<void> Hostapd::terminate() {
225 HostapdStatus Hostapd::addAccessPointInternal(
268 HostapdStatus Hostapd::removeAccessPointInternal(const std::string& iface_name)
283 } // namespace hostapd