Lines Matching refs:mFifo
41 mFifo = new FifoController(capacityInFrames, capacityInFrames); in FifoBuffer()
63 mFifo = new FifoControllerIndirect(capacityInFrames, in FifoBuffer()
74 delete mFifo; in ~FifoBuffer()
109 fifo_frames_t framesAvailable = mFifo->getFullFramesAvailable(); in getFullDataAvailable()
110 fifo_frames_t startIndex = mFifo->getReadIndex(); in getFullDataAvailable()
115 fifo_frames_t framesAvailable = mFifo->getEmptyFramesAvailable(); in getEmptyRoomAvailable()
116 fifo_frames_t startIndex = mFifo->getWriteIndex(); in getEmptyRoomAvailable()
147 mFifo->advanceReadIndex(framesRead); in read()
178 mFifo->advanceWriteIndex(framesWritten); in write()
200 return mFifo->getThreshold(); in getThreshold()
204 mFifo->setThreshold(threshold); in setThreshold()
208 return mFifo->getCapacity(); in getBufferCapacityInFrames()