Home
last modified time | relevance | path

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

/frameworks/av/services/audioflinger/
DFastMixer.h29 typedef StateQueue<FastMixerState> FastMixerStateQueue; typedef
37 FastMixerStateQueue* sq();
40 FastMixerStateQueue mSQ;
DThreads.cpp3083 FastMixerStateQueue *sq = mFastMixer->sq(); in createAudioPatch_l()
3089 sq->push(FastMixerStateQueue::BLOCK_UNTIL_ACKED); in createAudioPatch_l()
3098 FastMixerStateQueue *sq = mFastMixer->sq(); in createAudioPatch_l()
3103 sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED); in createAudioPatch_l()
3190 FastMixerStateQueue *sq = mFastMixer->sq(); in releaseAudioPatch_l()
3196 sq->push(FastMixerStateQueue::BLOCK_UNTIL_ACKED); in releaseAudioPatch_l()
3206 FastMixerStateQueue *sq = mFastMixer->sq(); in releaseAudioPatch_l()
3211 sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED); in releaseAudioPatch_l()
3356 FastMixerStateQueue *sq = mFastMixer->sq(); in MixerThread()
3387 sq->push(FastMixerStateQueue::BLOCK_UNTIL_PUSHED); in MixerThread()
[all …]
DFastMixer.cpp95 FastMixerStateQueue* FastMixer::sq() in sq()