Home
last modified time | relevance | path

Searched refs:FastThreadState (Results 1 – 15 of 15) sorted by relevance

/frameworks/av/services/audioflinger/
DFastThreadState.cpp22 FastThreadState::FastThreadState() : in FastThreadState() function in android::FastThreadState
28 FastThreadState::~FastThreadState() in ~FastThreadState()
33 const char *FastThreadState::commandToString(FastThreadState::Command command) in commandToString()
36 case FastThreadState::INITIAL: return "INITIAL"; in commandToString()
37 case FastThreadState::HOT_IDLE: return "HOT_IDLE"; in commandToString()
38 case FastThreadState::COLD_IDLE: return "COLD_IDLE"; in commandToString()
39 case FastThreadState::EXIT: return "EXIT"; in commandToString()
DFastThread.h43 virtual const FastThreadState *poll() = 0;
47 virtual bool isSubClassCommand(FastThreadState::Command command) = 0;
52 const FastThreadState* mPrevious;
53 const FastThreadState* mCurrent;
88 FastThreadState::Command mCommand;
DFastThread.cpp70 mCommand(FastThreadState::INITIAL), in FastThread()
104 const FastThreadState *next = poll(); in threadLoop()
129 if (!(mCurrent->mCommand & FastThreadState::IDLE)) { in threadLoop()
130 if (mCommand & FastThreadState::IDLE) { in threadLoop()
152 case FastThreadState::INITIAL: in threadLoop()
153 case FastThreadState::HOT_IDLE: in threadLoop()
156 case FastThreadState::COLD_IDLE: in threadLoop()
189 case FastThreadState::EXIT: in threadLoop()
DFastThreadState.h29 struct FastThreadState { struct
30 FastThreadState();
31 /*virtual*/ ~FastThreadState();
DFastCaptureState.cpp21 FastCaptureState::FastCaptureState() : FastThreadState(), in FastCaptureState()
33 const char *str = FastThreadState::commandToString(command); in commandToString()
DFastMixerState.cpp31 FastMixerState::FastMixerState() : FastThreadState(), in FastMixerState()
45 const char *str = FastThreadState::commandToString(command); in commandToString()
DFastCapture.h41 virtual const FastThreadState *poll();
45 virtual bool isSubClassCommand(FastThreadState::Command command);
DFastMixer.h43 virtual const FastThreadState *poll();
47 virtual bool isSubClassCommand(FastThreadState::Command command);
DFastCaptureState.h27 struct FastCaptureState : FastThreadState {
DFastThreadDumpState.h35 FastThreadState::Command mCommand; // current command
DFastCapture.cpp55 const FastThreadState *FastCapture::poll() in poll()
75 bool FastCapture::isSubClassCommand(FastThreadState::Command command) in isSubClassCommand()
DFastMixerState.h53 struct FastMixerState : FastThreadState {
DFastThreadDumpState.cpp22 mCommand(FastThreadState::INITIAL), mUnderruns(0), mOverruns(0), in FastThreadDumpState()
DAndroid.mk87 FastThreadState.cpp
DFastMixer.cpp100 const FastThreadState *FastMixer::poll() in poll()
125 bool FastMixer::isSubClassCommand(FastThreadState::Command command) in isSubClassCommand()