OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fwpath
(Results
1 - 3
of
3
) sorted by null
/hardware/libhardware_legacy/include/hardware_legacy/
wifi.h
144
int wifi_change_fw_path(const char *
fwpath
);
/system/netd/
SoftapController.cpp
205
char *
fwpath
= NULL;
local
213
fwpath
= (char *)wifi_get_fw_path(WIFI_GET_FW_PATH_AP);
215
fwpath
= (char *)wifi_get_fw_path(WIFI_GET_FW_PATH_P2P);
217
fwpath
= (char *)wifi_get_fw_path(WIFI_GET_FW_PATH_STA);
219
if (!
fwpath
)
221
if (wifi_change_fw_path((const char *)
fwpath
)) {
/hardware/libhardware_legacy/wifi/
wifi.c
78
#define WIFI_DRIVER_FW_PATH_PARAM "/sys/module/wlan/parameters/
fwpath
"
824
int wifi_change_fw_path(const char *
fwpath
)
830
if (!
fwpath
)
837
len = strlen(
fwpath
) + 1;
838
if (TEMP_FAILURE_RETRY(write(fd,
fwpath
, len)) != len) {
Completed in 68 milliseconds