Searched refs:mFifoBuffer (Results 1 – 3 of 3) sorted by relevance
80 : 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 …]
34 delete mFifoBuffer; in ~SharedRingBuffer()79 mFifoBuffer = new FifoBuffer(bytesPerFrame, capacityInFrames, in allocate()93 ringBufferParcelable.setBytesPerFrame(mFifoBuffer->getBytesPerFrame()); in fillParcelable()
51 return mFifoBuffer; in getFifoBuffer()56 android::FifoBuffer *mFifoBuffer = nullptr; variable