Home | History | Annotate | Download | only in btm

Lines Matching refs:remote_bda

291 void BTM_ReadConnectionAddr (BD_ADDR remote_bda, BD_ADDR local_conn_addr, tBLE_ADDR_TYPE *p_addr_type)
293 tACL_CONN *p_acl = btm_bda_to_acl(remote_bda, BT_TRANSPORT_LE);
614 ** Parameter remote_bda: remote device address
619 void BTM_ReadDevInfo (BD_ADDR remote_bda, tBT_DEVICE_TYPE *p_dev_type, tBLE_ADDR_TYPE *p_addr_type)
621 tBTM_SEC_DEV_REC *p_dev_rec = btm_find_dev (remote_bda);
622 tBTM_INQ_INFO *p_inq_info = BTM_InqDbRead(remote_bda);
647 if (memcmp(p_dev_rec->bd_addr, remote_bda, BD_ADDR_LEN) == 0 &&
648 memcmp(p_dev_rec->ble.pseudo_addr, remote_bda, BD_ADDR_LEN) == 0)
653 else if (memcmp(p_dev_rec->ble.pseudo_addr, remote_bda, BD_ADDR_LEN) == 0)
677 ** Parameter remote_bda: remote device address, carry out the transport address
683 BOOLEAN BTM_ReadConnectedTransportAddress(BD_ADDR remote_bda, tBT_TRANSPORT transport)
685 tBTM_SEC_DEV_REC *p_dev_rec = btm_find_dev(remote_bda);
686 tACL_CONN *p = btm_bda_to_acl(remote_bda, transport);
696 memcpy(remote_bda, p_dev_rec->bd_addr, BD_ADDR_LEN);
701 memcpy(remote_bda, p_dev_rec->bd_addr, BD_ADDR_LEN);
704 memset(remote_bda, 0, BD_ADDR_LEN);
710 memcpy(remote_bda, p_dev_rec->ble.pseudo_addr, BD_ADDR_LEN);