Searched defs:subcmd (Results 1 - 22 of 22) sorted by relevance

/hardware/broadcom/wlan/bcmdhd/wifi_hal/
H A Dcommon.cpp78 uint32_t id, int subcmd, nl_recvmsg_msg_cb_t func, void *arg)
90 info->event_cb[info->num_event_cb].vendor_subcmd = subcmd;
93 ALOGV("Added event handler %p:%p for vendor 0x%0x and subcmd 0x%0x at %d",
94 arg, func, id, subcmd, info->num_event_cb);
129 void wifi_unregister_vendor_handler(wifi_handle handle, uint32_t id, int subcmd) argument
139 && info->event_cb[i].vendor_subcmd == subcmd) {
140 ALOGV("Successfully removed event handler %p:%p for vendor 0x%0x, subcmd 0x%0x from %d",
141 info->event_cb[i].cb_arg, info->event_cb[i].cb_func, id, subcmd, i);
77 wifi_register_vendor_handler(wifi_handle handle, uint32_t id, int subcmd, nl_recvmsg_msg_cb_t func, void *arg) argument
H A Dlink_layer_stats.cpp80 int subcmd = reply.get_vendor_subcmd(); local
82 // ALOGI("Id = %0x, subcmd = %d", id, subcmd);
H A Dcpp_bindings.cpp554 int WifiRequest::create(uint32_t id, int subcmd) { argument
565 res = put_u32(NL80211_ATTR_VENDOR_SUBCMD, subcmd);
651 int WifiCommand::requestVendorEvent(uint32_t id, int subcmd) { argument
653 int res = wifi_register_vendor_handler(wifiHandle(), id, subcmd, event_handler, this);
671 wifi_unregister_vendor_handler(wifiHandle(), id, subcmd); local
H A Dcpp_bindings.h174 int create(uint32_t id, int subcmd);
280 int requestVendorEvent(uint32_t id, int subcmd);
320 int registerVendorHandler(uint32_t id, int subcmd) { argument
321 return wifi_register_vendor_handler(wifiHandle(), id, subcmd, &event_handler, this);
324 void unregisterVendorHandler(uint32_t id, int subcmd) { argument
325 wifi_unregister_vendor_handler(wifiHandle(), id, subcmd); local
H A Drtt.cpp148 int subcmd = reply.get_vendor_subcmd(); local
153 ALOGD("Id = %0x, subcmd = %d, len = %d, expected len = %d", id, subcmd, len,
196 int subcmd = reply.get_vendor_subcmd(); local
201 ALOGD("Id = %0x, subcmd = %d, len = %d, expected len = %d", id, subcmd, len,
247 int subcmd = reply.get_vendor_subcmd(); local
252 ALOGD("Id = %0x, subcmd = %d, len = %d, expected len = %d", id, subcmd, len,
H A Dwifi_logger.cpp1019 int subcmd = reply.get_vendor_subcmd(); local
1023 ALOGI("Id = %0x, subcmd = %d, len = %d", id, subcmd, len);
H A Dgscan.cpp205 int subcmd = reply.get_vendor_subcmd(); local
210 ALOGV("Id = %0x, subcmd = %d, len = %d, expected len = %d", id, subcmd, len,
271 int subcmd = reply.get_vendor_subcmd(); local
277 ALOGV("Id = %0x, subcmd = %d, len = %d", id, subcmd, len);
354 int createFeatureRequest(WifiRequest& request, int subcmd, int enable) { argument
356 int result = request.create(GOOGLE_OUI, subcmd);
382 int createRequest(WifiRequest& request, int subcmd, int enable) { argument
383 int result = request.create(GOOGLE_OUI, subcmd);
897 int subcmd = reply.get_vendor_subcmd(); local
[all...]
H A Dwifi_hal.cpp470 int subcmd = 0; local
474 subcmd = event.get_u32(NL80211_ATTR_VENDOR_SUBCMD);
475 ALOGV("event received %s, vendor_id = 0x%0x, subcmd = 0x%0x",
476 event.get_cmdString(), vendor_id, subcmd);
492 || (subcmd != info->event_cb[i].vendor_subcmd)))
610 int createRequest(WifiRequest& request, int subcmd, byte *scan_oui) { argument
611 int result = request.create(GOOGLE_OUI, subcmd);
925 int subcmd = reply.get_vendor_subcmd(); local
930 ALOGD("Id = %0x, subcmd = %d, len = %d", id, subcmd, le
1042 int subcmd = reply.get_vendor_subcmd(); local
[all...]
/hardware/qcom/display/msm8909/libhwcomposer/
H A Dhwc_qdcm.cpp253 int subcmd = in->readInt32(); local
255 ALOGD_IF(QDCM_DEBUG, "%s enter subcmd = %d\n", __FUNCTION__, subcmd);
256 switch (subcmd) {
/hardware/qcom/wlan/qcwcn/wifi_hal/
H A Drssi_monitor.cpp46 u32 vendor_id, u32 subcmd)
47 : WifiVendorCommand(handle, id, vendor_id, subcmd)
160 ALOGE("%s: Wrong subcmd received %d", __FUNCTION__, mSubcmd);
174 ALOGE("%s: Unable to register Vendor Handler Vendor Id=0x%x subcmd=%u",
45 RSSIMonitorCommand(wifi_handle handle, int id, u32 vendor_id, u32 subcmd) argument
H A Dcommon.cpp94 uint32_t id, int subcmd, nl_recvmsg_msg_cb_t func, void *arg)
104 info->event_cb[i].vendor_subcmd == subcmd)
108 ALOGV("Updated event handler %p for vendor 0x%0x, subcmd 0x%0x"
109 " and arg %p", func, id, subcmd, arg);
118 info->event_cb[info->num_event_cb].vendor_subcmd = subcmd;
122 ALOGV("Added event handler %p for vendor 0x%0x, subcmd 0x%0x and arg"
123 " %p", func, id, subcmd, arg);
162 void wifi_unregister_vendor_handler(wifi_handle handle, uint32_t id, int subcmd) argument
172 && info->event_cb[i].vendor_subcmd == subcmd) {
93 wifi_register_vendor_handler(wifi_handle handle, uint32_t id, int subcmd, nl_recvmsg_msg_cb_t func, void *arg) argument
H A Dgscan_event_handler.cpp35 /* Insert the subcmd in the msg */
75 u32 subcmd,
77 : WifiVendorCommand(handle, id, vendor_id, subcmd)
82 mSubCommandId = subcmd;
1928 ALOGE("%s: Wrong GScan subcmd received %d", __FUNCTION__, mSubcmd);
2016 ALOGE("%s: Parsing err handler: wrong GScan subcmd "
73 GScanCommandEventHandler(wifi_handle handle, int id, u32 vendor_id, u32 subcmd, GScanCallbackHandler handler) argument
H A Difaceeventhandler.cpp141 IfaceEventHandlerCommand::IfaceEventHandlerCommand(wifi_handle handle, int id, u32 subcmd) argument
142 : wifiEventHandler(handle, id, subcmd)
172 wifiEventHandler::wifiEventHandler(wifi_handle handle, int id, u32 subcmd) argument
176 mSubcmd = subcmd;
199 u32 subcmd)
200 : WifiVendorCommand(handle, id, vendor_id, subcmd)
198 WifihalGeneric(wifi_handle handle, int id, u32 vendor_id, u32 subcmd) argument
H A Dllstats.cpp45 // insert the subcmd in the msg
54 LLStatsCommand::LLStatsCommand(wifi_handle handle, int id, u32 vendor_id, u32 subcmd) argument
55 : WifiVendorCommand(handle, id, vendor_id, subcmd)
99 void LLStatsCommand::setSubCmd(u32 subcmd) argument
101 mSubcmd = subcmd;
1170 ALOGE("%s: Wrong LLStats subcmd received %d", __FUNCTION__,
1213 ALOGE("%s: Wrong LLStats subcmd received %d", __FUNCTION__, mSubcmd);
H A Dnan.cpp603 NanCommand::NanCommand(wifi_handle handle, int id, u32 vendor_id, u32 subcmd) argument
604 : WifiVendorCommand(handle, id, vendor_id, subcmd)
665 ALOGE("%s: Unable to register Vendor Handler Vendor Id=0x%x subcmd=%u",
682 /* Insert the subcmd in the msg */
728 ALOGE("%s: Wrong NAN subcmd received %d", __func__, mSubcmd);
H A Dtdls.cpp43 TdlsCommand::TdlsCommand(wifi_handle handle, int id, u32 vendor_id, u32 subcmd) argument
44 : WifiVendorCommand(handle, id, vendor_id, subcmd)
84 void TdlsCommand::setSubCmd(u32 subcmd) argument
86 mSubcmd = subcmd;
182 ALOGE("%s: Wrong TDLS subcmd received %d", __FUNCTION__, mSubcmd);
287 ALOGE("%s: Wrong TDLS subcmd response received %d",
301 ALOGE("%s: Unable to register Vendor Handler Vendor Id=0x%x subcmd=%u",
H A Dwificonfig.cpp297 u32 subcmd)
298 : WifiVendorCommand(handle, id, vendor_id, subcmd)
321 /* Insert the subcmd in the msg */
295 WiFiConfigCommand(wifi_handle handle, int id, u32 vendor_id, u32 subcmd) argument
H A Dcpp_bindings.cpp561 int WifiRequest::create(uint32_t id, int subcmd) { argument
572 res = put_u32(NL80211_ATTR_VENDOR_SUBCMD, subcmd);
654 int WifiCommand::requestVendorEvent(uint32_t id, int subcmd) { argument
656 int res = wifi_register_vendor_handler(wifiHandle(), id, subcmd, event_handler, this);
674 wifi_unregister_vendor_handler(wifiHandle(), id, subcmd); local
737 u32 subcmd)
738 : WifiCommand(handle, id), mVendor_id(vendor_id), mSubcmd(subcmd),
741 ALOGV("WifiVendorCommand %p created vendor_id:0x%x subcmd:%u",
787 ALOGV("%s: Vendor event: vendor_id=0x%x subcmd=%u",
811 // insert the subcmd i
734 WifiVendorCommand(wifi_handle handle, wifi_request_id id, u32 vendor_id, u32 subcmd) argument
973 initialize_vendor_cmd(wifi_interface_handle iface, wifi_request_id id, u32 subcmd, WifiVendorCommand **vCommand) argument
[all...]
H A Dcpp_bindings.h194 int create(uint32_t id, int subcmd);
327 int requestVendorEvent(uint32_t id, int subcmd);
365 int registerVendorHandler(uint32_t id, int subcmd) { argument
366 return wifi_register_vendor_handler(wifiHandle(), id, subcmd, &event_handler, this);
369 void unregisterVendorHandler(uint32_t id, int subcmd) { argument
370 wifi_unregister_vendor_handler(wifiHandle(), id, subcmd); local
402 WifiVendorCommand(wifi_handle handle, wifi_request_id id, u32 vendor_id, u32 subcmd);
473 u32 subcmd,
H A Dgscan.cpp1351 u32 subcmd)
1352 : WifiVendorCommand(handle, id, vendor_id, subcmd)
1382 /* Insert the subcmd in the msg */
1624 ALOGE("%s: Wrong GScan subcmd response received %d",
1647 ALOGE("%s: Wrong GScan subcmd received %d", __FUNCTION__, mSubcmd);
1350 GScanCommand(wifi_handle handle, int id, u32 vendor_id, u32 subcmd) argument
H A Dwifi_hal.cpp773 int subcmd = 0; local
777 subcmd = event.get_u32(NL80211_ATTR_VENDOR_SUBCMD);
780 if (subcmd != QCA_NL80211_VENDOR_SUBCMD_GSCAN_FULL_SCAN_RESULT) {
781 ALOGI("event received %s, vendor_id = 0x%0x, subcmd = 0x%0x",
782 event.get_cmdString(), vendor_id, subcmd);
798 || (subcmd != info->event_cb[i].vendor_subcmd)))
1294 ALOGE("%s: failed to put subcmd/program", __FUNCTION__);
1303 ALOGE("%s: failed to put subcmd", __FUNCTION__);
H A Dwifilogger.cpp776 WifiLoggerCommand::WifiLoggerCommand(wifi_handle handle, int id, u32 vendor_id, u32 subcmd) argument
777 : WifiVendorCommand(handle, id, vendor_id, subcmd)
804 /* Insert the subcmd in the msg */
1302 ALOGE("%s: Wrong Wifi Logger subcmd response received %d",
1328 ALOGE("%s: Wrong subcmd received %d", __func__, mSubcmd);
1342 ALOGE("%s: Unable to register Vendor Handler Vendor Id=0x%x subcmd=%u",

Completed in 170 milliseconds