HomeSort by relevance Sort by last modified time
    Searched refs:Hostapd (Results 1 - 5 of 5) sorted by null

  /external/wpa_supplicant_8/hostapd/hidl/1.0/
hostapd.h 17 #include <android/hardware/wifi/hostapd/1.0/IHostapd.h>
24 #include "ap/hostapd.h"
30 namespace hostapd { namespace in namespace:android::hardware::wifi
35 * Implementation of the hostapd hidl object. This hidl
37 * hostapd.
39 class Hostapd : public V1_0::IHostapd
42 Hostapd(hapd_interfaces* interfaces);
43 ~Hostapd() override = default;
63 DISALLOW_COPY_AND_ASSIGN(Hostapd);
67 } // namespace hostapd
    [all...]
hostapd.cpp 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
195 namespace hostapd { namespace in namespace:android::hardware::wifi
    [all...]
hidl.cpp 13 #include "hostapd.h"
25 using android::hardware::wifi::hostapd::V1_0::IHostapd;
26 using android::hardware::wifi::hostapd::V1_0::implementation::Hostapd;
28 // This file is a bridge between the hostapd code written in 'C' and the HIDL
53 service = new Hostapd(interfaces);
  /tools/test/connectivity/acts/framework/acts/controllers/ap_lib/
hostapd.py 26 """An error caused by hostapd."""
29 class Hostapd(object):
30 """Manages the hostapd program.
33 config: The hostapd configuration that is being used.
36 PROGRAM_FILE = '/usr/sbin/hostapd'
51 self._log_file = 'hostapd-%s.log' % self._interface
52 self._ctrl_file = 'hostapd-%s.ctrl' % self._interface
53 self._config_file = 'hostapd-%s.conf' % self._interface
57 """Starts hostapd
59 Starts the hostapd daemon and runs it in the background
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/
access_point.py 27 from acts.controllers.ap_lib import hostapd
83 _ApInstance = collections.namedtuple('_ApInstance', ['hostapd', 'subnet'])
132 # the hostapd instance running against the interface.
148 Bring down hostapd if instance is running, bring down all bridge
153 # Unused interfaces such as existing hostapd daemon, guest, mesh
157 self.ssh.run('stop hostapd')
159 self.log.debug('No hostapd running')
175 self.log.exception('Unable to bring down hostapd. Rebooting.')
191 will start up hostapd on that interface. Next a subnet is created for
199 directly into the hostapd config file. Thi
    [all...]

Completed in 90 milliseconds