/hal_espressif-latest/components/bt/host/bluedroid/api/include/api/ |
D | esp_gattc_api.h | 87 uint16_t conn_id; /*!< Connection ID */ member 97 uint16_t conn_id; /*!< Connection ID */ member 107 uint16_t conn_id; /*!< Connection ID */ member 116 uint16_t conn_id; /*!< Connection ID */ member 124 uint16_t conn_id; /*!< Connection ID */ member 138 uint16_t conn_id; /*!< Connection ID */ member 150 uint16_t conn_id; /*!< Connection ID */ member 160 uint16_t conn_id; /*!< Connection ID */ member 167 uint16_t conn_id; /*!< Connection ID */ member 186 uint16_t conn_id; /*!< Connection ID */ member [all …]
|
D | esp_gatts_api.h | 64 uint16_t conn_id; /*!< Connection ID */ member 78 uint16_t conn_id; /*!< Connection ID */ member 93 uint16_t conn_id; /*!< Connection ID */ member 105 uint16_t conn_id; /*!< Connection ID */ member 114 uint16_t conn_id; /*!< Connection ID */ member 186 uint16_t conn_id; /*!< Connection ID */ member 198 uint16_t conn_id; /*!< Connection ID */ member 222 uint16_t conn_id; /*!< Connection ID */ member 229 uint16_t conn_id; /*!< Connection ID */ member 238 uint16_t conn_id; /*!< Connection ID */ member [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/include/ |
D | btc_gattc.h | 68 uint16_t conn_id; member 72 uint16_t conn_id; member 76 uint16_t conn_id; member 82 uint16_t conn_id; member 87 uint16_t conn_id; member 92 uint16_t conn_id; member 97 uint16_t conn_id; member 102 uint16_t conn_id; member 108 uint16_t conn_id; member 115 uint16_t conn_id; member [all …]
|
D | btc_gatt_util.h | 17 #define BTC_GATT_CREATE_CONN_ID(gatt_if, conn_id) ((uint16_t) ((((uint8_t)(conn_id)) << 8) | ((uin… argument 18 #define BTC_GATT_GET_CONN_ID(conn_id) (((uint16_t)(conn_id)) >> 8) argument 19 #define BTC_GATT_GET_GATT_IF(conn_id) ((uint8_t)(conn_id)) argument
|
D | dis_api.h | 142 typedef void (tBA_CBACK)(UINT32 trans_id, UINT16 conn_id, UINT8 app_id, UINT8 event, tBA_WRITE_DATA… 240 UINT32 trans_id, UINT16 conn_id); 307 extern void Battery_Rsp (UINT32 trans_id, UINT16 conn_id, UINT8 app_id, 316 extern void Battery_Notify (UINT16 conn_id, UINT8 app_id, BD_ADDR remote_bda, UINT8 battery_level); 323 extern void bas_s_read_attr_value(tGATTS_DATA *p_data, UINT32 trans_id, UINT16 conn_id); 330 UINT16 conn_id, BD_ADDR bd_addr);
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/gatt/ |
D | gatt_attr.c | 57 static void gatt_request_cback(UINT16 conn_id, UINT32 trans_id, UINT8 op_code, tGATTS_DATA *p_data); 58 static void gatt_connect_cback(tGATT_IF gatt_if, BD_ADDR bda, UINT16 conn_id, BOOLEAN connected, 60 static void gatt_disc_res_cback(UINT16 conn_id, tGATT_DISC_TYPE disc_type, tGATT_DISC_RES *p_data); 61 static void gatt_disc_cmpl_cback(UINT16 conn_id, tGATT_DISC_TYPE disc_type, tGATT_STATUS status); 62 static void gatt_cl_op_cmpl_cback(UINT16 conn_id, tGATTC_OPTYPE op, tGATT_STATUS status, 90 UINT16 conn_id = GATT_INVALID_CONN_ID; in gatt_profile_find_conn_id_by_bd_addr() local 91 GATT_GetConnIdIfConnected (gatt_cb.gatt_if, remote_bda, &conn_id, BT_TRANSPORT_LE); in gatt_profile_find_conn_id_by_bd_addr() 92 return conn_id; in gatt_profile_find_conn_id_by_bd_addr() 104 static tGATT_PROFILE_CLCB *gatt_profile_find_clcb_by_conn_id(UINT16 conn_id) in gatt_profile_find_clcb_by_conn_id() argument 110 if (p_clcb->in_use && p_clcb->conn_id == conn_id) { in gatt_profile_find_clcb_by_conn_id() [all …]
|
D | gatt_api.c | 593 tGATT_STATUS GATTS_HandleValueIndication (UINT16 conn_id, UINT16 attr_handle, UINT16 val_len, UINT… in GATTS_HandleValueIndication() argument 599 tGATT_IF gatt_if = GATT_GET_GATT_IF(conn_id); in GATTS_HandleValueIndication() 600 UINT8 tcb_idx = GATT_GET_TCB_IDX(conn_id); in GATTS_HandleValueIndication() 607 GATT_TRACE_ERROR ("GATTS_HandleValueIndication Unknown conn_id: %u ", conn_id); in GATTS_HandleValueIndication() 620 indication.conn_id = conn_id; in GATTS_HandleValueIndication() 665 tGATT_STATUS GATTS_HandleValueNotification (UINT16 conn_id, UINT16 attr_handle, in GATTS_HandleValueNotification() argument 671 tGATT_IF gatt_if = GATT_GET_GATT_IF(conn_id); in GATTS_HandleValueNotification() 672 UINT8 tcb_idx = GATT_GET_TCB_IDX(conn_id); in GATTS_HandleValueNotification() 679 GATT_TRACE_ERROR ("GATTS_HandleValueNotification Unknown conn_id: %u \n", conn_id); in GATTS_HandleValueNotification() 718 tGATT_STATUS GATTS_SendRsp (UINT16 conn_id, UINT32 trans_id, in GATTS_SendRsp() argument [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/ |
D | bta_gattc_api.c | 224 void BTA_GATTC_Close(UINT16 conn_id) in BTA_GATTC_Close() argument 231 p_buf->layer_specific = conn_id; in BTA_GATTC_Close() 251 void BTA_GATTC_ConfigureMTU (UINT16 conn_id) in BTA_GATTC_ConfigureMTU() argument 257 p_buf->hdr.layer_specific = conn_id; in BTA_GATTC_ConfigureMTU() 279 void BTA_GATTC_ServiceSearchRequest (UINT16 conn_id, tBT_UUID *p_srvc_uuid) in BTA_GATTC_ServiceSearchRequest() argument 288 p_buf->hdr.layer_specific = conn_id; in BTA_GATTC_ServiceSearchRequest() 314 const list_t* BTA_GATTC_GetServices(UINT16 conn_id) in BTA_GATTC_GetServices() argument 316 return bta_gattc_get_services(conn_id); in BTA_GATTC_GetServices() 331 const tBTA_GATTC_CHARACTERISTIC* BTA_GATTC_GetCharacteristic(UINT16 conn_id, UINT16 handle) in BTA_GATTC_GetCharacteristic() argument 333 return bta_gattc_get_characteristic(conn_id, handle); in BTA_GATTC_GetCharacteristic() [all …]
|
D | bta_gattc_ci.c | 53 UINT16 conn_id) in bta_gattc_ci_cache_open() argument 60 p_evt->hdr.layer_specific = conn_id; in bta_gattc_ci_cache_open() 85 UINT16 conn_id) in bta_gattc_ci_cache_load() argument 94 p_evt->hdr.layer_specific = conn_id; in bta_gattc_ci_cache_load() 124 UINT16 conn_id) in bta_gattc_ci_cache_save() argument 131 p_evt->hdr.layer_specific = conn_id; in bta_gattc_ci_cache_save()
|
D | bta_gattc_cache.c | 46 static void bta_gattc_char_dscpt_disc_cmpl(UINT16 conn_id, tBTA_GATTC_SERV *p_srvc_cb); 65 static tBTA_GATT_STATUS bta_gattc_sdp_service_disc(UINT16 conn_id, tBTA_GATTC_SERV *p_server_cb); 454 tBTA_GATT_STATUS bta_gattc_discover_pri_service(UINT16 conn_id, tBTA_GATTC_SERV *p_server_cb, in bta_gattc_discover_pri_service() argument 457 tBTA_GATTC_CLCB *p_clcb = bta_gattc_find_clcb_by_conn_id(conn_id); in bta_gattc_discover_pri_service() 462 status = bta_gattc_discover_procedure(conn_id, p_server_cb, disc_type); in bta_gattc_discover_pri_service() 465 status = bta_gattc_sdp_service_disc(conn_id, p_server_cb); in bta_gattc_discover_pri_service() 481 tBTA_GATT_STATUS bta_gattc_discover_procedure(UINT16 conn_id, tBTA_GATTC_SERV *p_server_cb, in bta_gattc_discover_procedure() argument 503 return GATTC_Discover (conn_id, disc_type, ¶m); in bta_gattc_discover_procedure() 515 tBTA_GATT_STATUS bta_gattc_start_disc_include_srvc(UINT16 conn_id, tBTA_GATTC_SERV *p_srvc_cb) in bta_gattc_start_disc_include_srvc() argument 517 return bta_gattc_discover_procedure(conn_id, p_srvc_cb, GATT_DISC_INC_SRVC); in bta_gattc_start_disc_include_srvc() [all …]
|
D | bta_gattc_act.c | 56 static void bta_gattc_conn_cback(tGATT_IF gattc_if, BD_ADDR bda, UINT16 conn_id, 60 static void bta_gattc_cmpl_cback(UINT16 conn_id, tGATTC_OPTYPE op, tGATT_STATUS status, 62 static void bta_gattc_cmpl_sendmsg(UINT16 conn_id, tGATTC_OPTYPE op, 69 static void bta_gattc_cong_cback (UINT16 conn_id, BOOLEAN congested); 70 static void bta_gattc_req_cback (UINT16 conn_id, UINT32 trans_id, tGATTS_REQ_TYPE type, tGATTS_DATA… 71 static tBTA_GATTC_FIND_SERVICE_CB bta_gattc_register_service_change_notify(UINT16 conn_id, BD_ADDR … 580 UINT16 conn_id; in bta_gattc_init_bk_conn() local 602 &conn_id, in bta_gattc_init_bk_conn() 606 gattc_data.hdr.layer_specific = p_clcb->bta_conn_id = conn_id; in bta_gattc_init_bk_conn() 831 cb_data.close.conn_id = p_data->hdr.layer_specific; in bta_gattc_close_fail() [all …]
|
D | bta_gattc_utils.c | 193 tBTA_GATTC_CLCB *bta_gattc_find_clcb_by_conn_id (UINT16 conn_id) in bta_gattc_find_clcb_by_conn_id() argument 200 p_clcb->bta_conn_id == conn_id) { in bta_gattc_find_clcb_by_conn_id() 326 void bta_gattc_clcb_dealloc_by_conn_id(UINT16 conn_id) in bta_gattc_clcb_dealloc_by_conn_id() argument 328 tBTA_GATTC_CLCB *p_clcb = bta_gattc_find_clcb_by_conn_id(conn_id); in bta_gattc_clcb_dealloc_by_conn_id() 392 tBTA_GATTC_SERV *bta_gattc_find_scb_by_cid (UINT16 conn_id) in bta_gattc_find_scb_by_cid() argument 394 tBTA_GATTC_CLCB *p_clcb = bta_gattc_find_clcb_by_conn_id(conn_id); in bta_gattc_find_scb_by_cid() 493 cb_data.write.conn_id = p_clcb->bta_conn_id; in bta_gattc_enqueue() 509 cb_data.queue_full.conn_id = p_clcb->bta_conn_id; in bta_gattc_enqueue() 586 void bta_gattc_clear_notif_registration(tBTA_GATTC_SERV *p_srcb, UINT16 conn_id, in bta_gattc_clear_notif_registration() argument 596 if (GATT_GetConnectionInfor(conn_id, &gatt_if, remote_bda, &transport)) { in bta_gattc_clear_notif_registration() [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/include/bta/ |
D | bta_gatt_api.h | 304 UINT16 conn_id; member 311 UINT16 conn_id; member 318 UINT16 conn_id; member 323 UINT16 conn_id; member 329 UINT16 conn_id; member 334 UINT16 conn_id; member 342 UINT16 conn_id; member 349 UINT16 conn_id; member 358 UINT16 conn_id; member 365 UINT16 conn_id; member [all …]
|
D | bta_gattc_ci.h | 73 tBTA_GATT_STATUS status, UINT16 conn_id); 93 tBTA_GATT_STATUS status, UINT16 conn_id); 110 tBTA_GATT_STATUS status, UINT16 conn_id);
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/gatt/ |
D | btc_gattc.c | 226 BTA_GATTC_Close(arg->close.conn_id); in btc_gattc_close() 231 BTA_GATTC_ConfigureMTU (arg->cfg_mtu.conn_id); in btc_gattc_cfg_mtu() 309 BTA_GATTC_ServiceSearchRequest(arg->search_srvc.conn_id, &srvc_uuid); in btc_gattc_search_service() 311 BTA_GATTC_ServiceSearchRequest(arg->search_srvc.conn_id, NULL); in btc_gattc_search_service() 315 esp_gatt_status_t btc_ble_gattc_get_service(uint16_t conn_id, esp_bt_uuid_t *svc_uuid, in btc_ble_gattc_get_service() argument 328 BTA_GATTC_GetServiceWithUUID(conn_id, bta_uuid, &db, &svc_num); in btc_ble_gattc_get_service() 354 esp_gatt_status_t btc_ble_gattc_get_all_char(uint16_t conn_id, in btc_ble_gattc_get_all_char() argument 363 BTA_GATTC_GetAllChar(conn_id, start_handle, end_handle, &db, &char_num); in btc_ble_gattc_get_all_char() 383 esp_gatt_status_t btc_ble_gattc_get_all_descr(uint16_t conn_id, in btc_ble_gattc_get_all_descr() argument 391 BTA_GATTC_GetAllDescriptor(conn_id, char_handle, &db, &descr_num); in btc_ble_gattc_get_all_descr() [all …]
|
D | btc_gatts.c | 678 BTA_GATTS_HandleValueIndication(arg->send_ind.conn_id, arg->send_ind.attr_handle, in btc_gatts_call_handler() 688 BTA_GATTS_SendRsp(arg->send_rsp.conn_id, arg->send_rsp.trans_id, in btc_gatts_call_handler() 692 BTA_GATTS_SendRsp(arg->send_rsp.conn_id, arg->send_rsp.trans_id, in btc_gatts_call_handler() 697 param.rsp.conn_id = BTC_GATT_GET_CONN_ID(arg->send_rsp.conn_id); in btc_gatts_call_handler() 698 … btc_gatts_cb_to_app(ESP_GATTS_RESPONSE_EVT, BTC_GATT_GET_GATT_IF(arg->send_rsp.conn_id), ¶m); in btc_gatts_call_handler() 741 if (arg->close.conn_id != 0) { in btc_gatts_call_handler() 742 BTA_GATTS_Close(arg->close.conn_id); in btc_gatts_call_handler() 782 gatts_if = BTC_GATT_GET_GATT_IF(p_data->req_data.conn_id); in btc_gatts_cb_handler() 783 param.read.conn_id = BTC_GATT_GET_CONN_ID(p_data->req_data.conn_id); in btc_gatts_cb_handler() 795 gatts_if = BTC_GATT_GET_GATT_IF(p_data->req_data.conn_id); in btc_gatts_cb_handler() [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/battery/ |
D | battery_prf.c | 74 p_data->conn.reason, p_data->conn.conn_id); in bas_gatts_callback() 163 UINT16 conn_id = p_data->req_data.conn_id; in bas_gatts_callback() local 167 event, handle, trans_id, conn_id); in bas_gatts_callback() 172 p_value.conn_id = conn_id; in bas_gatts_callback() 174 dis_s_read_attr_value(p_data->req_data.p_data, &p_value, trans_id, conn_id); in bas_gatts_callback() 176 bas_s_read_attr_value(p_data->req_data.p_data, trans_id, conn_id); in bas_gatts_callback() 184 UINT16 conn_id = p_data->req_data.conn_id; in bas_gatts_callback() local 187 event, handle, trans_id, conn_id); in bas_gatts_callback() 188 bas_s_write_attr_value(p_data->req_data.p_data, trans_id, conn_id, in bas_gatts_callback() 195 UINT16 conn_id = p_data->req_data.conn_id; in bas_gatts_callback() local [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/api/ |
D | esp_gattc_api.c | 201 esp_err_t esp_ble_gattc_close (esp_gatt_if_t gattc_if, uint16_t conn_id) in esp_ble_gattc_close() argument 211 arg.close.conn_id = BTC_GATT_CREATE_CONN_ID(gattc_if, conn_id); in esp_ble_gattc_close() 216 esp_err_t esp_ble_gattc_send_mtu_req (esp_gatt_if_t gattc_if, uint16_t conn_id) in esp_ble_gattc_send_mtu_req() argument 226 arg.cfg_mtu.conn_id = BTC_GATT_CREATE_CONN_ID(gattc_if, conn_id); in esp_ble_gattc_send_mtu_req() 231 esp_err_t esp_ble_gattc_search_service(esp_gatt_if_t gattc_if, uint16_t conn_id, esp_bt_uuid_t *fil… in esp_ble_gattc_search_service() argument 241 arg.search_srvc.conn_id = BTC_GATT_CREATE_CONN_ID(gattc_if, conn_id); in esp_ble_gattc_search_service() 253 esp_gatt_status_t esp_ble_gattc_get_service(esp_gatt_if_t gattc_if, uint16_t conn_id, esp_bt_uuid_t… in esp_ble_gattc_get_service() argument 262 uint16_t conn_hdl = BTC_GATT_CREATE_CONN_ID(gattc_if, conn_id); in esp_ble_gattc_get_service() 268 uint16_t conn_id, in esp_ble_gattc_get_all_char() argument 285 uint16_t conn_hdl = BTC_GATT_CREATE_CONN_ID(gattc_if, conn_id); in esp_ble_gattc_get_all_char() [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/esp/ble_button/ |
D | button_pro.c | 85 esp_ble_gatts_send_rsp(p_data->req_data.conn_id, p_data->req_data.trans_id, in button_profile_cb() 89 esp_ble_gatts_send_rsp(p_data->req_data.conn_id, p_data->req_data.trans_id, in button_profile_cb() 157 button_env_clcb_alloc(p_data->conn.conn_id, p_data->conn.remote_bda); in button_profile_cb() 168 if (button_cb_env.clcb.connected && (button_cb_env.clcb.conn_id == p_data->conn.conn_id)) { in button_profile_cb() 215 but_clcb_t *button_env_clcb_alloc (uint16_t conn_id, BD_ADDR remote_bda) in button_env_clcb_alloc() argument 222 p_clcb->conn_id = conn_id; in button_env_clcb_alloc() 223 BTC_TRACE_ERROR("p_clcb->conn_id = %x\n", conn_id); in button_env_clcb_alloc() 247 return p_clcb->conn_id; in button_env_find_conn_id_by_bd_adddr() 264 BOOLEAN button_env_clcb_dealloc(uint16_t conn_id) in button_env_clcb_dealloc() argument 270 if (p_clcb->in_use && p_clcb->connected && (p_clcb->conn_id == conn_id)) { in button_env_clcb_dealloc() [all …]
|
/hal_espressif-latest/components/bt/common/btc/profile/esp/blufi/bluedroid_host/ |
D | esp_blufi.c | 39 static uint16_t conn_id; variable 156 BTA_GATTS_SendRsp(p_data->req_data.conn_id, p_data->req_data.trans_id, in blufi_profile_cb() 197 BTA_GATTS_SendRsp(p_data->req_data.conn_id, p_data->req_data.trans_id, in blufi_profile_cb() 217 BTA_GATTS_SendRsp(p_data->req_data.conn_id, p_data->req_data.trans_id, in blufi_profile_cb() 230 BTA_GATTS_SendRsp(p_data->req_data.conn_id, p_data->req_data.trans_id, in blufi_profile_cb() 307 p_data->conn.reason, p_data->conn.conn_id); in blufi_profile_cb() 310 blufi_env.conn_id = p_data->conn.conn_id; in blufi_profile_cb() 318 param.connect.conn_id = BTC_GATT_GET_CONN_ID(p_data->conn.conn_id); in blufi_profile_cb() 319 conn_id = param.connect.conn_id; in blufi_profile_cb() 332 p_data->conn.reason, p_data->conn.conn_id); in blufi_profile_cb() [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/esp/wechat_AirSync/ |
D | wx_airsync_prf.c | 73 esp_ble_gatts_send_rsp(p_data->req_data.conn_id, p_data->req_data.trans_id, in airsync_profile_cb() 79 esp_ble_gatts_send_rsp(p_data->req_data.conn_id, p_data->req_data.trans_id, in airsync_profile_cb() 135 airsync_env_clcb_alloc(p_data->conn.conn_id, p_data->conn.remote_bda); in airsync_profile_cb() 144 … if (airsync_cb_env.clcb.connected && (airsync_cb_env.clcb.conn_id == p_data->conn.conn_id)) { in airsync_profile_cb() 190 tAirSync_CLCB *airsync_env_clcb_alloc (UINT16 conn_id, BD_ADDR remote_bda) in airsync_env_clcb_alloc() argument 197 p_clcb->conn_id = conn_id; in airsync_env_clcb_alloc() 198 BTC_TRACE_ERROR("p_clcb->conn_id = %x\n", conn_id); in airsync_env_clcb_alloc() 222 return p_clcb->conn_id; in airsync_env_find_conn_id_by_bd_adddr()
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/include/stack/ |
D | gatt_api.h | 328 UINT16 conn_id; member 571 typedef void (tGATT_DISC_RES_CB) (UINT16 conn_id, tGATT_DISC_TYPE disc_type, 575 typedef void (tGATT_DISC_CMPL_CB) (UINT16 conn_id, tGATT_DISC_TYPE disc_type, tGATT_STATUS status); 578 typedef void (tGATT_CMPL_CBACK) (UINT16 conn_id, tGATTC_OPTYPE op, tGATT_STATUS status, 582 typedef void (tGATT_CONN_CBACK) (tGATT_IF gatt_if, BD_ADDR bda, UINT16 conn_id, BOOLEAN connected, 586 typedef void (tGATT_REQ_CBACK )(UINT16 conn_id, UINT32 trans_id, tGATTS_REQ_TYPE type, 590 typedef void (tGATT_CONGESTION_CBACK )(UINT16 conn_id, BOOLEAN congested); 875 extern tGATT_STATUS GATTS_HandleValueIndication (UINT16 conn_id, 893 extern tGATT_STATUS GATTS_HandleValueNotification (UINT16 conn_id, UINT16 attr_handle, 911 extern tGATT_STATUS GATTS_SendRsp (UINT16 conn_id, UINT32 trans_id, [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/include/ |
D | bta_gattc_int.h | 500 … BD_ADDR remote_bda, UINT16 conn_id, tBTA_TRANSPORT transport, UINT16 mtu); 501 …ern void bta_gattc_send_connect_cback( tBTA_GATTC_RCB *p_clreg, BD_ADDR remote_bda, UINT16 conn_id, 504 BD_ADDR remote_bda, UINT16 conn_id); 516 extern tBTA_GATTC_CLCB *bta_gattc_find_clcb_by_conn_id (UINT16 conn_id); 523 extern tBTA_GATTC_SERV *bta_gattc_find_scb_by_cid (UINT16 conn_id); 534 extern void bta_gattc_clear_notif_registration(tBTA_GATTC_SERV *p_srcb, UINT16 conn_id, UINT16 star… 539 extern void bta_gattc_disc_res_cback (UINT16 conn_id, tGATT_DISC_TYPE disc_type, tGATT_DISC_RES *p_… 540 extern void bta_gattc_disc_cmpl_cback (UINT16 conn_id, tGATT_DISC_TYPE disc_type, tGATT_STATUS stat… 541 extern tBTA_GATT_STATUS bta_gattc_discover_procedure(UINT16 conn_id, tBTA_GATTC_SERV *p_server_cb, … 542 extern tBTA_GATT_STATUS bta_gattc_discover_pri_service(UINT16 conn_id, tBTA_GATTC_SERV *p_server_cb… [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/gap/ |
D | gap_ble.c | 45 static void gap_ble_s_attr_request_cback (UINT16 conn_id, UINT32 trans_id, tGATTS_REQ_TYPE op_code,… 48 static void gap_ble_c_connect_cback (tGATT_IF gatt_if, BD_ADDR bda, UINT16 conn_id, BOOLEAN connec… 50 static void gap_ble_c_cmpl_cback (UINT16 conn_id, tGATTC_OPTYPE op, tGATT_STATUS status, tGATT_CL_… 96 tGAP_CLCB *gap_ble_find_clcb_by_conn_id(UINT16 conn_id) in gap_ble_find_clcb_by_conn_id() argument 102 if (p_clcb->in_use && p_clcb->connected && p_clcb->conn_id == conn_id) { in gap_ble_find_clcb_by_conn_id() 340 void gap_ble_s_attr_request_cback (UINT16 conn_id, UINT32 trans_id, in gap_ble_s_attr_request_cback() argument 380 GATTS_SendRsp (conn_id, trans_id, status, &rsp_msg); in gap_ble_s_attr_request_cback() 552 if (GATTC_Read(p_clcb->conn_id, GATT_READ_BY_TYPE, ¶m) == GATT_SUCCESS) { in gap_ble_send_cl_read_request() 589 GATT_Disconnect(p_clcb->conn_id); in gap_ble_cl_op_cmpl() 604 static void gap_ble_c_connect_cback (tGATT_IF gatt_if, BD_ADDR bda, UINT16 conn_id, in gap_ble_c_connect_cback() argument [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/esp/include/ |
D | wx_airsync_prf.h | 57 UINT16 conn_id; member 90 tAirSync_CLCB *airsync_env_clcb_alloc (UINT16 conn_id, BD_ADDR remote_bda); 94 BOOLEAN AirSync_env_clcb_dealloc(UINT16 conn_id);
|