Searched refs:rc_len (Results 1 – 1 of 1) sorted by relevance
/external/wpa_supplicant_8/wpa_supplicant/ |
D | interworking.c | 1078 size_t rc_len) in roaming_consortium_element_match() argument 1103 if ((lens & 0x0f) == rc_len && os_memcmp(pos, rc_id, rc_len) == 0) in roaming_consortium_element_match() 1107 if ((lens >> 4) == rc_len && os_memcmp(pos, rc_id, rc_len) == 0) in roaming_consortium_element_match() 1111 if (pos < end && (size_t) (end - pos) == rc_len && in roaming_consortium_element_match() 1112 os_memcmp(pos, rc_id, rc_len) == 0) in roaming_consortium_element_match() 1120 const u8 *rc_id, size_t rc_len) in roaming_consortium_anqp_match() argument 1136 if (len == rc_len && os_memcmp(pos, rc_id, rc_len) == 0) in roaming_consortium_anqp_match() 1146 const u8 *rc_id, size_t rc_len) in roaming_consortium_match() argument 1148 return roaming_consortium_element_match(ie, rc_id, rc_len) || in roaming_consortium_match() 1149 roaming_consortium_anqp_match(anqp, rc_id, rc_len); in roaming_consortium_match()
|