Searched refs:bufferQueue (Results 1 – 8 of 8) sorted by relevance
273 IBufferQueue *bufferQueue = &track->mAudioPlayer->mBufferQueue; in IOutputMixExt_FillBuffer() local274 interface_lock_exclusive(bufferQueue); in IOutputMixExt_FillBuffer()276 oldFront = bufferQueue->mFront; in IOutputMixExt_FillBuffer()277 rear = bufferQueue->mRear; in IOutputMixExt_FillBuffer()281 if (++newFront == &bufferQueue->mArray[bufferQueue->mNumBuffers + 1]) { in IOutputMixExt_FillBuffer()282 newFront = bufferQueue->mArray; in IOutputMixExt_FillBuffer()284 bufferQueue->mFront = (BufferHeader *) newFront; in IOutputMixExt_FillBuffer()285 assert(0 < bufferQueue->mState.count); in IOutputMixExt_FillBuffer()286 --bufferQueue->mState.count; in IOutputMixExt_FillBuffer()290 assert(0 < bufferQueue->mState.count); in IOutputMixExt_FillBuffer()[all …]
112 SLDataLocator_BufferQueue bufferQueue; in TestPlaySawtoothBufferQueue() local162 bufferQueue.locatorType = SL_DATALOCATOR_BUFFERQUEUE; in TestPlaySawtoothBufferQueue()163 bufferQueue.numBuffers = 4; /* Four buffers in our buffer queue */ in TestPlaySawtoothBufferQueue()175 audioSource.pLocator = (void *)&bufferQueue; in TestPlaySawtoothBufferQueue()
256 SLBufferQueueItf bufferQueue = &thiz->mBufferQueue.mItf; in SndFile_Realize() local257 IBufferQueue *thisBQ = (IBufferQueue *) bufferQueue; in SndFile_Realize()
111 C2AllocatorGralloc(id_t id, bool bufferQueue = false);
58 ConsumerBase::ConsumerBase(const sp<IGraphicBufferConsumer>& bufferQueue, bool controlledByApp) : in ConsumerBase() argument60 mConsumer(bufferQueue), in ConsumerBase()
297 public void setBLASTBufferQueue(BLASTBufferQueue bufferQueue) { in setBLASTBufferQueue() argument299 mBLASTBufferQueue = bufferQueue; in setBLASTBufferQueue()
1155 Impl(id_t id, bool bufferQueue);1202 C2AllocatorGralloc::Impl::Impl(id_t id, bool bufferQueue) in Impl() argument1203 : mInit(C2_OK), mBufferQueue(bufferQueue) { in Impl()1272 C2AllocatorGralloc::C2AllocatorGralloc(id_t id, bool bufferQueue) in C2AllocatorGralloc() argument1273 : mImpl(new Impl(id, bufferQueue)) {} in C2AllocatorGralloc()
287 public void bufferQueue() throws Exception { in bufferQueue() method in SurfaceFlingerPerfTest