Home
last modified time | relevance | path

Searched refs:WifiCommand (Results 1 – 13 of 13) sorted by relevance

/device/generic/goldfish/network/netmgr/commands/
Dwifi_command.cpp68 WifiCommand::WifiCommand(Bridge& bridge) in WifiCommand() function in WifiCommand
74 Result WifiCommand::onCommand(const char* /*command*/, const char* args) { in onCommand()
104 void WifiCommand::readConfig() { in readConfig()
107 Result WifiCommand::writeConfig() { in writeConfig()
150 Result WifiCommand::triggerHostApd() { in triggerHostApd()
155 Result WifiCommand::onAdd(const std::vector<std::string>& arguments) { in onAdd()
187 Result WifiCommand::onBlock(const std::vector<std::string>& arguments) { in onBlock()
196 Result WifiCommand::onUnblock(const std::vector<std::string>& arguments) { in onUnblock()
Dwifi_command.h29 class WifiCommand : public Command {
31 explicit WifiCommand(Bridge& bridge);
32 virtual ~WifiCommand() = default;
/device/linaro/poplar/wifi/wifi_hal/
Dcommon.h158 class WifiCommand; variable
170 WifiCommand *cmd;
247 wifi_error wifi_register_cmd(wifi_handle handle, int id, WifiCommand *cmd);
248 WifiCommand *wifi_unregister_cmd(wifi_handle handle, int id);
249 WifiCommand *wifi_get_cmd(wifi_handle handle, int id);
250 void wifi_unregister_cmd(wifi_handle handle, WifiCommand *cmd);
Dcpp_bindings.cpp600 int WifiCommand::requestResponse() { in requestResponse()
609 int WifiCommand::requestResponse(WifiRequest& request) { in requestResponse()
639 int WifiCommand::requestEvent(int cmd) { in requestEvent()
668 int WifiCommand::requestVendorEvent(uint32_t id, int subcmd) { in requestVendorEvent()
693 int WifiCommand::response_handler(struct nl_msg *msg, void *arg) { in response_handler()
695 WifiCommand *cmd = (WifiCommand *)arg; in response_handler()
707 int WifiCommand::event_handler(struct nl_msg *msg, void *arg) { in event_handler()
708 WifiCommand *cmd = (WifiCommand *)arg; in event_handler()
723 int WifiCommand::valid_handler(struct nl_msg *msg, void *arg) { in valid_handler()
730 int WifiCommand::ack_handler(struct nl_msg *msg, void *arg) { in ack_handler()
[all …]
Dcommon.cpp171 wifi_error wifi_register_cmd(wifi_handle handle, int id, WifiCommand *cmd) in wifi_register_cmd()
193 WifiCommand *wifi_unregister_cmd(wifi_handle handle, int id) in wifi_unregister_cmd()
199 WifiCommand *cmd = NULL; in wifi_unregister_cmd()
218 WifiCommand *wifi_get_cmd(wifi_handle handle, int id) in wifi_get_cmd()
222 WifiCommand *cmd = NULL; in wifi_get_cmd()
234 void wifi_unregister_cmd(wifi_handle handle, WifiCommand *cmd) in wifi_unregister_cmd()
253 WifiCommand *cmd = wifi_unregister_cmd(handle, id); in wifi_cancel_cmd()
Dwifi_hal.cpp411 WifiCommand *cmd = (WifiCommand *)cbi->cb_arg; in wifi_cleanup()
418 WifiCommand *cmd = cmdi->cmd; in wifi_cleanup()
435 WifiCommand *cmd = (WifiCommand *)cbi->cb_arg; in wifi_cleanup()
567 WifiCommand *cmd = (WifiCommand *)cbi->cb_arg; in internal_valid_message_handler()
588 class GetMulticastIdCommand : public WifiCommand
596 : WifiCommand("GetMulticastIdCommand", handle, 0) in GetMulticastIdCommand()
661 class SetPnoMacAddrOuiCommand : public WifiCommand {
671 : WifiCommand("SetPnoMacAddrOuiCommand", handle, 0) in SetPnoMacAddrOuiCommand()
717 class SetNodfsCommand : public WifiCommand {
723 : WifiCommand("SetNodfsCommand", handle, 0) { in SetNodfsCommand()
[all …]
Drtt.cpp135 class GetRttCapabilitiesCommand : public WifiCommand
140 : WifiCommand("GetRttCapabilitiesCommand", iface, 0), mCapabilities(capabitlites) in GetRttCapabilitiesCommand()
182 class GetRttResponderInfoCommand : public WifiCommand
187 : WifiCommand("GetRttResponderInfoCommand", iface, 0), mResponderInfo(responderInfo) in GetRttResponderInfoCommand()
230 class EnableResponderCommand : public WifiCommand
238 : WifiCommand("EnableResponderCommand", iface, 0), mChannelInfo(channel_hint), in EnableResponderCommand()
281 class CancelResponderCommand : public WifiCommand
286 : WifiCommand("CancelResponderCommand", iface, 0)/*, mChannelInfo(channel)*/ in CancelResponderCommand()
311 class RttCommand : public WifiCommand
324 : WifiCommand("RttCommand", iface, id), numRttParams(num_rtt_config), rttParams(rtt_config), in RttCommand()
[all …]
Dcpp_bindings.h230 class WifiCommand
241 WifiCommand(const char *type, wifi_handle handle, wifi_request_id id) in WifiCommand() function
249 WifiCommand(const char *type, wifi_interface_handle iface, wifi_request_id id) in WifiCommand() function
258 virtual ~WifiCommand() { in ~WifiCommand()
346 WifiCommand(const WifiCommand& ); // hide copy constructor to prevent copies
Dwifi_logger.cpp110 class DebugCommand : public WifiCommand
129 : WifiCommand("DebugCommand", iface, 0), mBuff(buffer), mBuffSize(buffer_size), mType in DebugCommand()
137 : WifiCommand("DebugCommand", iface, 0), mRingName(ring_name), mType(cmdType) in DebugCommand()
143 … : WifiCommand("DebugCommand", iface, 0), mNumRings(num_rings), mStatus(status), mType(cmdType) in DebugCommand()
150 : WifiCommand("DebugCommand", iface, 0), mSupport(support), mType(cmdType) in DebugCommand()
156 : WifiCommand("DebugCommand", iface, 0), mVerboseLevel(verbose_level), mFlags(flags), in DebugCommand()
492 class SetLogHandler : public WifiCommand
498 : WifiCommand("SetLogHandler", iface, id), mHandler(handler) in SetLogHandler()
617 class SetAlertHandler : public WifiCommand
626 : WifiCommand("SetAlertHandler", iface, id), mHandler(handler), mBuffSize(0), mBuff(NULL), in SetAlertHandler()
[all …]
Dlink_layer_stats.cpp50 class GetLinkStatsCommand : public WifiCommand
55 : WifiCommand("GetLinkStatsCommand", iface, 0), mHandler(handler) in GetLinkStatsCommand()
Dwifi_offload.cpp69 class MKeepAliveCommand : public WifiCommand
84 : WifiCommand("MKeepAliveCommand", iface, 0), mIndex(index), mIpPkt(ip_packet), in MKeepAliveCommand()
91 : WifiCommand("MKeepAliveCommand", iface, 0), mIndex(index), mType(cmdType) in MKeepAliveCommand()
Dgscan.cpp191 class GetCapabilitiesCommand : public WifiCommand
196 : WifiCommand("GetGscanCapabilitiesCommand", iface, 0), mCapabilities(capabitlites) in GetCapabilitiesCommand()
245 class GetChannelListCommand : public WifiCommand
254 : WifiCommand("GetChannelListCommand", iface, 0), channels(channel_buf), in GetChannelListCommand()
389 class FullScanResultsCommand : public WifiCommand
396 : WifiCommand("FullScanResultsCommand", iface, id), mParams(params), mHandler(handler) in FullScanResultsCommand()
469 class ScanCommand : public WifiCommand
476 : WifiCommand("ScanCommand", iface, id), mParams(params), mHandler(handler) in ScanCommand()
835 class GetScanResultsCommand : public WifiCommand {
845 : WifiCommand("GetScanResultsCommand", iface, -1), mScans(results), mMax(max), mNum(num), in GetScanResultsCommand()
[all …]
/device/generic/goldfish/network/netmgr/
Dmain.cpp123 WifiCommand wifiCommand(bridge); in main()