Home
last modified time | relevance | path

Searched refs:mGraphState (Results 1 – 6 of 6) sorted by relevance

/packages/services/Car/cpp/computepipe/runner/graph/
DLocalPrebuiltGraph.cpp56 if (mGraphState.load() == PrebuiltGraphState::UNINITIALIZED) { in handleConfigPhase()
113 if (mGraphState.load() != PrebuiltGraphState::STOPPED) { in handleExecutionPhase()
127 mGraphState.store(PrebuiltGraphState::RUNNING); in handleExecutionPhase()
134 if (mGraphState.load() != PrebuiltGraphState::RUNNING) { in handleStopWithFlushPhase()
149 if (mGraphState.load() != PrebuiltGraphState::RUNNING) { in handleStopImmediatePhase()
163 if (mGraphState.load() != PrebuiltGraphState::STOPPED) { in handleResetPhase()
185 if (mPrebuiltGraphInstance->mGraphState.load() != PrebuiltGraphState::UNINITIALIZED) { in GetPrebuiltGraphFromLibrary()
248 mPrebuiltGraphInstance->mGraphState.store(PrebuiltGraphState::STOPPED); in GetPrebuiltGraphFromLibrary()
263 if (mGraphState.load() == PrebuiltGraphState::UNINITIALIZED) { in GetStatus()
273 if (mGraphState.load() == PrebuiltGraphState::UNINITIALIZED) { in GetErrorMessage()
[all …]
DGrpcGraph.cpp74 return mGraphState; in GetGraphState()
118 mGraphState = PrebuiltGraphState::STOPPED; in initialize()
126 if (mGraphState == PrebuiltGraphState::UNINITIALIZED) { in handleConfigPhase()
174 if (mGraphState != PrebuiltGraphState::STOPPED || mStreamSetObserver == nullptr) { in handleExecutionPhase()
215 mGraphState = PrebuiltGraphState::RUNNING; in handleExecutionPhase()
224 if (mGraphState != PrebuiltGraphState::RUNNING) { in handleStopWithFlushPhase()
258 mGraphState = PrebuiltGraphState::FLUSHING; in handleStopWithFlushPhase()
267 if (mGraphState != PrebuiltGraphState::RUNNING) { in handleStopImmediatePhase()
301 mGraphState = PrebuiltGraphState::STOPPED; in handleStopImmediatePhase()
308 if (mGraphState != PrebuiltGraphState::STOPPED) { in handleResetPhase()
[all …]
DLocalPrebuiltGraph.h65 return mGraphState; in GetGraphState()
123 std::atomic<PrebuiltGraphState> mGraphState = PrebuiltGraphState::UNINITIALIZED; variable
DGrpcGraph.h112 PrebuiltGraphState mGraphState = PrebuiltGraphState::UNINITIALIZED; variable
/packages/services/Car/cpp/computepipe/runner/client_interface/
DDebuggerImpl.cpp108 if (mGraphState != GraphState::RUNNING) { in startPipeProfiling()
170 if (mGraphState == GraphState::RUNNING || mGraphState == GraphState::RESET) { in releaseDebugger()
190 mGraphState = GraphState::CONFIG_DONE; in handleConfigPhase()
197 mGraphState = GraphState::RUNNING; in handleExecutionPhase()
200 mGraphState = GraphState::ERR_HALT; in handleExecutionPhase()
207 mGraphState = GraphState::DONE; in handleStopWithFlushPhase()
210 mGraphState = GraphState::ERR_HALT; in handleStopWithFlushPhase()
217 mGraphState = GraphState::ERR_HALT; in handleStopImmediatePhase()
224 mGraphState = GraphState::RESET; in handleResetPhase()
DDebuggerImpl.h66 GraphState mGraphState = GraphState::RESET; variable