Home
last modified time | relevance | path

Searched refs:DataMQ (Results 1 – 15 of 15) sorted by relevance

/hardware/interfaces/bluetooth/audio/2.0/default/
DA2dpOffloadAudioProvider.cpp39 using DataMQ = MessageQueue<uint8_t, kSynchronizedReadWrite>; typedef
64 DataMQ::Descriptor()); in startSession()
69 DataMQ::Descriptor()); in startSession()
80 _hidl_cb(BluetoothAudioStatus::SUCCESS, DataMQ::Descriptor()); in onSessionReady()
DHearingAidAudioProvider.cpp47 std::unique_ptr<DataMQ> tempDataMQ( in HearingAidAudioProvider()
48 new DataMQ(kDataMqSize, /* EventFlag */ true)); in HearingAidAudioProvider()
76 DataMQ::Descriptor()); in startSession()
83 DataMQ::Descriptor()); in startSession()
96 _hidl_cb(BluetoothAudioStatus::FAILURE, DataMQ::Descriptor()); in onSessionReady()
DA2dpSoftwareAudioProvider.cpp47 std::unique_ptr<DataMQ> tempDataMQ( in A2dpSoftwareAudioProvider()
48 new DataMQ(kDataMqSize, /* EventFlag */ true)); in A2dpSoftwareAudioProvider()
76 DataMQ::Descriptor()); in startSession()
83 DataMQ::Descriptor()); in startSession()
97 _hidl_cb(BluetoothAudioStatus::FAILURE, DataMQ::Descriptor()); in onSessionReady()
DHearingAidAudioProvider.h34 using DataMQ = MessageQueue<uint8_t, kSynchronizedReadWrite>; variable
48 std::unique_ptr<DataMQ> mDataMQ;
DA2dpSoftwareAudioProvider.h34 using DataMQ = MessageQueue<uint8_t, kSynchronizedReadWrite>; variable
48 std::unique_ptr<DataMQ> mDataMQ;
DBluetoothAudioProvider.cpp37 using DataMQ = MessageQueue<uint8_t, kSynchronizedReadWrite>; typedef
56 _hidl_cb(BluetoothAudioStatus::FAILURE, DataMQ::Descriptor()); in startSession()
/hardware/interfaces/bluetooth/audio/2.0/default/session/
DBluetoothAudioSession.h46 using DataMQ = MessageQueue<uint8_t, kSynchronizedReadWrite>; variable
90 std::unique_ptr<DataMQ> mDataMQ;
101 bool UpdateDataPath(const DataMQ::Descriptor* dataMQ);
117 const DataMQ::Descriptor* dataMQ,
DBluetoothAudioSessionReport.h31 const DataMQ::Descriptor* dataMQ, in OnSessionStarted()
DBluetoothAudioSession.cpp63 const sp<IBluetoothAudioPort> stack_iface, const DataMQ::Descriptor* dataMQ, in OnSessionStarted()
154 bool BluetoothAudioSession::UpdateDataPath(const DataMQ::Descriptor* dataMQ) { in UpdateDataPath()
160 std::unique_ptr<DataMQ> tempDataMQ; in UpdateDataPath()
161 tempDataMQ.reset(new DataMQ(*dataMQ)); in UpdateDataPath()
/hardware/interfaces/bluetooth/audio/2.0/vts/functional/
DVtsHalBluetoothAudioV2_0TargetTest.cpp66 using DataMQ = MessageQueue<uint8_t, kSynchronizedReadWrite>; typedef
334 std::unique_ptr<DataMQ> tempDataMQ; in TEST_P()
337 const DataMQ::Descriptor& dataMQ) { in TEST_P()
341 tempDataMQ.reset(new DataMQ(dataMQ)); in TEST_P()
621 const DataMQ::Descriptor& dataMQ) { in TEST_P()
656 const DataMQ::Descriptor& dataMQ) { in TEST_P()
691 const DataMQ::Descriptor& dataMQ) { in TEST_P()
729 const DataMQ::Descriptor& dataMQ) { in TEST_P()
790 const DataMQ::Descriptor& dataMQ) { in TEST_P()
851 std::unique_ptr<DataMQ> tempDataMQ; in TEST_P()
[all …]
/hardware/interfaces/audio/core/all-versions/default/
DStreamIn.cpp45 StreamIn::DataMQ* dataMQ, StreamIn::StatusMQ* statusMQ, EventFlag* efGroup) in ReadThread()
64 StreamIn::DataMQ* mDataMQ;
347 _hidl_cb(result, CommandMQ::Descriptor(), DataMQ::Descriptor(), StatusMQ::Descriptor(), in prepareForReading()
372 std::unique_ptr<DataMQ> tempDataMQ(new DataMQ(frameSize * framesCount, true /* EventFlag */)); in prepareForReading()
DStreamOut.cpp45 StreamOut::CommandMQ* commandMQ, StreamOut::DataMQ* dataMQ, in WriteThread()
65 StreamOut::DataMQ* mDataMQ;
334 _hidl_cb(result, CommandMQ::Descriptor(), DataMQ::Descriptor(), StatusMQ::Descriptor(), in prepareForWriting()
358 std::unique_ptr<DataMQ> tempDataMQ(new DataMQ(frameSize * framesCount, true /* EventFlag */)); in prepareForWriting()
/hardware/interfaces/audio/core/all-versions/default/include/core/default/
DStreamIn.h50 typedef MessageQueue<uint8_t, kSynchronizedReadWrite> DataMQ; typedef
128 std::unique_ptr<DataMQ> mDataMQ;
DStreamOut.h50 typedef MessageQueue<uint8_t, kSynchronizedReadWrite> DataMQ; typedef
150 std::unique_ptr<DataMQ> mDataMQ;
/hardware/interfaces/audio/core/all-versions/vts/functional/4.0/
DAudioPrimaryHidlHalTest.cpp78 typedef MessageQueue<uint8_t, kSynchronizedReadWrite> DataMQ; in TEST_P() typedef
80 std::unique_ptr<DataMQ> dataMQ; in TEST_P()
88 dataMQ.reset(new DataMQ(d)); in TEST_P()