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

  /external/wpa_supplicant_8/src/ap/
wpa_auth_ft.c 45 const u8 *ric; member in struct:wpa_ft_ies
579 static u8 * wpa_ft_process_ric(u8 *pos, u8 *end, const u8 *ric, size_t ric_len)
584 wpa_hexdump(MSG_MSGDUMP, "FT: RIC Request", ric, ric_len);
586 rpos = ric;
587 while (rpos + sizeof(*rdie) < ric + ric_len) {
589 rpos + 2 + rpos[1] > ric + ric_len)
595 while (rpos + 2 <= ric + ric_len &&
596 rpos + 2 + rpos[1] <= ric + ric_len) {
709 if (wpa_ft_parse_ies(req_ies, req_ies_len, &parse) == 0 && parse.ric) {
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
wpa_ft.c 45 const u8 *ric; member in struct:wpa_ft_ies
170 * @ric_ies: Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request or %NULL
313 /* RIC Request */
328 * RIC-Request (if present)
447 if (parse->ric == NULL)
448 parse->ric = pos;
475 if (prot_ie_count == 0 && parse->ric) {
476 wpa_printf(MSG_DEBUG, "FT: RIC IE(s) in the frame, but not "
481 /* Determine the end of the RIC IE(s) */
482 pos = parse->ric;
    [all...]
  /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/common/
wpa_common.c 141 const u8 *ric, size_t ric_len, u8 *mic)
176 if (ric) {
177 os_memcpy(pos, ric, ric_len);
wpa_common.h 318 const u8 *ric, size_t ric_len, u8 *mic);
  /external/wpa_supplicant_8/wpa_supplicant/
mlme.c 878 struct wpabuf *ric = NULL; local
886 ric = wpabuf_alloc(200);
887 if (ric) {
888 /* Build simple RIC-Request: RDIE | TSPEC */
890 /* RIC Data (RDIE) */
891 wpabuf_put_u8(ric, WLAN_EID_RIC_DATA);
892 wpabuf_put_u8(ric, 4);
893 wpabuf_put_u8(ric, 0); /* RDIE Identifier */
894 wpabuf_put_u8(ric, 1); /* Resource Descriptor
896 wpabuf_put_le16(ric, 0); /* Status Code *
    [all...]

Completed in 893 milliseconds