HomeSort by relevance Sort by last modified time
    Searched refs:ric (Results 1 - 6 of 6) sorted by null

  /external/wpa_supplicant_8/src/common/
wpa_common.c 135 const u8 *ric, size_t ric_len, u8 *mic)
170 if (ric) {
171 os_memcpy(pos, ric, ric_len);
284 if (parse->ric == NULL)
285 parse->ric = pos;
311 if (prot_ie_count == 0 && parse->ric) {
312 wpa_printf(MSG_DEBUG, "FT: RIC IE(s) in the frame, but not "
317 /* Determine the end of the RIC IE(s) */
318 pos = parse->ric;
324 parse->ric_len = pos - parse->ric;
    [all...]
wpa_common.h 312 const u8 *ric, size_t ric_len, u8 *mic);
372 const u8 *ric; member in struct:wpa_ft_ies
  /external/wpa_supplicant_6/wpa_supplicant/src/common/
wpa_common.c 139 const u8 *ric, size_t ric_len, u8 *mic)
174 if (ric) {
175 os_memcpy(pos, ric, ric_len);
wpa_common.h 304 const u8 *ric, size_t ric_len, u8 *mic);
  /external/wpa_supplicant_8/src/ap/
wpa_auth_ft.c 550 static u8 * wpa_ft_process_ric(u8 *pos, u8 *end, const u8 *ric, size_t ric_len)
555 wpa_hexdump(MSG_MSGDUMP, "FT: RIC Request", ric, ric_len);
557 rpos = ric;
558 while (rpos + sizeof(*rdie) < ric + ric_len) {
560 rpos + 2 + rpos[1] > ric + ric_len)
566 while (rpos + 2 <= ric + ric_len &&
567 rpos + 2 + rpos[1] <= ric + ric_len) {
680 if (wpa_ft_parse_ies(req_ies, req_ies_len, &parse) == 0 && parse.ric) {
681 pos = wpa_ft_process_ric(pos, end, parse.ric, parse.ric_len)
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
wpa_ft.c 138 * @ric_ies: Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request or %NULL
281 /* RIC Request */
296 * RIC-Request (if present)
394 wpa_hexdump(MSG_DEBUG, "FT: RIC IEs", ric_ies, ric_ies_len);
772 if (parse.ric)
773 count += ieee802_11_ie_count(parse.ric, parse.ric_len);
785 parse.ric, parse.ric_len,
814 if (parse.ric) {
815 wpa_hexdump(MSG_MSGDUMP, "FT: RIC Response",
816 parse.ric, parse.ric_len)
    [all...]

Completed in 36 milliseconds