Home
last modified time | relevance | path

Searched refs:pin_len (Results 1 – 10 of 10) sorted by relevance

/hal_espressif-latest/components/wpa_supplicant/src/wps/
Dwps.h129 size_t pin_len; member
861 const u8 *uuid, const u8 *pin, size_t pin_len,
924 const u8 *pin, size_t pin_len);
928 const u8 *pin, size_t pin_len,
Dwps_registrar.c82 size_t pin_len; member
93 bin_clear_free(pin->pin, pin->pin_len); in wps_free_pin()
790 const u8 *uuid, const u8 *pin, size_t pin_len, in wps_registrar_add_pin() argument
804 p->pin = os_memdup(pin, pin_len); in wps_registrar_add_pin()
809 p->pin_len = pin_len; in wps_registrar_add_pin()
825 wpa_hexdump_ascii_key(MSG_DEBUG, "WPS: PIN", pin, pin_len); in wps_registrar_add_pin()
892 (dev_pw_len != pin->pin_len || in wps_registrar_invalidate_wildcard_pin()
932 const u8 *uuid, size_t *pin_len) in wps_registrar_get_pin() argument
975 *pin_len = found->pin_len; in wps_registrar_get_pin()
1402 size_t pin_len = 0; in wps_get_dev_password() local
[all …]
Dwps.c52 if (cfg->pbc == 0 && cfg->pin_len) { in wps_init()
54 data->dev_password = os_memdup(cfg->pin, cfg->pin_len); in wps_init()
59 data->dev_password_len = cfg->pin_len; in wps_init()
/hal_espressif-latest/components/bt/host/bluedroid/stack/btm/
Dbtm_sec.c837 void BTM_PINCodeReply (BD_ADDR bd_addr, UINT8 res, UINT8 pin_len, UINT8 *p_pin, UINT32 trusted_mask… in BTM_PINCodeReply() argument
842 btm_pair_state_descr(btm_cb.pairing_state), btm_cb.pairing_flags, pin_len, res); in BTM_PINCodeReply()
860 if ( (pin_len > PIN_CODE_LEN) || (pin_len == 0) || (p_pin == NULL) ) { in BTM_PINCodeReply()
884 if (pin_len >= 16) { in BTM_PINCodeReply()
892 btm_cb.pin_code_len = pin_len; in BTM_PINCodeReply()
893 p_dev_rec->pin_code_length = pin_len; in BTM_PINCodeReply()
894 memcpy (btm_cb.pin_code, p_pin, pin_len); in BTM_PINCodeReply()
934 …BTM_TRACE_EVENT("BTM_PINCodeReply(): Saving pin_len: %d btm_cb.pin_code_len: %d\n", pin_len, btm_c… in BTM_PINCodeReply()
937 memcpy (btm_cb.pin_code, p_pin, pin_len); in BTM_PINCodeReply()
939 btm_cb.pin_code_len_saved = pin_len; in BTM_PINCodeReply()
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/bta/dm/
Dbta_dm_api.c651 p_msg->pin_len = pin_code_len; in BTA_DMSetPinType()
668 void BTA_DmPinReply(BD_ADDR bd_addr, BOOLEAN accept, UINT8 pin_len, UINT8 *p_pin) in BTA_DmPinReply() argument
677 p_msg->pin_len = pin_len; in BTA_DmPinReply()
678 memcpy(p_msg->p_pin, p_pin, pin_len); in BTA_DmPinReply()
Dbta_dm_act.c1308 …tPinType (p_data->set_pin_type.pin_type, p_data->set_pin_type.p_pin, p_data->set_pin_type.pin_len); in bta_dm_set_pin_type()
1338 …BTM_PINCodeReply(p_data->pin_reply.bd_addr, BTM_SUCCESS, p_data->pin_reply.pin_len, p_data->pin_re… in bta_dm_pin_reply()
/hal_espressif-latest/components/bt/host/bluedroid/stack/include/stack/
Dbtm_api.h3589 void BTM_PINCodeReply (BD_ADDR bd_addr, UINT8 res, UINT8 pin_len,
3609 UINT8 pin_len, UINT8 *p_pin,
3630 UINT8 pin_len, UINT8 *p_pin,
/hal_espressif-latest/components/bt/host/bluedroid/bta/dm/include/
Dbta_dm_int.h418 UINT8 pin_len; member
427 UINT8 pin_len; member
/hal_espressif-latest/components/bt/host/bluedroid/bta/include/bta/
Dbta_api.h1988 extern void BTA_DmPinReply(BD_ADDR bd_addr, BOOLEAN accept, UINT8 pin_len,
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/
Desp_wps.c1399 cfg->pin_len = 8; in wps_init_cfg_pin()