Searched defs:r0kh (Results 1 - 7 of 7) sorted by relevance

/external/wpa_supplicant_8/hostapd/src/ap/
H A Dap_config.c507 struct ft_remote_r0kh *r0kh, *r0kh_prev; local
510 r0kh = conf->r0kh_list;
512 while (r0kh) {
513 r0kh_prev = r0kh;
514 r0kh = r0kh->next;
H A Dwpa_auth_ft.c319 struct ft_remote_r0kh *r0kh; local
322 r0kh = sm->wpa_auth->conf.r0kh_list;
323 while (r0kh) {
324 if (r0kh->id_len == sm->r0kh_id_len &&
325 os_memcmp_const(r0kh->id, sm->r0kh_id, sm->r0kh_id_len) ==
328 r0kh = r0kh->next;
330 if (r0kh == NULL) {
337 "address " MACSTR, MAC2STR(r0kh->addr));
359 if (aes_wrap(r0kh
382 const u8 *r0kh = sm->wpa_auth->conf.r0_key_holder; local
825 const u8 *r0kh = sm->r0kh_id; local
1560 struct ft_remote_r0kh *r0kh; local
1629 struct ft_remote_r0kh *r0kh; local
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dap_config.c507 struct ft_remote_r0kh *r0kh, *r0kh_prev; local
510 r0kh = conf->r0kh_list;
512 while (r0kh) {
513 r0kh_prev = r0kh;
514 r0kh = r0kh->next;
H A Dwpa_auth_ft.c319 struct ft_remote_r0kh *r0kh; local
322 r0kh = sm->wpa_auth->conf.r0kh_list;
323 while (r0kh) {
324 if (r0kh->id_len == sm->r0kh_id_len &&
325 os_memcmp_const(r0kh->id, sm->r0kh_id, sm->r0kh_id_len) ==
328 r0kh = r0kh->next;
330 if (r0kh == NULL) {
337 "address " MACSTR, MAC2STR(r0kh->addr));
359 if (aes_wrap(r0kh
382 const u8 *r0kh = sm->wpa_auth->conf.r0_key_holder; local
825 const u8 *r0kh = sm->r0kh_id; local
1560 struct ft_remote_r0kh *r0kh; local
1629 struct ft_remote_r0kh *r0kh; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dap_config.c507 struct ft_remote_r0kh *r0kh, *r0kh_prev; local
510 r0kh = conf->r0kh_list;
512 while (r0kh) {
513 r0kh_prev = r0kh;
514 r0kh = r0kh->next;
H A Dwpa_auth_ft.c319 struct ft_remote_r0kh *r0kh; local
322 r0kh = sm->wpa_auth->conf.r0kh_list;
323 while (r0kh) {
324 if (r0kh->id_len == sm->r0kh_id_len &&
325 os_memcmp_const(r0kh->id, sm->r0kh_id, sm->r0kh_id_len) ==
328 r0kh = r0kh->next;
330 if (r0kh == NULL) {
337 "address " MACSTR, MAC2STR(r0kh->addr));
359 if (aes_wrap(r0kh
382 const u8 *r0kh = sm->wpa_auth->conf.r0_key_holder; local
825 const u8 *r0kh = sm->r0kh_id; local
1560 struct ft_remote_r0kh *r0kh; local
1629 struct ft_remote_r0kh *r0kh; local
[all...]
/external/wpa_supplicant_8/hostapd/
H A Dconfig_file.c1004 struct ft_remote_r0kh *r0kh; local
1007 r0kh = os_zalloc(sizeof(*r0kh));
1008 if (r0kh == NULL)
1016 if (next == NULL || hwaddr_aton(pos, r0kh->addr)) {
1018 os_free(r0kh);
1028 os_free(r0kh);
1031 r0kh->id_len = next - pos - 1;
1032 os_memcpy(r0kh->id, pos, r0kh
[all...]

Completed in 428 milliseconds