Home
last modified time | relevance | path

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

12345

/hal_espressif-2.7.6/components/bt/host/bluedroid/bta/gatt/
Dbta_gattc_utils.c168 tBTA_GATTC_CLCB *bta_gattc_find_clcb_by_cif (UINT8 client_if, BD_ADDR remote_bda, in bta_gattc_find_clcb_by_cif() argument
178 bdcmp(p_clcb->bda, remote_bda) == 0) { in bta_gattc_find_clcb_by_cif()
216 tBTA_GATTC_CLCB *bta_gattc_clcb_alloc(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, in bta_gattc_clcb_alloc() argument
231 bdcpy(p_clcb->bda, remote_bda); in bta_gattc_clcb_alloc()
237 if ((p_clcb->p_srcb = bta_gattc_find_srcb(remote_bda)) == NULL) { in bta_gattc_clcb_alloc()
238 p_clcb->p_srcb = bta_gattc_srcb_alloc(remote_bda); in bta_gattc_clcb_alloc()
263 tBTA_GATTC_CLCB *bta_gattc_find_alloc_clcb(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, in bta_gattc_find_alloc_clcb() argument
268 if ((p_clcb = bta_gattc_find_clcb_by_cif(client_if, remote_bda, transport)) == NULL) { in bta_gattc_find_alloc_clcb()
269 p_clcb = bta_gattc_clcb_alloc(client_if, remote_bda, transport); in bta_gattc_find_alloc_clcb()
548 bdcmp(p_clreg->notif_reg[i].remote_bda, p_srcb->server_bda) == 0 && in bta_gattc_check_notif_registry()
[all …]
Dbta_gatts_api.c520 void BTA_GATTS_Open(tBTA_GATTS_IF server_if, BD_ADDR remote_bda, BOOLEAN is_direct, in BTA_GATTS_Open() argument
530 memcpy(p_buf->remote_bda, remote_bda, BD_ADDR_LEN); in BTA_GATTS_Open()
552 void BTA_GATTS_CancelOpen(tBTA_GATTS_IF server_if, BD_ADDR remote_bda, BOOLEAN is_direct) in BTA_GATTS_CancelOpen() argument
560 memcpy(p_buf->remote_bda, remote_bda, BD_ADDR_LEN); in BTA_GATTS_CancelOpen()
590 void BTA_GATTS_SendServiceChangeIndication(tBTA_GATTS_IF server_if, BD_ADDR remote_bda) in BTA_GATTS_SendServiceChangeIndication() argument
598 memcpy(p_buf->remote_bda, remote_bda, BD_ADDR_LEN); in BTA_GATTS_SendServiceChangeIndication()
632 p_buf->remote_bda = (UINT8 *)(p_buf + 1); in BTA_GATTS_Listen()
633 memcpy(p_buf->remote_bda, target_bda, BD_ADDR_LEN); in BTA_GATTS_Listen()
635 p_buf->remote_bda = NULL; in BTA_GATTS_Listen()
Dbta_gattc_api.c145 void BTA_GATTC_Open(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, tBTA_ADDR_TYPE remote_addr_type, in BTA_GATTC_Open() argument
158 memcpy(p_buf->remote_bda, remote_bda, BD_ADDR_LEN); in BTA_GATTC_Open()
180 void BTA_GATTC_CancelOpen(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, BOOLEAN is_direct) in BTA_GATTC_CancelOpen() argument
194 memcpy(p_buf->remote_bda, remote_bda, BD_ADDR_LEN); in BTA_GATTC_CancelOpen()
877 !memcmp(p_clreg->notif_reg[i].remote_bda, bda, BD_ADDR_LEN) && in BTA_GATTC_RegisterForNotifications()
890 memcpy(p_clreg->notif_reg[i].remote_bda, bda, BD_ADDR_LEN); in BTA_GATTC_RegisterForNotifications()
939 !memcmp(p_clreg->notif_reg[i].remote_bda, bda, BD_ADDR_LEN) && in BTA_GATTC_DeregisterForNotifications()
965 void BTA_GATTC_Refresh(BD_ADDR remote_bda, bool erase_flash) in BTA_GATTC_Refresh() argument
970 bta_gattc_cache_reset(remote_bda); in BTA_GATTC_Refresh()
981 memcpy(p_buf->remote_bda, remote_bda, BD_ADDR_LEN); in BTA_GATTC_Refresh()
[all …]
Dbta_gattc_act.c69 …GATTC_FIND_SERVICE_CB bta_gattc_register_service_change_notify(UINT16 conn_id, BD_ADDR remote_bda);
283 … bta_gattc_mark_bg_conn(p_clreg->client_if, p_cb->bg_track[i].remote_bda, FALSE, FALSE); in bta_gattc_deregister()
284 GATT_CancelConnect(p_clreg->client_if, p_cb->bg_track[i].remote_bda, FALSE); in bta_gattc_deregister()
287 … bta_gattc_mark_bg_conn(p_clreg->client_if, p_cb->bg_track[i].remote_bda, FALSE, TRUE); in bta_gattc_deregister()
329 p_msg->api_conn.remote_bda, in bta_gattc_process_api_open()
337 p_msg->api_conn.remote_bda, in bta_gattc_process_api_open()
368 p_msg->api_cancel_conn.remote_bda, in bta_gattc_process_api_open_cancel()
408 bdcpy(cb_data.enc_cmpl.remote_bda, p_msg->enc_cmpl.remote_bda); in bta_gattc_process_enc_cmpl()
494 tGATT_TCB *p_tcb = gatt_find_tcb_by_addr(p_data->api_conn.remote_bda, BT_TRANSPORT_LE); in bta_gattc_open()
499 …if (!GATT_Connect(p_clcb->p_rcb->client_if, p_data->api_conn.remote_bda, p_data->api_conn.remote_a… in bta_gattc_open()
[all …]
Dbta_gatts_act.c659 BD_ADDR remote_bda; in bta_gatts_indicate_handle() local
667 &gatt_if, remote_bda, &transport)) { in bta_gatts_indicate_handle()
686 bta_sys_busy(BTA_ID_GATTS, BTA_ALL_APP_ID, remote_bda); in bta_gatts_indicate_handle()
687 bta_sys_idle(BTA_ID_GATTS, BTA_ALL_APP_ID, remote_bda); in bta_gatts_indicate_handle()
748 if (GATT_Connect(p_rcb->gatt_if, p_msg->api_open.remote_bda, BLE_ADDR_UNKNOWN_TYPE, in bta_gatts_open()
752 if (GATT_GetConnIdIfConnected(p_rcb->gatt_if, p_msg->api_open.remote_bda, in bta_gatts_open()
785 if (!GATT_CancelConnect(p_rcb->gatt_if, p_msg->api_cancel_open.remote_bda, in bta_gatts_cancel_open()
816 BD_ADDR remote_bda; in bta_gatts_close() local
821 if (GATT_GetConnectionInfor(p_msg->hdr.layer_specific, &gatt_if, remote_bda, &transport)) { in bta_gatts_close()
832 bta_sys_conn_close( BTA_ID_GATTS , BTA_ALL_APP_ID, remote_bda); in bta_gatts_close()
[all …]
/hal_espressif-2.7.6/components/bt/host/bluedroid/api/include/api/
Desp_a2dp_api.h109 esp_bd_addr_t remote_bda; /*!< remote bluetooth device address */ member
118 esp_bd_addr_t remote_bda; /*!< remote bluetooth device address */ member
125 esp_bd_addr_t remote_bda; /*!< remote bluetooth device address */ member
254 esp_err_t esp_a2d_sink_connect(esp_bd_addr_t remote_bda);
270 esp_err_t esp_a2d_sink_disconnect(esp_bd_addr_t remote_bda);
351 esp_err_t esp_a2d_source_connect(esp_bd_addr_t remote_bda);
366 esp_err_t esp_a2d_source_disconnect(esp_bd_addr_t remote_bda);
Desp_hf_ag_api.h78 esp_bd_addr_t remote_bda; /*!< Remote bluetooth device address */ member
264 esp_err_t esp_bt_hf_connect(esp_bd_addr_t remote_bda);
279 esp_err_t esp_bt_hf_disconnect(esp_bd_addr_t remote_bda);
294 esp_err_t esp_bt_hf_connect_audio(esp_bd_addr_t remote_bda);
309 esp_err_t esp_bt_hf_disconnect_audio(esp_bd_addr_t remote_bda);
326 esp_err_t esp_bt_hf_vra(esp_bd_addr_t remote_bda, esp_hf_vr_state_t value);
345 esp_err_t esp_bt_hf_volume_control(esp_bd_addr_t remote_bda, esp_hf_volume_control_target_t type, i…
378 esp_err_t esp_bt_hf_cmee_response(esp_bd_addr_t remote_bda, esp_hf_at_response_code_t response_code…
Desp_hf_client_api.h107 esp_bd_addr_t remote_bda; /*!< remote bluetooth device address */ member
115 esp_bd_addr_t remote_bda; /*!< remote bluetooth device address */ member
343 esp_err_t esp_hf_client_connect(esp_bd_addr_t remote_bda);
358 esp_err_t esp_hf_client_disconnect(esp_bd_addr_t remote_bda);
372 esp_err_t esp_hf_client_connect_audio(esp_bd_addr_t remote_bda);
386 esp_err_t esp_hf_client_disconnect_audio(esp_bd_addr_t remote_bda);
Desp_gattc_api.h92 esp_bd_addr_t remote_bda; /*!< Remote bluetooth device address */ member
102 esp_bd_addr_t remote_bda; /*!< Remote bluetooth device address */ member
170 esp_bd_addr_t remote_bda; /*!< Remote bluetooth device address */ member
181 esp_bd_addr_t remote_bda; /*!< Remote bluetooth device address */ member
213 esp_bd_addr_t remote_bda; /*!< Remote bluetooth device address */ member
223 esp_bd_addr_t remote_bda; /*!< Remote bluetooth device address */ member
323 esp_err_t esp_ble_gattc_open(esp_gatt_if_t gattc_if, esp_bd_addr_t remote_bda, esp_ble_addr_type_t …
327 esp_err_t esp_ble_gattc_aux_open(esp_gatt_if_t gattc_if, esp_bd_addr_t remote_bda, esp_ble_addr_typ…
840 esp_err_t esp_ble_gattc_cache_refresh(esp_bd_addr_t remote_bda);
885 esp_err_t esp_ble_gattc_cache_clean(esp_bd_addr_t remote_bda);
/hal_espressif-2.7.6/components/bt/host/bluedroid/bta/gatt/include/
Dbta_gattc_int.h129 BD_ADDR remote_bda; member
194 BD_ADDR_PTR remote_bda; member
219 BD_ADDR remote_bda; member
230 BD_ADDR remote_bda; member
326 BD_ADDR remote_bda; member
374 BD_ADDR remote_bda; member
382 BD_ADDR remote_bda; member
477 … BD_ADDR remote_bda, UINT16 conn_id, tBTA_TRANSPORT transport, UINT16 mtu);
478 extern void bta_gattc_send_connect_cback( tBTA_GATTC_RCB *p_clreg, BD_ADDR remote_bda, UINT16 conn_…
480 BD_ADDR remote_bda, UINT16 conn_id);
[all …]
/hal_espressif-2.7.6/components/bt/host/bluedroid/api/
Desp_a2dp_api.c80 esp_err_t esp_a2d_sink_connect(esp_bd_addr_t remote_bda) in esp_a2d_sink_connect() argument
97 memcpy(&(arg.connect), remote_bda, sizeof(bt_bdaddr_t)); in esp_a2d_sink_connect()
102 esp_err_t esp_a2d_sink_disconnect(esp_bd_addr_t remote_bda) in esp_a2d_sink_disconnect() argument
117 memcpy(&(arg.disconn), remote_bda, sizeof(bt_bdaddr_t)); in esp_a2d_sink_disconnect()
195 esp_err_t esp_a2d_source_connect(esp_bd_addr_t remote_bda) in esp_a2d_source_connect() argument
212 memcpy(&(arg.src_connect), remote_bda, sizeof(bt_bdaddr_t)); in esp_a2d_source_connect()
217 esp_err_t esp_a2d_source_disconnect(esp_bd_addr_t remote_bda) in esp_a2d_source_disconnect() argument
234 memcpy(&(arg.src_disconn), remote_bda, sizeof(bt_bdaddr_t)); in esp_a2d_source_disconnect()
Desp_gap_bt_api.c104 esp_err_t esp_bt_gap_get_remote_services(esp_bd_addr_t remote_bda) in esp_bt_gap_get_remote_services() argument
117 memcpy(&arg.bda, remote_bda, sizeof(bt_bdaddr_t)); in esp_bt_gap_get_remote_services()
121 esp_err_t esp_bt_gap_get_remote_service_record(esp_bd_addr_t remote_bda, esp_bt_uuid_t *uuid) in esp_bt_gap_get_remote_service_record() argument
134 memcpy(&arg.get_rmt_srv_rcd.bda, remote_bda, sizeof(bt_bdaddr_t)); in esp_bt_gap_get_remote_service_record()
396 esp_err_t esp_bt_gap_read_remote_name(esp_bd_addr_t remote_bda) in esp_bt_gap_read_remote_name() argument
409 memcpy(&arg.rmt_name_bda, remote_bda, sizeof(bt_bdaddr_t)); in esp_bt_gap_read_remote_name()
413 esp_err_t esp_bt_gap_set_qos(esp_bd_addr_t remote_bda, uint32_t t_poll) in esp_bt_gap_set_qos() argument
426 memcpy(&arg.set_qos.bda, remote_bda, sizeof(bt_bdaddr_t)); in esp_bt_gap_set_qos()
Desp_hf_client_api.c74 esp_err_t esp_hf_client_connect(esp_bd_addr_t remote_bda) in esp_hf_client_connect() argument
91 memcpy(&(arg.connect), remote_bda, sizeof(bt_bdaddr_t)); in esp_hf_client_connect()
96 esp_err_t esp_hf_client_disconnect(esp_bd_addr_t remote_bda) in esp_hf_client_disconnect() argument
113 memcpy(&(arg.disconnect), remote_bda, sizeof(bt_bdaddr_t)); in esp_hf_client_disconnect()
118 esp_err_t esp_hf_client_connect_audio(esp_bd_addr_t remote_bda) in esp_hf_client_connect_audio() argument
135 memcpy(&(arg.connect_audio), remote_bda, sizeof(bt_bdaddr_t)); in esp_hf_client_connect_audio()
140 esp_err_t esp_hf_client_disconnect_audio(esp_bd_addr_t remote_bda) in esp_hf_client_disconnect_audio() argument
157 memcpy(&(arg.disconnect_audio), remote_bda, sizeof(bt_bdaddr_t)); in esp_hf_client_disconnect_audio()
Desp_gattc_api.c74 esp_err_t esp_ble_gattc_open(esp_gatt_if_t gattc_if, esp_bd_addr_t remote_bda, esp_ble_addr_type_t … in esp_ble_gattc_open() argument
85 memcpy(arg.open.remote_bda, remote_bda, ESP_BD_ADDR_LEN); in esp_ble_gattc_open()
95 esp_err_t esp_ble_gattc_aux_open(esp_gatt_if_t gattc_if, esp_bd_addr_t remote_bda, esp_ble_addr_typ… in esp_ble_gattc_aux_open() argument
106 memcpy(arg.open.remote_bda, remote_bda, ESP_BD_ADDR_LEN); in esp_ble_gattc_aux_open()
665 memcpy(arg.reg_for_notify.remote_bda, server_bda, sizeof(esp_bd_addr_t)); in esp_ble_gattc_register_for_notify()
684 memcpy(arg.unreg_for_notify.remote_bda, server_bda, sizeof(esp_bd_addr_t)); in esp_ble_gattc_unregister_for_notify()
688 esp_err_t esp_ble_gattc_cache_refresh(esp_bd_addr_t remote_bda) in esp_ble_gattc_cache_refresh() argument
698 memcpy(arg.cache_refresh.remote_bda, remote_bda, sizeof(esp_bd_addr_t)); in esp_ble_gattc_cache_refresh()
703 esp_err_t esp_ble_gattc_cache_clean(esp_bd_addr_t remote_bda) in esp_ble_gattc_cache_clean() argument
713 memcpy(arg.cache_clean.remote_bda, remote_bda, sizeof(esp_bd_addr_t)); in esp_ble_gattc_cache_clean()
Desp_gatts_api.c340 esp_err_t esp_ble_gatts_open(esp_gatt_if_t gatts_if, esp_bd_addr_t remote_bda, bool is_direct) in esp_ble_gatts_open() argument
352 memcpy(&arg.open.remote_bda, remote_bda, sizeof(esp_bd_addr_t)); in esp_ble_gatts_open()
374 …rr_t esp_ble_gatts_send_service_change_indication(esp_gatt_if_t gatts_if, esp_bd_addr_t remote_bda) in esp_ble_gatts_send_service_change_indication() argument
385 if(remote_bda) { in esp_ble_gatts_send_service_change_indication()
386 memcpy(&arg.send_service_change.remote_bda, remote_bda, sizeof(esp_bd_addr_t)); in esp_ble_gatts_send_service_change_indication()
388 memset(arg.send_service_change.remote_bda, 0, sizeof(esp_bd_addr_t)); in esp_ble_gatts_send_service_change_indication()
/hal_espressif-2.7.6/components/bt/host/bluedroid/bta/include/bta/
Dbta_gatt_api.h350 BD_ADDR remote_bda; member
359 BD_ADDR remote_bda; member
399 BD_ADDR remote_bda; member
404 BD_ADDR remote_bda; member
411 BD_ADDR remote_bda; member
419 BD_ADDR remote_bda; member
424 BD_ADDR remote_bda; member
570 BD_ADDR remote_bda; member
618 BD_ADDR remote_bda; member
679 BD_ADDR remote_bda; member
[all …]
Dbta_hh_co.h95 extern void bta_hh_le_co_rpt_info(BD_ADDR remote_bda,
114 extern tBTA_HH_RPT_CACHE_ENTRY *bta_hh_le_co_cache_load (BD_ADDR remote_bda,
129 extern void bta_hh_le_co_reset_rpt_cache (BD_ADDR remote_bda, UINT8 app_id);
/hal_espressif-2.7.6/components/bt/host/bluedroid/btc/profile/esp/wechat_AirSync/
Dwx_airsync_prf.c143 airsync_env_clcb_alloc(p_data->conn.conn_id, p_data->conn.remote_bda); in airsync_profile_cb()
198 tAirSync_CLCB *airsync_env_clcb_alloc (UINT16 conn_id, BD_ADDR remote_bda) in airsync_env_clcb_alloc() argument
208 memcpy(p_clcb->remote_bda, remote_bda, BD_ADDR_LEN); in airsync_env_clcb_alloc()
223 UINT16 airsync_env_find_conn_id_by_bd_adddr(BD_ADDR remote_bda) in airsync_env_find_conn_id_by_bd_adddr() argument
229 … if (p_clcb->in_use && p_clcb->connected && memcmp(p_clcb->remote_bda, remote_bda, BD_ADDR_LEN)) { in airsync_env_find_conn_id_by_bd_adddr()
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/btm/
Dbtm_acl.c848 tBTM_STATUS BTM_SetLinkPolicy (BD_ADDR remote_bda, UINT16 *settings) in BTM_SetLinkPolicy() argument
875 if ((p = btm_bda_to_acl(remote_bda, BT_TRANSPORT_BR_EDR)) != NULL) { in BTM_SetLinkPolicy()
1285 tBTM_STATUS BTM_GetLinkSuperTout (BD_ADDR remote_bda, UINT16 *p_timeout) in BTM_GetLinkSuperTout() argument
1287 tACL_CONN *p = btm_bda_to_acl(remote_bda, BT_TRANSPORT_BR_EDR); in BTM_GetLinkSuperTout()
1308 tBTM_STATUS BTM_SetLinkSuperTout (BD_ADDR remote_bda, UINT16 timeout) in BTM_SetLinkSuperTout() argument
1310 tACL_CONN *p = btm_bda_to_acl(remote_bda, BT_TRANSPORT_BR_EDR); in BTM_SetLinkSuperTout()
1343 BOOLEAN BTM_IsAclConnectionUp (BD_ADDR remote_bda, tBT_TRANSPORT transport) in BTM_IsAclConnectionUp() argument
1348 remote_bda[0], remote_bda[1], remote_bda[2], in BTM_IsAclConnectionUp()
1349 remote_bda[3], remote_bda[4], remote_bda[5]); in BTM_IsAclConnectionUp()
1351 p = btm_bda_to_acl(remote_bda, transport); in BTM_IsAclConnectionUp()
[all …]
Dbtm_pm.c173 tBTM_STATUS BTM_SetPowerMode (UINT8 pm_id, BD_ADDR remote_bda, tBTM_PM_PWR_MD *p_mode) in BTM_SetPowerMode() argument
191 …(remote_bda[2] << 24) + (remote_bda[3] << 16) + (remote_bda[4] << 8) + remote_bda[5], p_mode->mode… in BTM_SetPowerMode()
196 p_acl_cb = btm_bda_to_acl(remote_bda, BT_TRANSPORT_BR_EDR); in BTM_SetPowerMode()
280 tBTM_STATUS BTM_ReadPowerMode (BD_ADDR remote_bda, tBTM_PM_MODE *p_mode) in BTM_ReadPowerMode() argument
282 tACL_CONN *p_acl_cb = btm_bda_to_acl(remote_bda, BT_TRANSPORT_BR_EDR); in BTM_ReadPowerMode()
309 tBTM_STATUS BTM_SetSsrParams (BD_ADDR remote_bda, UINT16 max_lat, in BTM_SetSsrParams() argument
317 if ( (acl_ind = btm_pm_find_acl_ind(remote_bda)) == MAX_L2CAP_LINKS) { in BTM_SetSsrParams()
320 p_acl_cb = btm_bda_to_acl(remote_bda); in BTM_SetSsrParams()
/hal_espressif-2.7.6/examples/bluetooth/bluedroid/ble/gattc_multi_connect/main/
Dgattc_multi_connect.c110 esp_bd_addr_t remote_bda; member
162 memcpy(gl_profile_tab[PROFILE_A_APP_ID].remote_bda, p_data->open.remote_bda, 6); in gattc_profile_a_event_handler()
166 esp_log_buffer_hex(GATTC_TAG, p_data->open.remote_bda, sizeof(esp_bd_addr_t)); in gattc_profile_a_event_handler()
226 …_gattc_register_for_notify (gattc_if, gl_profile_tab[PROFILE_A_APP_ID].remote_bda, char_elem_resul… in gattc_profile_a_event_handler()
325 memcpy(bda, p_data->srvc_chg.remote_bda, sizeof(esp_bd_addr_t)); in gattc_profile_a_event_handler()
333 … if (memcmp(p_data->disconnect.remote_bda, gl_profile_tab[PROFILE_A_APP_ID].remote_bda, 6) == 0){ in gattc_profile_a_event_handler()
362 memcpy(gl_profile_tab[PROFILE_B_APP_ID].remote_bda, p_data->open.remote_bda, 6); in gattc_profile_b_event_handler()
366 esp_log_buffer_hex(GATTC_TAG, p_data->open.remote_bda, sizeof(esp_bd_addr_t)); in gattc_profile_b_event_handler()
427 …_gattc_register_for_notify (gattc_if, gl_profile_tab[PROFILE_B_APP_ID].remote_bda, char_elem_resul… in gattc_profile_b_event_handler()
527 memcpy(bda, p_data->srvc_chg.remote_bda, sizeof(esp_bd_addr_t)); in gattc_profile_b_event_handler()
[all …]
/hal_espressif-2.7.6/components/bt/host/bluedroid/btc/profile/esp/ble_button/
Dbutton_pro.c165 button_env_clcb_alloc(p_data->conn.conn_id, p_data->conn.remote_bda); in button_profile_cb()
223 but_clcb_t *button_env_clcb_alloc (uint16_t conn_id, BD_ADDR remote_bda) in button_env_clcb_alloc() argument
233 memcpy(p_clcb->remote_bda, remote_bda, BD_ADDR_LEN); in button_env_clcb_alloc()
248 uint16_t button_env_find_conn_id_by_bd_adddr(BD_ADDR remote_bda) in button_env_find_conn_id_by_bd_adddr() argument
254 … if (p_clcb->in_use && p_clcb->connected && memcmp(p_clcb->remote_bda, remote_bda, BD_ADDR_LEN)) { in button_env_find_conn_id_by_bd_adddr()
/hal_espressif-2.7.6/components/bt/host/bluedroid/btc/profile/esp/include/
Dwx_airsync_prf.h57 BD_ADDR remote_bda; member
67 BD_ADDR remote_bda; member
98 tAirSync_CLCB *airsync_env_clcb_alloc (UINT16 conn_id, BD_ADDR remote_bda);
/hal_espressif-2.7.6/components/bt/host/bluedroid/btc/profile/std/include/
Dbtc_gattc.h63 esp_bd_addr_t remote_bda; member
173 esp_bd_addr_t remote_bda; member
179 esp_bd_addr_t remote_bda; member
184 esp_bd_addr_t remote_bda; member
199 esp_bd_addr_t remote_bda; member
/hal_espressif-2.7.6/examples/bluetooth/bluedroid/coex/gattc_gatts_coex/main/
Dgattc_gatts_coex.c89 esp_bd_addr_t remote_bda; member
321 …memcpy(gattc_profile_tab[GATTC_PROFILE_C_APP_ID].remote_bda, p_data->connect.remote_bda, sizeof(es… in gattc_profile_event_handler()
323 …esp_log_buffer_hex(COEX_TAG, gattc_profile_tab[GATTC_PROFILE_C_APP_ID].remote_bda, sizeof(esp_bd_a… in gattc_profile_event_handler()
408 …gister_for_notify (gattc_if, gattc_profile_tab[GATTC_PROFILE_C_APP_ID].remote_bda, char_elem_resul… in gattc_profile_event_handler()
502 memcpy(bda, p_data->srvc_chg.remote_bda, sizeof(esp_bd_addr_t)); in gattc_profile_event_handler()
729 … param->connect.remote_bda[0], param->connect.remote_bda[1], param->connect.remote_bda[2], in gatts_profile_a_event_handler()
730 … param->connect.remote_bda[3], param->connect.remote_bda[4], param->connect.remote_bda[5]); in gatts_profile_a_event_handler()
870 … param->connect.remote_bda[0], param->connect.remote_bda[1], param->connect.remote_bda[2], in gatts_profile_b_event_handler()
871 … param->connect.remote_bda[3], param->connect.remote_bda[4], param->connect.remote_bda[5]); in gatts_profile_b_event_handler()

12345