Home | History | Annotate | Download | only in btm

Lines Matching refs:remote_bda

81 static int btm_pm_find_acl_ind(BD_ADDR remote_bda);
179 tBTM_STATUS BTM_SetPowerMode (UINT8 pm_id, BD_ADDR remote_bda, tBTM_PM_PWR_MD *p_mode)
195 (remote_bda[2]<<24)+(remote_bda[3]<<16)+(remote_bda[4]<<8)+remote_bda[5], p_mode->mode);
200 acl_ind = btm_pm_find_acl_ind(remote_bda);
274 ** Input Param remote_bda - device address of desired ACL connection
287 tBTM_STATUS BTM_ReadPowerMode (BD_ADDR remote_bda, tBTM_PM_MODE *p_mode)
291 if( (acl_ind = btm_pm_find_acl_ind(remote_bda)) == MAX_L2CAP_LINKS)
305 ** Input Param remote_bda - device address of desired ACL connection
316 tBTM_STATUS BTM_SetSsrParams (BD_ADDR remote_bda, UINT16 max_lat,
323 if( (acl_ind = btm_pm_find_acl_ind(remote_bda)) == MAX_L2CAP_LINKS)
410 static int btm_pm_find_acl_ind(BD_ADDR remote_bda)
417 if ((p->in_use) && (!memcmp (p->remote_addr, remote_bda, BD_ADDR_LEN))