Home
last modified time | relevance | path

Searched refs:methods (Results 1 – 15 of 15) sorted by relevance

/hal_espressif-latest/components/wpa_supplicant/src/ap/
Deap_user_db.c23 static void set_user_methods(struct hostapd_eap_user *user, const char *methods) in set_user_methods() argument
28 buf = os_strdup(methods); in set_user_methods()
32 os_memset(&user->methods, 0, sizeof(user->methods)); in set_user_methods()
39 user->methods[num_methods].method = in set_user_methods()
41 &user->methods[num_methods].vendor); in set_user_methods()
42 if (user->methods[num_methods].vendor == EAP_VENDOR_IETF && in set_user_methods()
43 user->methods[num_methods].method == EAP_TYPE_NONE) { in set_user_methods()
106 int i, id = -1, methods = -1; in get_wildcard_cb() local
113 methods = i; in get_wildcard_cb()
116 if (id < 0 || methods < 0) in get_wildcard_cb()
[all …]
Dieee802_1x.c362 user->methods[i].vendor = eap_user->methods[i].vendor; in ieee802_1x_get_eap_user()
363 user->methods[i].method = eap_user->methods[i].method; in ieee802_1x_get_eap_user()
Dap_config.h116 } methods[EAP_MAX_METHODS]; member
/hal_espressif-latest/components/wpa_supplicant/src/wps/
Dwps_common.c546 u16 methods = 0; in wps_config_methods_str2bin() local
550 methods |= WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD; in wps_config_methods_str2bin()
551 methods |= WPS_CONFIG_VIRT_DISPLAY; in wps_config_methods_str2bin()
553 methods |= WPS_CONFIG_NFC_INTERFACE; in wps_config_methods_str2bin()
556 methods |= WPS_CONFIG_P2PS; in wps_config_methods_str2bin()
560 methods |= WPS_CONFIG_ETHERNET; in wps_config_methods_str2bin()
562 methods |= WPS_CONFIG_LABEL; in wps_config_methods_str2bin()
564 methods |= WPS_CONFIG_DISPLAY; in wps_config_methods_str2bin()
566 methods |= WPS_CONFIG_EXT_NFC_TOKEN; in wps_config_methods_str2bin()
568 methods |= WPS_CONFIG_INT_NFC_TOKEN; in wps_config_methods_str2bin()
[all …]
Dwps_registrar.c569 static void wps_set_pushbutton(u16 *methods, u16 conf_methods) in wps_set_pushbutton() argument
571 *methods |= WPS_CONFIG_PUSHBUTTON; in wps_set_pushbutton()
574 *methods |= WPS_CONFIG_VIRT_PUSHBUTTON; in wps_set_pushbutton()
577 *methods |= WPS_CONFIG_PHY_PUSHBUTTON; in wps_set_pushbutton()
578 if ((*methods & WPS_CONFIG_VIRT_PUSHBUTTON) != in wps_set_pushbutton()
580 (*methods & WPS_CONFIG_PHY_PUSHBUTTON) != in wps_set_pushbutton()
587 *methods |= WPS_CONFIG_PHY_PUSHBUTTON; in wps_set_pushbutton()
595 u16 methods; in wps_build_sel_reg_config_methods() local
598 methods = reg->wps->config_methods; in wps_build_sel_reg_config_methods()
599 methods &= ~WPS_CONFIG_PUSHBUTTON; in wps_build_sel_reg_config_methods()
[all …]
Dwps_attr_build.c123 int wps_build_config_methods(struct wpabuf *msg, u16 methods) in wps_build_config_methods() argument
125 wpa_printf(MSG_DEBUG, "WPS: * Config Methods (%x)", methods); in wps_build_config_methods()
128 wpabuf_put_be16(msg, methods); in wps_build_config_methods()
Dwps_i.h160 int wps_build_config_methods(struct wpabuf *msg, u16 methods);
/hal_espressif-latest/components/wpa_supplicant/src/eap_peer/
Deap_tls_common.c950 struct eap_method_type *methods = NULL, *_methods; in eap_peer_select_phase2_methods() local
983 _methods = (struct eap_method_type *)os_realloc(methods, in eap_peer_select_phase2_methods()
984 num_methods * sizeof(*methods)); in eap_peer_select_phase2_methods()
986 os_free(methods); in eap_peer_select_phase2_methods()
990 methods = _methods; in eap_peer_select_phase2_methods()
991 methods[num_methods - 1].vendor = vendor; in eap_peer_select_phase2_methods()
992 methods[num_methods - 1].method = method; in eap_peer_select_phase2_methods()
1001 if (methods == NULL) in eap_peer_select_phase2_methods()
1002 methods = eap_get_phase2_types(config, &num_methods); in eap_peer_select_phase2_methods()
1003 if (methods == NULL) { in eap_peer_select_phase2_methods()
[all …]
Deap.c184 const struct eap_method *methods, *m; in eap_get_phase2_types() local
186 methods = eap_peer_get_methods(&mcount); in eap_get_phase2_types()
187 if (methods == NULL) in eap_get_phase2_types()
194 for (m = methods; m; m = m->next) { in eap_get_phase2_types()
454 const struct eap_method *methods, *m; in eap_sm_build_nak() local
456 methods = eap_peer_get_methods(&count); in eap_sm_build_nak()
457 if (methods == NULL) in eap_sm_build_nak()
477 for (m = methods; m; m = m->next) { in eap_sm_build_nak()
592 const struct eap_method *methods; in eap_peer_config_init() local
595 methods = eap_peer_get_methods(&mcount); in eap_peer_config_init()
[all …]
/hal_espressif-latest/components/wpa_supplicant/src/eap_server/
Deap_server.c1642 (u8 *) sm->user->methods, in eap_sm_process_nak()
1643 EAP_MAX_METHODS * sizeof(sm->user->methods[0])); in eap_sm_process_nak()
1649 (sm->user->methods[i].vendor != EAP_VENDOR_IETF || in eap_sm_process_nak()
1650 sm->user->methods[i].method != EAP_TYPE_NONE)) { in eap_sm_process_nak()
1651 if (sm->user->methods[i].vendor != EAP_VENDOR_IETF) in eap_sm_process_nak()
1654 if (nak_list[j] == sm->user->methods[i].method) { in eap_sm_process_nak()
1668 os_memmove(&sm->user->methods[i], in eap_sm_process_nak()
1669 &sm->user->methods[i + 1], in eap_sm_process_nak()
1671 sizeof(sm->user->methods[0])); in eap_sm_process_nak()
1673 sm->user->methods[EAP_MAX_METHODS - 1].vendor = in eap_sm_process_nak()
[all …]
Deap.h29 } methods[EAP_MAX_METHODS]; member
/hal_espressif-latest/components/esp_psram/
DKconfig.spiram.common26 The SPI RAM can be accessed in multiple methods: by just having it available as an unmanaged
/hal_espressif-latest/components/bt/porting/ext/tinycrypt/documentation/
Dtinycrypt.rst132 Note that conventional memory-comparison methods (such as memcmp function)
/hal_espressif-latest/components/bt/controller/esp32c3/
DKconfig.in25 BLE ACL buffer have two methods to be allocated. One is persistent allocating
/hal_espressif-latest/components/mbedtls/
DKconfig681 … Enable to show configuration for different types of pre-shared-key TLS authentatication methods.