HomeSort by relevance Sort by last modified time
    Searched refs:peer_bda (Results 1 - 15 of 15) sorted by null

  /system/bt/btif/src/
btif_hf_client.cc 86 RawAddress peer_bda; // Device corresponding to handle member in struct:__anon1768
176 HAL_CBACK(bt_hf_client_callbacks, audio_state_cb, &cb->peer_bda,
236 btif_hf_client_cb_arr.cb[i].peer_bda == bd_addr) {
307 cb->peer_bda = *bd_addr;
311 cb->peer_bda = *bd_addr;
317 BTA_HfClientOpen(cb->peer_bda, BTIF_HF_CLIENT_SECURITY, &cb->handle);
779 HAL_CBACK(bt_hf_client_callbacks, call_cb, &cb->peer_bda,
784 HAL_CBACK(bt_hf_client_callbacks, callsetup_cb, &cb->peer_bda,
788 HAL_CBACK(bt_hf_client_callbacks, callheld_cb, &cb->peer_bda,
793 HAL_CBACK(bt_hf_client_callbacks, network_state_cb, &cb->peer_bda,
    [all...]
btif_a2dp_source.cc 923 RawAddress peer_bda = btif_av_source_active_peer(); local
924 tBTM_STATUS status = BTM_ReadRSSI(peer_bda, btm_read_rssi_cb);
    [all...]
  /system/bt/stack/gap/
gap_ble.cc 356 bool accept_client_operation(const RawAddress& peer_bda, uint16_t uuid,
360 tGAP_CLCB* p_clcb = find_clcb_by_bd_addr(peer_bda);
362 p_clcb = clcb_alloc(peer_bda);
365 DVLOG(1) << __func__ << ": BDA: " << peer_bda
368 if (GATT_GetConnIdIfConnected(gatt_if, peer_bda, &p_clcb->conn_id,
515 bool GAP_BleReadPeerPrefConnParams(const RawAddress& peer_bda) {
516 return accept_client_operation(peer_bda, GATT_UUID_GAP_PREF_CONN_PARAM, NULL);
529 bool GAP_BleReadPeerDevName(const RawAddress& peer_bda,
531 return accept_client_operation(peer_bda, GATT_UUID_GAP_DEVICE_NAME, p_cback);
543 bool GAP_BleReadPeerAddressResolutionCap(const RawAddress& peer_bda,
    [all...]
  /system/bt/stack/gatt/
gatt_main.cc 237 ret = L2CA_RemoveFixedChnl(L2CAP_ATT_CID, p_tcb->peer_bda);
239 ret = L2CA_CancelBleConnectReq(p_tcb->peer_bda);
317 (BTM_GetHCIConnHandle(p_tcb->peer_bda, p_tcb->transport) ==
325 GATT_SetIdleTimeout(p_tcb->peer_bda, GATT_LINK_NO_IDLE_TIMEOUT,
334 GATT_SetIdleTimeout(p_tcb->peer_bda, GATT_LINK_IDLE_TIMEOUT_WHEN_NO_APP,
677 gatt_cleanup_upon_disc(p_tcb->peer_bda, result, GATT_TRANSPORT_BR_EDR);
718 p_srv_chg_clt = gatt_is_bda_in_the_srv_chg_clt_list(p_tcb->peer_bda);
722 if (btm_sec_is_a_bonded_dev(p_tcb->peer_bda))
723 gatt_add_a_bonded_dev_for_srv_chg(p_tcb->peer_bda);
775 p_srv_chg_clt = gatt_is_bda_in_the_srv_chg_clt_list(p_tcb->peer_bda);
    [all...]
gatt_auth.cc 71 p_clcb->p_tcb->peer_bda, p_data,
111 if (!BTM_BleVerifySignature(tcb.peer_bda, p_orig, cmd_len, counter, p)) {
280 BTM_GetSecurityFlagsByTransport(p_tcb->peer_bda, &sec_flag,
283 btm_ble_link_sec_check(p_tcb->peer_bda, auth_req, &sec_act);
321 btm_ble_get_enc_key_type(p_tcb->peer_bda, &key_type);
355 BTM_GetSecurityFlagsByTransport(tcb.peer_bda, &sec_flag, tcb.transport);
423 BTM_SetEncryption(p_tcb->peer_bda, p_tcb->transport,
gatt_sr.cc 363 gatt_sr_get_sec_info(tcb.peer_bda, tcb.transport, &sec_flag, &key_size);
754 l2cble_set_fixed_channel_tx_data_length(tcb.peer_bda, L2CAP_ATT_CID,
827 gatt_sr_get_sec_info(tcb.peer_bda, tcb.transport, &sec_flag, &key_size);
906 gatt_sr_get_sec_info(tcb.peer_bda, tcb.transport, &sec_flag, &key_size);
976 gatt_sr_get_sec_info(tcb.peer_bda, tcb.transport, &sec_flag, &key_size);
    [all...]
gatt_utils.cc 268 bda = gatt_cb.tcb[i].peer_bda;
354 if (gatt_cb.tcb[i].in_use && gatt_cb.tcb[i].peer_bda == bda) {
376 if (gatt_cb.tcb[i].peer_bda == bda &&
450 p_tcb->peer_bda = bda;
966 if (gatt_cb.clcb[i].in_use && gatt_cb.clcb[i].p_tcb->peer_bda == bda) num++;
    [all...]
gatt_db.cc 303 if (BTM_GetSecurityFlags(tcb.peer_bda, &flag)) {
308 tACL_CONN* p = btm_bda_to_acl(tcb.peer_bda, BT_TRANSPORT_LE);
310 btm_ble_set_encryption(tcb.peer_bda, BTM_BLE_SEC_ENCRYPT,
gatt_int.h 269 RawAddress peer_bda; member in struct:__anon2209
418 extern void gatt_send_srv_chg_ind(const RawAddress& peer_bda);
att_protocol.cc 329 l2cap_ret = L2CA_SendFixedChnlData(L2CAP_ATT_CID, tcb.peer_bda, p_toL2CAP);
gatt_api.cc 916 L2CA_SetIdleTimeoutByBdAddr(p_tcb->peer_bda,
    [all...]
gatt_cl.cc     [all...]
  /system/bt/stack/include/
gap_api.h 361 extern bool GAP_BleReadPeerPrefConnParams(const RawAddress& peer_bda);
373 extern bool GAP_BleReadPeerDevName(const RawAddress& peer_bda,
385 extern bool GAP_BleReadPeerAddressResolutionCap(const RawAddress& peer_bda,
397 extern bool GAP_BleCancelReadPeerDevName(const RawAddress& peer_bda);
srvc_api.h 165 extern bool DIS_ReadDISInfo(const RawAddress& peer_bda,
  /system/bt/stack/srvc/
srvc_dis.cc 429 bool DIS_ReadDISInfo(const RawAddress& peer_bda, tDIS_READ_CBACK* p_cback,
447 VLOG(1) << __func__ << " BDA: " << peer_bda
451 GATT_GetConnIdIfConnected(srvc_eng_cb.gatt_if, peer_bda, &conn_id,
455 srvc_eng_request_channel(peer_bda, SRVC_ID_DIS);
458 return GATT_Connect(srvc_eng_cb.gatt_if, peer_bda, true, BT_TRANSPORT_LE,

Completed in 235 milliseconds