/external/wpa_supplicant_8/src/ap/ |
ap_config.c | 529 struct ft_remote_r1kh *r1kh, *r1kh_prev; local 539 r1kh = conf->r1kh_list; 541 while (r1kh) { 542 r1kh_prev = r1kh; 543 r1kh = r1kh->next;
|
wpa_auth_ft.c | 1041 static int wpa_ft_rrb_init_r1kh_seq(struct ft_remote_r1kh *r1kh) 1043 if (r1kh->seq) 1046 r1kh->seq = os_zalloc(sizeof(*r1kh->seq)); 1047 if (!r1kh->seq) { 1048 wpa_printf(MSG_DEBUG, "FT: Failed to allocate r1kh->seq"); 1052 dl_list_init(&r1kh->seq->rx.queue); 1063 struct ft_remote_r1kh *r1kh; local 1069 r1kh = *wpa_auth->conf.r1kh_list; 1071 r1kh = NULL 1200 struct ft_remote_r1kh *r1kh, *prev = NULL; local 1237 struct ft_remote_r1kh *r1kh; local 1272 struct ft_remote_r1kh *r1kh; local 1305 struct ft_remote_r1kh *r1kh, *r1kh_next, *r1kh_prev = NULL; local 1524 const u8 *r1kh = sm->wpa_auth->conf.r1_key_holder; local 1976 const u8 *r1kh = wpa_auth->conf.r1_key_holder; local 2625 struct ft_remote_r1kh *r1kh, *r1kh_wildcard; local 3026 struct ft_remote_r1kh *r1kh = NULL; local 3206 struct ft_remote_r1kh *r1kh = NULL, *r1kh_wildcard = NULL; local 3531 struct ft_remote_r1kh *r1kh; local [all...] |
/external/wpa_supplicant_8/hostapd/ |
config_file.c | 1077 struct ft_remote_r1kh *r1kh; local 1080 r1kh = os_zalloc(sizeof(*r1kh)); 1081 if (r1kh == NULL) 1090 if (next == NULL || hwaddr_aton(pos, r1kh->addr)) { 1091 wpa_printf(MSG_ERROR, "Invalid R1KH MAC address: '%s'", pos); 1092 os_free(r1kh); 1100 if (next == NULL || hwaddr_aton(pos, r1kh->id)) { 1101 wpa_printf(MSG_ERROR, "Invalid R1KH-ID: '%s'", pos); 1102 os_free(r1kh); [all...] |