/system/bt/stack/btm/ |
D | btm_sec.h | 197 void BTM_PINCodeReply(const RawAddress& bd_addr, uint8_t res, uint8_t pin_len, 213 tBT_TRANSPORT transport, uint8_t pin_len, 233 uint8_t pin_len, uint8_t* p_pin);
|
D | security_device_record.h | 228 uint8_t pin_len, uint8_t* p_pin); 240 uint8_t pin_len, uint8_t* p_pin);
|
D | btm_sec.cc | 615 void BTM_PINCodeReply(const RawAddress& bd_addr, uint8_t res, uint8_t pin_len, in BTM_PINCodeReply() argument 622 btm_pair_state_descr(btm_cb.pairing_state), btm_cb.pairing_flags, pin_len, in BTM_PINCodeReply() 643 if ((pin_len > PIN_CODE_LEN) || (pin_len == 0) || (p_pin == NULL)) in BTM_PINCodeReply() 665 p_dev_rec->pin_code_length = pin_len; in BTM_PINCodeReply() 666 if (pin_len >= 16) { in BTM_PINCodeReply() 674 btm_cb.pin_code_len = pin_len; in BTM_PINCodeReply() 675 memcpy(btm_cb.pin_code, p_pin, pin_len); in BTM_PINCodeReply() 712 btsnd_hcic_pin_code_req_reply(bd_addr, pin_len, p_pin); in BTM_PINCodeReply() 728 tBT_TRANSPORT transport, uint8_t pin_len, in btm_sec_bond_by_transport() argument 772 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.cc | 177 void BTA_DmPinReply(const RawAddress& bd_addr, bool accept, uint8_t pin_len, in BTA_DmPinReply() argument 185 msg->pin_len = pin_len; in BTA_DmPinReply() 186 memcpy(msg->p_pin, p_pin, pin_len); in BTA_DmPinReply()
|
D | bta_dm_int.h | 92 uint8_t pin_len; member
|
D | bta_dm_act.cc | 774 bluetooth::shim::BTM_PINCodeReply(msg->bd_addr, BTM_SUCCESS, msg->pin_len, in bta_dm_pin_reply() 777 BTM_PINCodeReply(msg->bd_addr, BTM_SUCCESS, msg->pin_len, msg->p_pin); in bta_dm_pin_reply()
|
/system/bt/test/mock/ |
D | mock_stack_btm_sec.cc | 145 uint8_t pin_len, uint8_t* p_pin) { in BTM_SecBond() argument 161 tBT_TRANSPORT transport, uint8_t pin_len, in btm_sec_bond_by_transport() argument 210 void BTM_PINCodeReply(const RawAddress& bd_addr, uint8_t res, uint8_t pin_len, in BTM_PINCodeReply() argument
|
D | mock_bta_dm_api.cc | 115 void BTA_DmPinReply(const RawAddress& bd_addr, bool accept, uint8_t pin_len, in BTA_DmPinReply() argument
|
D | mock_btif_dm.cc | 121 uint8_t pin_len, bt_pin_code_t pin_code) { in btif_dm_pin_reply() argument
|
D | mock_main_shim_btm_api.cc | 376 uint8_t pin_len, uint8_t* p_pin) { in BTM_PINCodeReply() argument
|
/system/bt/gd/rust/topshim/btif/ |
D | btif_shim.h | 65 …int PinReply(const RustRawAddress& address, uint8_t accept, uint8_t pin_len, const BtPinCode& code…
|
D | btif_shim.cc | 312 const RustRawAddress& address, uint8_t accept, uint8_t pin_len, const BtPinCode& code) const { in PinReply() argument 318 return intf_->pin_reply(&addr, accept, pin_len, &pin_code); in PinReply()
|
/system/bt/btif/include/ |
D | btif_api.h | 275 uint8_t pin_len, bt_pin_code_t pin_code);
|
/system/bt/stack/include/ |
D | btm_client_interface.h | 131 uint8_t pin_len, uint8_t* p_pin); 145 uint8_t pin_len, uint8_t* p_pin);
|
/system/bt/stack/test/common/ |
D | mock_btif_dm.cc | 120 uint8_t pin_len, bt_pin_code_t pin_code) { in btif_dm_pin_reply() argument
|
D | mock_main_shim_btm_api.cc | 380 uint8_t pin_len, uint8_t* p_pin) { in BTM_PINCodeReply() argument
|
/system/bt/btif/src/ |
D | bluetooth.cc | 360 static int pin_reply(const RawAddress* bd_addr, uint8_t accept, uint8_t pin_len, in pin_reply() argument 363 if (pin_code == nullptr || pin_len > PIN_CODE_LEN) return BT_STATUS_FAIL; in pin_reply() 366 accept, pin_len, *pin_code)); in pin_reply()
|
D | btif_dm.cc | 2101 uint8_t pin_len, bt_pin_code_t pin_code) { in btif_dm_pin_reply() argument 2115 BTA_DmPinReply(bd_addr, accept, pin_len, pin_code.pin); in btif_dm_pin_reply() 2116 if (accept) pairing_cb.pin_code_len = pin_len; in btif_dm_pin_reply()
|
/system/bt/include/hardware/ |
D | bluetooth.h | 635 int (*pin_reply)(const RawAddress* bd_addr, uint8_t accept, uint8_t pin_len,
|
/system/bt/gd/rust/topshim/src/ |
D | btif.rs | 144 pin_len: u8, in PinReply()
|
/system/bt/bta/include/ |
D | bta_api.h | 795 uint8_t pin_len, uint8_t* p_pin);
|
/system/bt/main/shim/ |
D | btm_api.h | 1519 void BTM_PINCodeReply(const RawAddress& bd_addr, uint8_t res, uint8_t pin_len,
|
D | btm_api.cc | 1346 uint8_t pin_len, uint8_t* p_pin) { in BTM_PINCodeReply() argument
|