Home
last modified time | relevance | path

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

/aosp12/packages/services/Car/cpp/computepipe/runner/engine/
H A DDefaultEngine.cpp91 if (mCurrentPhase != kResetPhase) { in processClientConfigUpdate()
135 if (mCurrentPhase != kRunPhase) { in processClientCommand()
182 if (mCurrentPhase != kConfigPhase && mCurrentPhase != kResetPhase) { in processClientCommand()
293 mCurrentPhase = kConfigPhase; in broadcastClientConfig()
367 mCurrentPhase = kRunPhase; in broadcastStartRun()
412 mCurrentPhase = kStopPhase; in broadcastStopWithFlush()
433 mCurrentPhase = kConfigPhase; in broadcastStopComplete()
480 mCurrentPhase = kConfigPhase; in broadcastHalt()
501 mCurrentPhase = kResetPhase; in broadcastReset()
690 if (mGraph && (mCurrentPhase == kConfigPhase || mCurrentPhase == kRunPhase in processCommands()
[all …]
H A DDefaultEngine.h262 std::string mCurrentPhase = kResetPhase; variable
/aosp12/frameworks/base/services/core/java/com/android/server/
H A DSystemServiceManager.java83 private int mCurrentPhase = -1; field in SystemServiceManager
221 if (phase <= mCurrentPhase) { in startBootPhase()
224 mCurrentPhase = phase; in startBootPhase()
226 Slog.i(TAG, "Starting phase " + mCurrentPhase); in startBootPhase()
235 service.onBootPhase(mCurrentPhase); in startBootPhase()
240 + mCurrentPhase, ex); in startBootPhase()
260 return mCurrentPhase >= SystemService.PHASE_BOOT_COMPLETED; in isBootCompleted()
500 pw.printf("Current phase: %d\n", mCurrentPhase); in dump()