/packages/modules/Bluetooth/system/test/mock/ |
D | mock_btif_co_bta_av_co.h | 52 std::function<void(tBTA_AV_HNDL bta_av_handle, 56 void operator()(tBTA_AV_HNDL bta_av_handle, const RawAddress& peer_address) { in operator() 57 body(bta_av_handle, peer_address); in operator() 66 std::function<void(tBTA_AV_HNDL bta_av_handle, const RawAddress& peer_address, 70 void operator()(tBTA_AV_HNDL bta_av_handle, const RawAddress& peer_address, in operator() 72 body(bta_av_handle, peer_address, delay); in operator() 82 std::function<void(tBTA_AV_HNDL bta_av_handle, const RawAddress& peer_address, 89 void operator()(tBTA_AV_HNDL bta_av_handle, const RawAddress& peer_address, in operator() 92 body(bta_av_handle, peer_address, num_seps, num_sinks, num_sources, in operator() 102 std::function<void(tBTA_AV_HNDL bta_av_handle, [all …]
|
D | mock_btif_co_bta_av_co.cc | 93 void bta_av_co_audio_close(tBTA_AV_HNDL bta_av_handle, in bta_av_co_audio_close() argument 96 test::mock::btif_co_bta_av_co::bta_av_co_audio_close(bta_av_handle, in bta_av_co_audio_close() 99 void bta_av_co_audio_delay(tBTA_AV_HNDL bta_av_handle, in bta_av_co_audio_delay() argument 102 test::mock::btif_co_bta_av_co::bta_av_co_audio_delay(bta_av_handle, in bta_av_co_audio_delay() 105 void bta_av_co_audio_disc_res(tBTA_AV_HNDL bta_av_handle, in bta_av_co_audio_disc_res() argument 111 bta_av_handle, peer_address, num_seps, num_sinks, num_sources, in bta_av_co_audio_disc_res() 114 void bta_av_co_audio_drop(tBTA_AV_HNDL bta_av_handle, in bta_av_co_audio_drop() argument 117 test::mock::btif_co_bta_av_co::bta_av_co_audio_drop(bta_av_handle, in bta_av_co_audio_drop() 120 tA2DP_STATUS bta_av_co_audio_getconfig(tBTA_AV_HNDL bta_av_handle, in bta_av_co_audio_getconfig() argument 128 bta_av_handle, peer_address, p_codec_info, p_sep_info_idx, seid, in bta_av_co_audio_getconfig() [all …]
|
/packages/modules/Bluetooth/system/bta/include/ |
D | bta_av_co.h | 68 void bta_av_co_audio_disc_res(tBTA_AV_HNDL bta_av_handle, 85 tA2DP_STATUS bta_av_co_audio_getconfig(tBTA_AV_HNDL bta_av_handle, 104 void bta_av_co_audio_setconfig(tBTA_AV_HNDL bta_av_handle, 124 void bta_av_co_audio_open(tBTA_AV_HNDL bta_av_handle, 141 void bta_av_co_audio_close(tBTA_AV_HNDL bta_av_handle, 155 void bta_av_co_audio_start(tBTA_AV_HNDL bta_av_handle, 170 void bta_av_co_audio_stop(tBTA_AV_HNDL bta_av_handle, 199 void bta_av_co_audio_drop(tBTA_AV_HNDL bta_av_handle, 214 void bta_av_co_audio_delay(tBTA_AV_HNDL bta_av_handle, 230 void bta_av_co_audio_update_mtu(tBTA_AV_HNDL bta_av_handle,
|
D | bta_av_ci.h | 60 void bta_av_ci_setconfig(tBTA_AV_HNDL bta_av_handle, uint8_t err_code,
|
/packages/modules/Bluetooth/system/btif/co/ |
D | bta_av_co.cc | 159 void BtaAvCo::ProcessDiscoveryResult(tBTA_AV_HNDL bta_av_handle, in ProcessDiscoveryResult() argument 165 peer_address, bta_av_handle, num_seps, num_sinks, num_sources); in ProcessDiscoveryResult() 169 peer_cache_->FindPeerAndUpdate(bta_av_handle, peer_address); in ProcessDiscoveryResult() 172 bta_av_handle, peer_address); in ProcessDiscoveryResult() 204 tBTA_AV_HNDL bta_av_handle, const RawAddress& peer_address, in ProcessSourceGetConfig() argument 208 bta_av_handle, A2DP_CodecName(p_codec_info), seid); in ProcessSourceGetConfig() 216 peer_cache_->FindPeerAndUpdate(bta_av_handle, peer_address); in ProcessSourceGetConfig() 219 bta_av_handle, peer_address); in ProcessSourceGetConfig() 328 log::verbose("call BTA_AvReconfig(0x{:x}) for peer {}", bta_av_handle, in ProcessSourceGetConfig() 330 BTA_AvReconfig(bta_av_handle, true, p_sink->sep_info_idx, in ProcessSourceGetConfig() [all …]
|
D | bta_av_co_peer.cc | 28 #define BTA_AV_CO_AUDIO_HANDLE_TO_INDEX(bta_av_handle) \ argument 29 (((bta_av_handle) & (~BTA_AV_CHNL_MSK)) - 1) 65 void BtaAvCoPeer::Reset(tBTA_AV_HNDL bta_av_handle) { in Reset() argument 91 bta_av_handle_ = bta_av_handle; in Reset() 182 BtaAvCoPeer* BtaAvCoPeerCache::FindPeer(tBTA_AV_HNDL bta_av_handle) { in FindPeer() argument 185 index = BTA_AV_CO_AUDIO_HANDLE_TO_INDEX(bta_av_handle); in FindPeer() 187 log::verbose("bta_av_handle = 0x{:x} index = {}", bta_av_handle, index); in FindPeer() 192 bta_av_handle); in FindPeer() 200 tBTA_AV_HNDL bta_av_handle, const RawAddress& peer_address) { in FindPeerAndUpdate() argument 201 log::verbose("peer {} bta_av_handle = 0x{:x}", peer_address, bta_av_handle); in FindPeerAndUpdate() [all …]
|
/packages/modules/Bluetooth/system/btif/include/ |
D | bta_av_co.h | 126 void ProcessDiscoveryResult(tBTA_AV_HNDL bta_av_handle, 152 tA2DP_STATUS ProcessSourceGetConfig(tBTA_AV_HNDL bta_av_handle, 180 tA2DP_STATUS ProcessSinkGetConfig(tBTA_AV_HNDL bta_av_handle, 201 void ProcessSetConfig(tBTA_AV_HNDL bta_av_handle, 214 void ProcessOpen(tBTA_AV_HNDL bta_av_handle, const RawAddress& peer_address, 223 void ProcessClose(tBTA_AV_HNDL bta_av_handle, const RawAddress& peer_address); 234 void ProcessStart(tBTA_AV_HNDL bta_av_handle, const RawAddress& peer_address, 243 void ProcessStop(tBTA_AV_HNDL bta_av_handle, const RawAddress& peer_address); 263 void DataPacketWasDropped(tBTA_AV_HNDL bta_av_handle, 274 void ProcessAudioDelay(tBTA_AV_HNDL bta_av_handle, [all …]
|
D | bta_av_co_peer.h | 70 void Reset(tBTA_AV_HNDL bta_av_handle); 176 BtaAvCoPeer* FindPeer(tBTA_AV_HNDL bta_av_handle); 186 BtaAvCoPeer* FindPeerAndUpdate(tBTA_AV_HNDL bta_av_handle, 195 uint16_t FindPeerUuid(tBTA_AV_HNDL bta_av_handle);
|
/packages/modules/Bluetooth/system/bta/av/ |
D | bta_av_ci.cc | 70 void bta_av_ci_setconfig(tBTA_AV_HNDL bta_av_handle, uint8_t err_code, in bta_av_ci_setconfig() argument 76 bta_av_handle, err_code, category, num_seid, recfg_needed, avdt_handle); in bta_av_ci_setconfig() 81 p_buf->hdr.layer_specific = bta_av_handle; in bta_av_ci_setconfig()
|
D | bta_av_int.h | 175 typedef void (*tBTA_AV_CO_DISC_RES)(tBTA_AV_HNDL bta_av_handle, 179 typedef tA2DP_STATUS (*tBTA_AV_CO_GETCFG)(tBTA_AV_HNDL bta_av_handle, 185 typedef void (*tBTA_AV_CO_SETCFG)(tBTA_AV_HNDL bta_av_handle, 191 typedef void (*tBTA_AV_CO_OPEN)(tBTA_AV_HNDL bta_av_handle, 193 typedef void (*tBTA_AV_CO_CLOSE)(tBTA_AV_HNDL bta_av_handle, 195 typedef void (*tBTA_AV_CO_START)(tBTA_AV_HNDL bta_av_handle, 199 typedef void (*tBTA_AV_CO_STOP)(tBTA_AV_HNDL bta_av_handle, 203 typedef void (*tBTA_AV_CO_DELAY)(tBTA_AV_HNDL bta_av_handle, 205 typedef void (*tBTA_AV_CO_UPDATE_MTU)(tBTA_AV_HNDL bta_av_handle,
|
/packages/modules/Bluetooth/system/hci/include/ |
D | bt_vendor_lib.h | 324 uint8_t bta_av_handle); 365 uint8_t bta_av_handle; /* BTA_AV Handle for callbacks */ member
|