Home
last modified time | relevance | path

Searched refs:remote_bda (Results 1 – 25 of 41) sorted by relevance

12

/system/bt/bta/gatt/
Dbta_gattc_utils.c169 tBTA_GATTC_CLCB * bta_gattc_find_clcb_by_cif (UINT8 client_if, BD_ADDR remote_bda, in bta_gattc_find_clcb_by_cif() argument
180 bdcmp(p_clcb->bda, remote_bda) == 0) in bta_gattc_find_clcb_by_cif()
217 tBTA_GATTC_CLCB * bta_gattc_clcb_alloc(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, in bta_gattc_clcb_alloc() argument
234 bdcpy(p_clcb->bda, remote_bda); in bta_gattc_clcb_alloc()
238 if ((p_clcb->p_srcb = bta_gattc_find_srcb(remote_bda)) == NULL) in bta_gattc_clcb_alloc()
239 p_clcb->p_srcb = bta_gattc_srcb_alloc(remote_bda); in bta_gattc_clcb_alloc()
266 tBTA_GATTC_CLCB *bta_gattc_find_alloc_clcb(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, in bta_gattc_find_alloc_clcb() argument
271 if ((p_clcb = bta_gattc_find_clcb_by_cif(client_if, remote_bda, transport)) == NULL) in bta_gattc_find_alloc_clcb()
273 p_clcb = bta_gattc_clcb_alloc(client_if, remote_bda, transport); in bta_gattc_find_alloc_clcb()
576 bdcmp(p_clreg->notif_reg[i].remote_bda, p_srcb->server_bda) == 0 && in bta_gattc_check_notif_registry()
[all …]
Dbta_gattc_int.h118 BD_ADDR remote_bda; member
188 BD_ADDR_PTR remote_bda; member
203 BD_ADDR remote_bda; member
213 BD_ADDR remote_bda; member
351 BD_ADDR remote_bda; member
400 BD_ADDR remote_bda; member
409 BD_ADDR remote_bda; member
498 … BD_ADDR remote_bda, UINT16 conn_id, tBTA_TRANSPORT transport, UINT16 mtu);
506 extern tBTA_GATTC_CLCB * bta_gattc_find_clcb_by_cif (UINT8 client_if, BD_ADDR remote_bda, tBTA_TRAN…
508 extern tBTA_GATTC_CLCB * bta_gattc_clcb_alloc(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, tBTA_TRA…
[all …]
Dbta_gatts_api.c470 void BTA_GATTS_Open(tBTA_GATTS_IF server_if, BD_ADDR remote_bda, BOOLEAN is_direct, in BTA_GATTS_Open() argument
481 memcpy(p_buf->remote_bda, remote_bda, BD_ADDR_LEN); in BTA_GATTS_Open()
503 void BTA_GATTS_CancelOpen(tBTA_GATTS_IF server_if, BD_ADDR remote_bda, BOOLEAN is_direct) in BTA_GATTS_CancelOpen() argument
512 memcpy(p_buf->remote_bda, remote_bda, BD_ADDR_LEN); in BTA_GATTS_CancelOpen()
570 p_buf->remote_bda = (UINT8*)(p_buf + 1); in BTA_GATTS_Listen()
571 memcpy(p_buf->remote_bda, target_bda, BD_ADDR_LEN); in BTA_GATTS_Listen()
574 p_buf->remote_bda = NULL; in BTA_GATTS_Listen()
Dbta_gattc_act.c294 … bta_gattc_mark_bg_conn(p_clreg->client_if, p_cb->bg_track[i].remote_bda, FALSE, FALSE); in bta_gattc_deregister()
295 GATT_CancelConnect(p_clreg->client_if, p_cb->bg_track[i].remote_bda, FALSE); in bta_gattc_deregister()
299 … bta_gattc_mark_bg_conn(p_clreg->client_if, p_cb->bg_track[i].remote_bda, FALSE, TRUE); in bta_gattc_deregister()
348 p_msg->api_conn.remote_bda, in bta_gattc_process_api_open()
359 p_msg->api_conn.remote_bda, in bta_gattc_process_api_open()
395 p_msg->api_cancel_conn.remote_bda, in bta_gattc_process_api_open_cancel()
442 bdcpy(cb_data.enc_cmpl.remote_bda, p_msg->enc_cmpl.remote_bda); in bta_gattc_process_enc_cmpl()
527 if (!GATT_Connect(p_clcb->p_rcb->client_if, p_data->api_conn.remote_bda, in bta_gattc_open()
538 p_data->api_conn.remote_bda, in bta_gattc_open()
565 if (bta_gattc_mark_bg_conn(p_data->client_if, p_data->remote_bda, TRUE, FALSE)) in bta_gattc_init_bk_conn()
[all …]
Dbta_gattc_api.c149 void BTA_GATTC_Open(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, in BTA_GATTC_Open() argument
161 memcpy(p_buf->remote_bda, remote_bda, BD_ADDR_LEN); in BTA_GATTC_Open()
183 void BTA_GATTC_CancelOpen(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, BOOLEAN is_direct) in BTA_GATTC_CancelOpen() argument
193 memcpy(p_buf->remote_bda, remote_bda, BD_ADDR_LEN); in BTA_GATTC_CancelOpen()
914 !memcmp(p_clreg->notif_reg[i].remote_bda, bda, BD_ADDR_LEN) && in BTA_GATTC_RegisterForNotifications()
931 memcpy(p_clreg->notif_reg[i].remote_bda, bda, BD_ADDR_LEN); in BTA_GATTC_RegisterForNotifications()
988 !memcmp(p_clreg->notif_reg[i].remote_bda, bda, BD_ADDR_LEN) && in BTA_GATTC_DeregisterForNotifications()
1025 void BTA_GATTC_Refresh(BD_ADDR remote_bda) in BTA_GATTC_Refresh() argument
1033 memcpy(p_buf->remote_bda, remote_bda, BD_ADDR_LEN); in BTA_GATTC_Refresh()
1068 p_buf->remote_bda = (UINT8*)(p_buf + 1); in BTA_GATTC_Listen()
[all …]
Dbta_gatts_act.c640 BD_ADDR remote_bda; in bta_gatts_indicate_handle() local
649 &gatt_if, remote_bda, &transport)) in bta_gatts_indicate_handle()
668 bta_sys_busy(BTA_ID_GATTS, BTA_ALL_APP_ID, remote_bda); in bta_gatts_indicate_handle()
669 bta_sys_idle(BTA_ID_GATTS, BTA_ALL_APP_ID, remote_bda); in bta_gatts_indicate_handle()
714 if (GATT_Connect(p_rcb->gatt_if, p_msg->api_open.remote_bda, in bta_gatts_open()
719 if (GATT_GetConnIdIfConnected(p_rcb->gatt_if, p_msg->api_open.remote_bda, in bta_gatts_open()
752 if (!GATT_CancelConnect(p_rcb->gatt_if, p_msg->api_cancel_open.remote_bda, in bta_gatts_cancel_open()
784 BD_ADDR remote_bda; in bta_gatts_close() local
789 if (GATT_GetConnectionInfor(p_msg->hdr.layer_specific, &gatt_if, remote_bda, &transport)) in bta_gatts_close()
805 bta_sys_conn_close( BTA_ID_GATTS ,BTA_ALL_APP_ID, remote_bda); in bta_gatts_close()
[all …]
Dbta_gatts_int.h143 BD_ADDR remote_bda; member
155 BD_ADDR_PTR remote_bda; member
/system/bt/btif/co/
Dbta_hh_co.c487 void bta_hh_le_co_rpt_info(BD_ADDR remote_bda, tBTA_HH_RPT_CACHE_ENTRY *p_entry, UINT8 app_id) in bta_hh_le_co_rpt_info() argument
495 remote_bda[0], remote_bda[1], remote_bda[2], in bta_hh_le_co_rpt_info()
496 remote_bda[3], remote_bda[4], remote_bda[5]); in bta_hh_le_co_rpt_info()
530 tBTA_HH_RPT_CACHE_ENTRY * bta_hh_le_co_cache_load (BD_ADDR remote_bda, in bta_hh_le_co_cache_load() argument
539 remote_bda[0], remote_bda[1], remote_bda[2], in bta_hh_le_co_cache_load()
540 remote_bda[3], remote_bda[4], remote_bda[5]); in bta_hh_le_co_cache_load()
567 void bta_hh_le_co_reset_rpt_cache (BD_ADDR remote_bda, UINT8 app_id) in bta_hh_le_co_reset_rpt_cache() argument
573 remote_bda[0], remote_bda[1], remote_bda[2], in bta_hh_le_co_reset_rpt_cache()
574 remote_bda[3], remote_bda[4], remote_bda[5]); in bta_hh_le_co_reset_rpt_cache()
/system/bt/bta/include/
Dbta_hh_co.h96 extern void bta_hh_le_co_rpt_info(BD_ADDR remote_bda,
115 extern tBTA_HH_RPT_CACHE_ENTRY *bta_hh_le_co_cache_load (BD_ADDR remote_bda,
130 extern void bta_hh_le_co_reset_rpt_cache (BD_ADDR remote_bda, UINT8 app_id);
Dbta_gatt_api.h355 BD_ADDR remote_bda; member
365 BD_ADDR remote_bda; member
392 BD_ADDR remote_bda; member
399 BD_ADDR remote_bda; member
416 BD_ADDR remote_bda; /* service change event */ member
537 BD_ADDR remote_bda; member
587 BD_ADDR remote_bda; member
696 extern void BTA_GATTC_Open(tBTA_GATTC_IF client_if, BD_ADDR remote_bda,
713 extern void BTA_GATTC_CancelOpen(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, BOOLEAN is_direct);
988 BD_ADDR remote_bda,
[all …]
/system/bt/stack/btm/
Dbtm_acl.c814 tBTM_STATUS BTM_SetLinkPolicy (BD_ADDR remote_bda, UINT16 *settings) in BTM_SetLinkPolicy() argument
846 if ((p = btm_bda_to_acl(remote_bda, BT_TRANSPORT_BR_EDR)) != NULL) in BTM_SetLinkPolicy()
1266 tBTM_STATUS BTM_GetLinkSuperTout (BD_ADDR remote_bda, UINT16 *p_timeout) in BTM_GetLinkSuperTout() argument
1268 tACL_CONN *p = btm_bda_to_acl(remote_bda, BT_TRANSPORT_BR_EDR); in BTM_GetLinkSuperTout()
1290 tBTM_STATUS BTM_SetLinkSuperTout (BD_ADDR remote_bda, UINT16 timeout) in BTM_SetLinkSuperTout() argument
1292 tACL_CONN *p = btm_bda_to_acl(remote_bda, BT_TRANSPORT_BR_EDR); in BTM_SetLinkSuperTout()
1326 BOOLEAN BTM_IsAclConnectionUp (BD_ADDR remote_bda, tBT_TRANSPORT transport) in BTM_IsAclConnectionUp() argument
1331 remote_bda[0], remote_bda[1], remote_bda[2], in BTM_IsAclConnectionUp()
1332 remote_bda[3], remote_bda[4], remote_bda[5]); in BTM_IsAclConnectionUp()
1334 p = btm_bda_to_acl(remote_bda, transport); in BTM_IsAclConnectionUp()
[all …]
Dbtm_pm.c81 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) in BTM_SetPowerMode() argument
195 … (remote_bda[2]<<24)+(remote_bda[3]<<16)+(remote_bda[4]<<8)+remote_bda[5], p_mode->mode); in BTM_SetPowerMode()
200 acl_ind = btm_pm_find_acl_ind(remote_bda); in BTM_SetPowerMode()
287 tBTM_STATUS BTM_ReadPowerMode (BD_ADDR remote_bda, tBTM_PM_MODE *p_mode) in BTM_ReadPowerMode() argument
291 if( (acl_ind = btm_pm_find_acl_ind(remote_bda)) == MAX_L2CAP_LINKS) in BTM_ReadPowerMode()
316 tBTM_STATUS BTM_SetSsrParams (BD_ADDR remote_bda, UINT16 max_lat, in BTM_SetSsrParams() argument
323 if( (acl_ind = btm_pm_find_acl_ind(remote_bda)) == MAX_L2CAP_LINKS) in BTM_SetSsrParams()
410 static int btm_pm_find_acl_ind(BD_ADDR remote_bda) in btm_pm_find_acl_ind() argument
417 if ((p->in_use) && (!memcmp (p->remote_addr, remote_bda, BD_ADDR_LEN)) in btm_pm_find_acl_ind()
Dbtm_sco.c570 tBTM_STATUS BTM_CreateSco (BD_ADDR remote_bda, BOOLEAN is_orig, UINT16 pkt_types, in BTM_CreateSco() argument
594 …if ((!remote_bda) || ((acl_handle = BTM_GetHCIConnHandle (remote_bda, BT_TRANSPORT_BR_EDR)) == 0xF… in BTM_CreateSco()
598 if (remote_bda) in BTM_CreateSco()
605 && (!memcmp (p->esco.data.bd_addr, remote_bda, BD_ADDR_LEN))) in BTM_CreateSco()
626 if (remote_bda) in BTM_CreateSco()
632 if(BTM_ReadPowerMode(remote_bda, &md) == BTM_SUCCESS) in BTM_CreateSco()
638 BTM_SetPowerMode(BTM_PM_SET_ONLY_ID, remote_bda, &pm); in BTM_CreateSco()
643 … if( (BTM_ReadPowerMode(remote_bda, &mode) == BTM_SUCCESS) && (mode == BTM_PM_MD_PARK) ) in BTM_CreateSco()
647 memcpy (p->esco.data.bd_addr, remote_bda, BD_ADDR_LEN); in BTM_CreateSco()
688 p_acl = btm_bda_to_acl(remote_bda, BT_TRANSPORT_BR_EDR); in BTM_CreateSco()
[all …]
Dbtm_ble.c291 void BTM_ReadConnectionAddr (BD_ADDR remote_bda, BD_ADDR local_conn_addr, tBLE_ADDR_TYPE *p_addr_ty… in BTM_ReadConnectionAddr() argument
293 tACL_CONN *p_acl = btm_bda_to_acl(remote_bda, BT_TRANSPORT_LE); in BTM_ReadConnectionAddr()
619 void BTM_ReadDevInfo (BD_ADDR remote_bda, tBT_DEVICE_TYPE *p_dev_type, tBLE_ADDR_TYPE *p_addr_type) in BTM_ReadDevInfo() argument
621 tBTM_SEC_DEV_REC *p_dev_rec = btm_find_dev (remote_bda); in BTM_ReadDevInfo()
622 tBTM_INQ_INFO *p_inq_info = BTM_InqDbRead(remote_bda); in BTM_ReadDevInfo()
647 if (memcmp(p_dev_rec->bd_addr, remote_bda, BD_ADDR_LEN) == 0 && in BTM_ReadDevInfo()
648 memcmp(p_dev_rec->ble.pseudo_addr, remote_bda, BD_ADDR_LEN) == 0) in BTM_ReadDevInfo()
653 else if (memcmp(p_dev_rec->ble.pseudo_addr, remote_bda, BD_ADDR_LEN) == 0) in BTM_ReadDevInfo()
683 BOOLEAN BTM_ReadConnectedTransportAddress(BD_ADDR remote_bda, tBT_TRANSPORT transport) in BTM_ReadConnectedTransportAddress() argument
685 tBTM_SEC_DEV_REC *p_dev_rec = btm_find_dev(remote_bda); in BTM_ReadConnectedTransportAddress()
[all …]
Dbtm_inq.c1044 tBTM_STATUS BTM_ReadRemoteDeviceName (BD_ADDR remote_bda, tBTM_CMPL_CB *p_cb in BTM_ReadRemoteDeviceName() argument
1051 remote_bda[0], remote_bda[1], remote_bda[2], in BTM_ReadRemoteDeviceName()
1052 remote_bda[3], remote_bda[4], remote_bda[5]); in BTM_ReadRemoteDeviceName()
1055 if ((p_i = btm_inq_db_find (remote_bda)) != NULL) in BTM_ReadRemoteDeviceName()
1064 return btm_ble_read_remote_name(remote_bda, p_cur, p_cb); in BTM_ReadRemoteDeviceName()
1069 return (btm_initiate_rem_name (remote_bda, p_cur, BTM_RMT_NAME_EXT, in BTM_ReadRemoteDeviceName()
2245 tBTM_STATUS btm_initiate_rem_name (BD_ADDR remote_bda, tBTM_INQ_INFO *p_cur, in btm_initiate_rem_name() argument
2259 cmd_ok = btsnd_hcic_rmt_name_req (remote_bda, HCI_PAGE_SCAN_REP_MODE_R1, in btm_initiate_rem_name()
2277 memcpy(p_inq->remname_bda, remote_bda, BD_ADDR_LEN); in btm_initiate_rem_name()
2285 cmd_ok = btsnd_hcic_rmt_name_req (remote_bda, in btm_initiate_rem_name()
[all …]
Dbtm_ble_gap.c234 BOOLEAN BTM_BleUpdateAdvWhitelist(BOOLEAN add_remove, BD_ADDR remote_bda) in BTM_BleUpdateAdvWhitelist() argument
237 UNUSED(remote_bda); in BTM_BleUpdateAdvWhitelist()
878 BOOLEAN BTM_BleUpdateBgConnDev(BOOLEAN add_remove, BD_ADDR remote_bda) in BTM_BleUpdateBgConnDev() argument
881 return btm_update_dev_to_white_list(add_remove, remote_bda); in BTM_BleUpdateBgConnDev()
2049 tBTM_STATUS btm_ble_read_remote_name(BD_ADDR remote_bda, tBTM_INQ_INFO *p_cur, tBTM_CMPL_CB *p_cb) in btm_ble_read_remote_name() argument
2068 if (!GAP_BleReadPeerDevName(remote_bda, btm_ble_read_remote_name_cmpl)) in btm_ble_read_remote_name()
2074 memcpy(p_inq->remname_bda, remote_bda, BD_ADDR_LEN); in btm_ble_read_remote_name()
2094 BOOLEAN btm_ble_cancel_remote_name(BD_ADDR remote_bda) in btm_ble_cancel_remote_name() argument
2099 status = GAP_BleCancelReadPeerDevName(remote_bda); in btm_ble_cancel_remote_name()
2649 void btm_send_sel_conn_callback(BD_ADDR remote_bda, UINT8 evt_type, UINT8 *p_data, UINT8 addr_type) in btm_send_sel_conn_callback() argument
[all …]
/system/bt/stack/gatt/
Dgatt_attr.c74 UINT16 gatt_profile_find_conn_id_by_bd_addr(BD_ADDR remote_bda) in gatt_profile_find_conn_id_by_bd_addr() argument
77 GATT_GetConnIdIfConnected (gatt_cb.gatt_if, remote_bda, &conn_id, BT_TRANSPORT_LE); in gatt_profile_find_conn_id_by_bd_addr()
486 void GATT_ConfigServiceChangeCCC (BD_ADDR remote_bda, BOOLEAN enable, tBT_TRANSPORT transport) in GATT_ConfigServiceChangeCCC() argument
489 tGATT_PROFILE_CLCB *p_clcb = gatt_profile_find_clcb_by_bd_addr (remote_bda, transport); in GATT_ConfigServiceChangeCCC()
492 p_clcb = gatt_profile_clcb_alloc (0, remote_bda, transport); in GATT_ConfigServiceChangeCCC()
497 if (GATT_GetConnIdIfConnected (gatt_cb.gatt_if, remote_bda, &p_clcb->conn_id, transport)) in GATT_ConfigServiceChangeCCC()
502 GATT_Connect(gatt_cb.gatt_if, remote_bda, TRUE, transport); in GATT_ConfigServiceChangeCCC()
Dgatt_utils.c2352 tGATT_BG_CONN_DEV * gatt_find_bg_dev(BD_ADDR remote_bda) in gatt_find_bg_dev() argument
2359 if (p_dev_list->in_use && !memcmp(p_dev_list->remote_bda, remote_bda, BD_ADDR_LEN)) in gatt_find_bg_dev()
2375 tGATT_BG_CONN_DEV * gatt_alloc_bg_dev(BD_ADDR remote_bda) in gatt_alloc_bg_dev() argument
2385 memcpy(p_dev_list->remote_bda, remote_bda, BD_ADDR_LEN); in gatt_alloc_bg_dev()
2581 ret = BTM_BleUpdateBgConnDev(FALSE, p_dev->remote_bda); in gatt_remove_bg_dev_from_list()
2599 ret = BTM_BleUpdateAdvWhitelist(FALSE, p_dev->remote_bda); in gatt_remove_bg_dev_from_list()
2645 BTM_BleUpdateBgConnDev(FALSE, p_dev_list->remote_bda); in gatt_deregister_bgdev_list()
2660 BTM_BleUpdateAdvWhitelist(FALSE, p_dev_list->remote_bda); in gatt_deregister_bgdev_list()
/system/bt/stack/srvc/
Dsrvc_eng_int.h80 extern BOOLEAN srvc_eng_request_channel (BD_ADDR remote_bda, UINT8 srvc_id );
82 extern void srvc_sr_notify(BD_ADDR remote_bda, UINT16 handle, UINT16 len, UINT8 *p_value);
Dsrvc_eng.c386 BOOLEAN srvc_eng_request_channel (BD_ADDR remote_bda, UINT8 srvc_id ) in srvc_eng_request_channel() argument
389 tSRVC_CLCB *p_clcb = srvc_eng_find_clcb_by_bd_addr(remote_bda); in srvc_eng_request_channel()
392 p_clcb = srvc_eng_clcb_alloc(0, remote_bda); in srvc_eng_request_channel()
470 void srvc_sr_notify(BD_ADDR remote_bda, UINT16 handle, UINT16 len, UINT8 *p_value) in srvc_sr_notify() argument
472 UINT16 conn_id = srvc_eng_find_conn_id_by_bd_addr(remote_bda); in srvc_sr_notify()
Dsrvc_battery.c85 memcpy(cfg.remote_bda, srvc_eng_cb.clcb[clcb_idx].bda, BD_ADDR_LEN); in battery_s_write_attr_value()
375 void Battery_Notify (UINT8 app_id, BD_ADDR remote_bda, UINT8 battery_level) in Battery_Notify() argument
390 srvc_sr_notify(remote_bda, p_inst->ba_level_hdl, 1, &battery_level); in Battery_Notify()
/system/bt/stack/include/
Dsrvc_api.h91 BD_ADDR remote_bda; member
209 extern void Battery_Notify (UINT8 app_id, BD_ADDR remote_bda, UINT8 battery_level);
Dbtm_api.h1761 typedef void (tBTM_LSTO_CBACK) (BD_ADDR remote_bda, UINT16 timeout);
2417 extern tBTM_STATUS BTM_ReadRemoteDeviceName (BD_ADDR remote_bda,
2663 extern tBTM_STATUS BTM_SetLinkPolicy (BD_ADDR remote_bda,
2701 extern tBTM_STATUS BTM_SetLinkSuperTout (BD_ADDR remote_bda,
2712 extern tBTM_STATUS BTM_GetLinkSuperTout (BD_ADDR remote_bda,
2725 extern BOOLEAN BTM_IsAclConnectionUp (BD_ADDR remote_bda, tBT_TRANSPORT transport);
2777 extern tBTM_STATUS BTM_ReadRSSI (BD_ADDR remote_bda, tBTM_CMPL_CB *p_cb);
2795 extern tBTM_STATUS BTM_ReadTxPower (BD_ADDR remote_bda,
2812 extern tBTM_STATUS BTM_ReadLinkQuality (BD_ADDR remote_bda, tBTM_CMPL_CB *p_cb);
2884 extern tBTM_STATUS BTM_CreateSco (BD_ADDR remote_bda, BOOLEAN is_orig,
[all …]
Dbtm_ble_api.h876 typedef void (tBTM_BLE_SCAN_REQ_CBACK)(BD_ADDR remote_bda, tBLE_ADDR_TYPE addr_type, UINT8 adv_evt);
1276 extern void BTM_ReadConnectionAddr (BD_ADDR remote_bda, BD_ADDR local_conn_addr,
1343 extern BOOLEAN BTM_BleUpdateBgConnDev(BOOLEAN add_remove, BD_ADDR remote_bda);
1461 extern void BTM_ReadDevInfo (BD_ADDR remote_bda, tBT_DEVICE_TYPE *p_dev_type,
1478 extern BOOLEAN BTM_ReadConnectedTransportAddress(BD_ADDR remote_bda,
/system/bt/btif/src/
Dbtif_gatt_server.c195 bdcpy(bda.address, p_data->conn.remote_bda); in btapp_gatts_handle_cback()
197 btif_gatt_check_encrypted_link(p_data->conn.remote_bda, p_data->conn.transport); in btapp_gatts_handle_cback()
207 bdcpy(bda.address, p_data->conn.remote_bda); in btapp_gatts_handle_cback()
288 bdcpy(bda.address, p_data->req_data.remote_bda); in btapp_gatts_handle_cback()
301 bdcpy(bda.address, p_data->req_data.remote_bda); in btapp_gatts_handle_cback()
317 bdcpy(bda.address, p_data->req_data.remote_bda); in btapp_gatts_handle_cback()

12