Home
last modified time | relevance | path

Searched refs:mFifoBuffer (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/libaaudio/tests/
Dtest_atomic_fifo.cpp80 : mFifoBuffer(sizeof(int16_t), capacity) { in TestFifoBuffer()
86 mFifoBuffer.setThreshold(threshold); in TestFifoBuffer()
91 ASSERT_EQ((int32_t)(2 * sizeof(int16_t)), mFifoBuffer.convertFramesToBytes(2)); in checkMisc()
92 ASSERT_EQ(mThreshold, mFifoBuffer.getThreshold()); in checkMisc()
99 mFifoBuffer.getFifoControllerBase()->getEmptyFramesAvailable(); in checkWrappingBuffer()
100 fifo_frames_t wrapAvailable = mFifoBuffer.getEmptyRoomAvailable(&wrappingBuffer); in checkWrappingBuffer()
106 mFifoBuffer.getFifoControllerBase()->getFullFramesAvailable(); in checkWrappingBuffer()
107 wrapAvailable = mFifoBuffer.getFullDataAvailable(&wrappingBuffer); in checkWrappingBuffer()
116 mFifoBuffer.getFifoControllerBase()->getEmptyFramesAvailable(); in writeData()
121 fifo_frames_t actual = mFifoBuffer.write(mData, framesToWrite); in writeData()
[all …]
/frameworks/av/services/oboeservice/
DSharedRingBuffer.cpp34 delete mFifoBuffer; in ~SharedRingBuffer()
79 mFifoBuffer = new FifoBuffer(bytesPerFrame, capacityInFrames, in allocate()
93 ringBufferParcelable.setBytesPerFrame(mFifoBuffer->getBytesPerFrame()); in fillParcelable()
DSharedRingBuffer.h51 return mFifoBuffer; in getFifoBuffer()
56 android::FifoBuffer *mFifoBuffer = nullptr; variable