Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/components/base/include/
DSimpleC2Component.h207 inline WorkQueue() : mFlush(false), mGeneration(0ul) {} in WorkQueue()
210 inline void incGeneration() { ++mGeneration; mFlush = true; } in incGeneration()
218 bool flush = mFlush; in popPendingFlush()
219 mFlush = false; in popPendingFlush()
231 bool mFlush; variable
/frameworks/av/media/libaudioclient/
DAudioTrackShared.cpp440 __builtin_add_overflow(mCblk->u.mStreaming.mFlush & ~mask, increment, &flushBits); in sendStreamingFlushStop()
441 android_atomic_release_store(rearMasked | flushBits, &mCblk->u.mStreaming.mFlush); in sendStreamingFlushStop()
662 mAvailToClient(0), mFlush(0), mReleased(0), mFlushed(0) in ServerProxy()
676 int32_t flush = android_atomic_acquire_load(&cblk->u.mStreaming.mFlush); in flushBufferIfNeeded()
677 if (flush != mFlush) { in flushBufferIfNeeded()
679 flush, mFlush); in flushBufferIfNeeded()
701 mFlush, flush, front, rear, in flushBufferIfNeeded()
705 mFlush = flush; in flushBufferIfNeeded()
903 int32_t flush = cblk->u.mStreaming.mFlush; in framesReady()
904 if (flush != mFlush) { in framesReady()
[all …]
/frameworks/av/include/private/media/
DAudioTrackShared.h61 volatile int32_t mFlush; // incremented by client to indicate a request to flush; member
568 int32_t mFlush; // our copy of cblk->u.mStreaming.mFlush, for streaming output only variable