Searched refs:ie_len (Results 1 – 5 of 5) sorted by relevance
/hardware/broadcom/wlan/bcmdhd/wifi_hal/ |
D | gscan.cpp | 770 int ie_len = min(MAX_PROBE_RESP_IE_LEN, drv_res->ie_length); in wifi_handle_full_scan_event() local 774 if ((ie_len + offsetof(wifi_gscan_full_result_t, ie_data)) > len) { in wifi_handle_full_scan_event() 776 ie_len, offsetof(wifi_gscan_full_result_t, ie_data)); in wifi_handle_full_scan_event() 779 full_scan_result = (wifi_scan_result *) malloc((ie_len + offsetof(wifi_scan_result, ie_data))); in wifi_handle_full_scan_event() 785 full_scan_result->ie_length = ie_len; in wifi_handle_full_scan_event() 786 memcpy(full_scan_result->ie_data, drv_res->ie_data, ie_len); in wifi_handle_full_scan_event() 1967 int ie_len = min(MAX_PROBE_RESP_IE_LEN, drv_res->ie_length); in handleEvent() local 1968 if ((ie_len + offsetof(wifi_gscan_full_result_t, ie_data)) > len) { in handleEvent() 1970 ie_len, offsetof(wifi_gscan_full_result_t, ie_data)); in handleEvent()
|
/hardware/synaptics/wlan/synadhd/wifi_hal/ |
D | gscan.cpp | 765 int ie_len = min(MAX_PROBE_RESP_IE_LEN, drv_res->ie_length); in wifi_handle_full_scan_event() local 769 if ((ie_len + offsetof(wifi_gscan_full_result_t, ie_data)) > len) { in wifi_handle_full_scan_event() 771 ie_len, offsetof(wifi_gscan_full_result_t, ie_data)); in wifi_handle_full_scan_event() 774 full_scan_result = (wifi_scan_result *) malloc((ie_len + offsetof(wifi_scan_result, ie_data))); in wifi_handle_full_scan_event() 780 full_scan_result->ie_length = ie_len; in wifi_handle_full_scan_event() 781 memcpy(full_scan_result->ie_data, drv_res->ie_data, ie_len); in wifi_handle_full_scan_event()
|
/hardware/qcom/wlan/wcn6740/qcwcn/wpa_supplicant_8_lib/ |
D | driver_cmd_nl80211.c | 1164 static void parse_ext_ie(const u8 *ie, int ie_len) in parse_ext_ie() argument 1168 if (ie_len < 1) { in parse_ext_ie() 1169 wpa_printf(MSG_ERROR,"parse error, ie_len = %d", ie_len); in parse_ext_ie() 1174 ie_len--; in parse_ext_ie() 1195 u8 id, ie_len; in parse_assoc_req_ies() local 1197 ie_len = *pos++; in parse_assoc_req_ies() 1200 if (ie_len > left) { in parse_assoc_req_ies() 1202 id, ie_len, left); in parse_assoc_req_ies() 1208 ap_sta_copy_supp_op_classes(pos, ie_len); in parse_assoc_req_ies() 1211 ap_sta_copy_channels(pos, ie_len); in parse_assoc_req_ies() [all …]
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/ |
D | bcmutils.c | 2091 uint8 ie_len; in find_vendor_ie() local 2102 ie_len = ie->len; in find_vendor_ie() 2104 (ie_len >= (DOT11_OUI_LEN + type_len)) && in find_vendor_ie()
|
/hardware/broadcom/wlan/bcmdhd/halutil/ |
D | halutil.cpp | 1351 static const u8 *bss_get_ie(u8 id, const char* ie, const s32 ie_len) in bss_get_ie() argument 1356 end = pos + ie_len; in bss_get_ie() 1369 static bool is11mcAP(const char* ie, const s32 ie_len) in is11mcAP() argument 1373 ptr_ie = bss_get_ie(WIFI_EID_EXT_CAPAB, ie, ie_len); in is11mcAP() 1409 struct ht_op_ie *read_ht_oper_ie(const char* ie, const s32 ie_len) in read_ht_oper_ie() argument 1412 ptr_ie = bss_get_ie(WIFI_EID_HT_OPERATION, ie, ie_len); in read_ht_oper_ie() 1419 struct vht_op_ie *read_vht_oper_ie(const char* ie, const s32 ie_len) in read_vht_oper_ie() argument 1422 ptr_ie = bss_get_ie(WIFI_EID_VHT_OPERATION, ie, ie_len); in read_vht_oper_ie() 1493 wifi_channel_info get_channel_of_ie(const char* ie, const s32 ie_len) in get_channel_of_ie() argument 1500 vht_op = read_vht_oper_ie(ie, ie_len); in get_channel_of_ie() [all …]
|