Searched refs:r1kh (Results 1 – 5 of 5) sorted by relevance
/external/wpa_supplicant_8/src/ap/ |
D | wpa_auth_ft.c | 1569 static int wpa_ft_rrb_init_r1kh_seq(struct ft_remote_r1kh *r1kh) in wpa_ft_rrb_init_r1kh_seq() argument 1571 if (r1kh->seq) in wpa_ft_rrb_init_r1kh_seq() 1574 r1kh->seq = os_zalloc(sizeof(*r1kh->seq)); in wpa_ft_rrb_init_r1kh_seq() 1575 if (!r1kh->seq) { in wpa_ft_rrb_init_r1kh_seq() 1580 dl_list_init(&r1kh->seq->rx.queue); in wpa_ft_rrb_init_r1kh_seq() 1591 struct ft_remote_r1kh *r1kh; in wpa_ft_rrb_lookup_r1kh() local 1597 r1kh = *wpa_auth->conf.r1kh_list; in wpa_ft_rrb_lookup_r1kh() 1599 r1kh = NULL; in wpa_ft_rrb_lookup_r1kh() 1600 for (; r1kh; r1kh = r1kh->next) { in wpa_ft_rrb_lookup_r1kh() 1601 if (is_zero_ether_addr(r1kh->addr) && in wpa_ft_rrb_lookup_r1kh() [all …]
|
D | ap_config.c | 617 struct ft_remote_r1kh *r1kh, *r1kh_prev; in hostapd_config_free_bss() local 627 r1kh = conf->r1kh_list; in hostapd_config_free_bss() 629 while (r1kh) { in hostapd_config_free_bss() 630 r1kh_prev = r1kh; in hostapd_config_free_bss() 631 r1kh = r1kh->next; in hostapd_config_free_bss()
|
/external/autotest/server/site_tests/network_WiFi_RoamFT/ |
D | network_WiFi_RoamFT.py | 99 r1kh='%s %s %s' % (mac1, mac1, key1), 116 r1kh='%s %s %s' % (mac0, mac0, key0),
|
/external/autotest/server/cros/network/ |
D | hostap_config.py | 503 r1kh=None, argument 620 self._r1kh = r1kh
|
/external/wpa_supplicant_8/hostapd/ |
D | config_file.c | 1189 struct ft_remote_r1kh *r1kh; in add_r1kh() local 1192 r1kh = os_zalloc(sizeof(*r1kh)); in add_r1kh() 1193 if (r1kh == NULL) in add_r1kh() 1202 if (next == NULL || hwaddr_aton(pos, r1kh->addr)) { in add_r1kh() 1204 os_free(r1kh); in add_r1kh() 1212 if (next == NULL || hwaddr_aton(pos, r1kh->id)) { in add_r1kh() 1214 os_free(r1kh); in add_r1kh() 1219 if (rkh_derive_key(pos, r1kh->key, sizeof(r1kh->key)) < 0) { in add_r1kh() 1221 os_free(r1kh); in add_r1kh() 1225 r1kh->next = bss->r1kh_list; in add_r1kh() [all …]
|