Home
last modified time | relevance | path

Searched refs:stack_iface_ (Results 1 – 14 of 14) sorted by relevance

/hardware/interfaces/bluetooth/audio/2.0/default/
DBluetoothAudioProvider.cpp67 stack_iface_ = hostIf; in startSession()
68 stack_iface_->linkToDeath(death_recipient_, 0); in startSession()
86 if (stack_iface_) { in streamStarted()
106 if (stack_iface_) { in streamSuspended()
120 if (stack_iface_) { in endSession()
122 stack_iface_->unlinkToDeath(death_recipient_); in endSession()
132 stack_iface_ = nullptr; in endSession()
DA2dpOffloadAudioProvider.cpp78 BluetoothAudioSessionReport::OnSessionStarted(session_type_, stack_iface_, in onSessionReady()
DBluetoothAudioProvider.h56 sp<IBluetoothAudioPort> stack_iface_; variable
DA2dpSoftwareAudioProvider.cpp98 session_type_, stack_iface_, mDataMQ->getDesc(), audio_config_); in onSessionReady()
DHearingAidAudioProvider.cpp93 session_type_, stack_iface_, mDataMQ->getDesc(), audio_config_); in onSessionReady()
/hardware/interfaces/bluetooth/audio/2.1/default/
DBluetoothAudioProvider.cpp88 stack_iface_ = hostIf; in startSession_2_1()
89 stack_iface_->linkToDeath(death_recipient_, 0); in startSession_2_1()
107 if (stack_iface_) { in streamStarted()
127 if (stack_iface_) { in streamSuspended()
141 if (stack_iface_) { in endSession()
143 stack_iface_->unlinkToDeath(death_recipient_); in endSession()
153 stack_iface_ = nullptr; in endSession()
DA2dpOffloadAudioProvider.cpp84 BluetoothAudioSessionReport_2_1::OnSessionStarted(session_type_, stack_iface_, in onSessionReady()
DBluetoothAudioProvider.h59 sp<V2_0::IBluetoothAudioPort> stack_iface_; variable
DHearingAidAudioProvider.cpp99 session_type_, stack_iface_, mDataMQ->getDesc(), audio_config_); in onSessionReady()
DA2dpSoftwareAudioProvider.cpp104 session_type_, stack_iface_, mDataMQ->getDesc(), audio_config_); in onSessionReady()
DLeAudioAudioProvider.cpp183 session_type_, stack_iface_, mDataMQ->getDesc(), audio_config_); in onSessionReady()
/hardware/interfaces/bluetooth/audio/utils/session/
DBluetoothAudioSession.cpp57 : session_type_(session_type), stack_iface_(nullptr), mDataMQ(nullptr) { in BluetoothAudioSession()
84 stack_iface_ = stack_iface; in OnSessionStarted()
101 stack_iface_ = nullptr; in OnSessionEnded()
156 return stack_iface_ != nullptr && dataMQ_valid; in IsSessionReady()
260 auto hal_retval = stack_iface_->startStream(); in StartStream()
276 auto hal_retval = stack_iface_->suspendStream(); in SuspendStream()
290 auto hal_retval = stack_iface_->stopStream(); in StopStream()
307 auto hal_retval = stack_iface_->getPresentationPosition( in GetPresentationPosition()
367 auto hal_retval = stack_iface_->updateMetadata(sourceMetadata); in UpdateTracksMetadata()
DBluetoothAudioSession.h90 sp<IBluetoothAudioPort> stack_iface_; variable
DBluetoothAudioSession_2_1.cpp175 audio_session->stack_iface_ = stack_iface; in OnSessionStarted()