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

  /hardware/libhardware_legacy/include/hardware_legacy/
wifi.h 145 int wifi_change_fw_path(const char *fwpath);
  /system/netd/server/
SoftapController.cpp 191 char *fwpath = NULL; local
199 fwpath = (char *)wifi_get_fw_path(WIFI_GET_FW_PATH_AP);
201 fwpath = (char *)wifi_get_fw_path(WIFI_GET_FW_PATH_P2P);
203 fwpath = (char *)wifi_get_fw_path(WIFI_GET_FW_PATH_STA);
207 if (!fwpath) {
211 if (wifi_change_fw_path((const char *)fwpath)) {
  /hardware/libhardware_legacy/wifi/
wifi.c 96 #define WIFI_DRIVER_FW_PATH_PARAM "/sys/module/wlan/parameters/fwpath"
814 int wifi_change_fw_path(const char *fwpath)
820 if (!fwpath)
827 len = strlen(fwpath) + 1;
828 if (TEMP_FAILURE_RETRY(write(fd, fwpath, len)) != len) {

Completed in 264 milliseconds