Home | History | Annotate | Download | only in wifi_hal

Lines Matching defs:ie_len

765     int ie_len = min(MAX_PROBE_RESP_IE_LEN, drv_res->ie_length);
769 if ((ie_len + offsetof(wifi_gscan_full_result_t, ie_data)) > len) {
770 ALOGE("BAD event data, len %d ie_len %d fixed length %d!\n", len,
771 ie_len, offsetof(wifi_gscan_full_result_t, ie_data));
774 full_scan_result = (wifi_scan_result *) malloc((ie_len + offsetof(wifi_scan_result, ie_data)));
780 full_scan_result->ie_length = ie_len;
781 memcpy(full_scan_result->ie_data, drv_res->ie_data, ie_len);