Searched refs:pin_len (Results 1 – 9 of 9) sorted by relevance
/system/bt/btif/include/ |
D | btif_api.h | 284 uint8_t pin_len, bt_pin_code_t *pin_code);
|
/system/bt/btif/src/ |
D | bluetooth.c | 313 uint8_t pin_len, bt_pin_code_t *pin_code) in pin_reply() argument 319 return btif_dm_pin_reply(bd_addr, accept, pin_len, pin_code); in pin_reply()
|
D | btif_dm.c | 2542 uint8_t pin_len, bt_pin_code_t *pin_code) in btif_dm_pin_reply() argument 2545 if (pin_code == NULL || pin_len > PIN_CODE_LEN) in btif_dm_pin_reply() 2566 BTA_DmPinReply( (UINT8 *)bd_addr->address, accept, pin_len, pin_code->pin); in btif_dm_pin_reply() 2568 pairing_cb.pin_code_len = pin_len; in btif_dm_pin_reply() 2571 BTA_DmPinReply( (UINT8 *)bd_addr->address, accept, pin_len, pin_code->pin); in btif_dm_pin_reply() 2574 pairing_cb.pin_code_len = pin_len; in btif_dm_pin_reply()
|
/system/bt/stack/btm/ |
D | btm_sec.c | 853 void BTM_PINCodeReply (BD_ADDR bd_addr, UINT8 res, UINT8 pin_len, UINT8 *p_pin, UINT32 trusted_mask… in BTM_PINCodeReply() argument 858 btm_pair_state_descr(btm_cb.pairing_state), btm_cb.pairing_flags, pin_len, res); in BTM_PINCodeReply() 879 if ( (pin_len > PIN_CODE_LEN) || (pin_len == 0) || (p_pin == NULL) ) in BTM_PINCodeReply() 905 if (pin_len >= 16) { in BTM_PINCodeReply() 914 btm_cb.pin_code_len = pin_len; in BTM_PINCodeReply() 915 p_dev_rec->pin_code_length = pin_len; in BTM_PINCodeReply() 916 memcpy (btm_cb.pin_code, p_pin, pin_len); in BTM_PINCodeReply() 956 btsnd_hcic_pin_code_req_reply (bd_addr, pin_len, p_pin); in BTM_PINCodeReply() 973 UINT8 pin_len, UINT8 *p_pin, UINT32 trusted_mask[]) in btm_sec_bond_by_transport() argument 1018 if (p_pin && (pin_len <= PIN_CODE_LEN) && (pin_len != 0)) in btm_sec_bond_by_transport() [all …]
|
/system/bt/bta/dm/ |
D | bta_dm_api.c | 376 void BTA_DmPinReply(BD_ADDR bd_addr, BOOLEAN accept, UINT8 pin_len, UINT8 *p_pin) in BTA_DmPinReply() argument 386 p_msg->pin_len = pin_len; in BTA_DmPinReply() 387 memcpy(p_msg->p_pin, p_pin, pin_len); in BTA_DmPinReply()
|
D | bta_dm_int.h | 240 UINT8 pin_len; member
|
D | bta_dm_act.c | 1036 …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()
|
/system/bt/stack/include/ |
D | btm_api.h | 3386 extern void BTM_PINCodeReply (BD_ADDR bd_addr, UINT8 res, UINT8 pin_len, 3405 UINT8 pin_len, UINT8 *p_pin, 3425 UINT8 pin_len, UINT8 *p_pin,
|
/system/bt/bta/include/ |
D | bta_api.h | 1528 extern void BTA_DmPinReply(BD_ADDR bd_addr, BOOLEAN accept, UINT8 pin_len,
|