Home
last modified time | relevance | path

Searched refs:mCommandQueue (Results 1 – 7 of 7) sorted by relevance

/packages/services/Car/cpp/evs/apps/default/
DEvsStateControl.cpp134 std::swap(emptyQueue, mCommandQueue); in postCommand()
137 mCommandQueue.push(cmd); in postCommand()
153 while (!mCommandQueue.empty()) { in updateLoop()
154 const Command& cmd = mCommandQueue.front(); in updateLoop()
166 mCommandQueue.pop(); in updateLoop()
DEvsStateControl.h114 std::queue<Command> mCommandQueue; variable
/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/
DCarSystemBar.java74 private final CommandQueue mCommandQueue; field in CarSystemBar
143 mCommandQueue = commandQueue; in CarSystemBar()
169 mCommandQueue.addCallback(this); in start()
173 result = mBarService.registerStatusBar(mCommandQueue); in start()
188 mCommandQueue.setIcon(result.mIcons.keyAt(i), result.mIcons.valueAt(i)); in start()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/notification/
DNotificationPanelViewController.java79 private final CommandQueue mCommandQueue; field in NotificationPanelViewController
141 mCommandQueue = commandQueue; in NotificationPanelViewController()
150 mCommandQueue.addCallback(this); in NotificationPanelViewController()
474 return mCommandQueue.panelsEnabled(); in shouldAnimateExpandPanel()
/packages/services/Car/cpp/computepipe/runner/engine/
DDefaultEngine.cpp624 if (this->mCommandQueue.empty() && !mCurrentPhaseError) { in processCommands()
636 std::swap(mCommandQueue, empty); in processCommands()
639 EngineCommand ec = mCommandQueue.front(); in processCommands()
640 mCommandQueue.pop(); in processCommands()
715 mCommandQueue.push(EngineCommand(source, type)); in queueCommand()
DDefaultEngine.h272 std::queue<EngineCommand> mCommandQueue; variable
/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/toast/
DCarToastUITest.java67 private CommandQueue mCommandQueue; field in CarToastUITest
86 mContext.getOrCreateTestableResources().getResources(), mCommandQueue, in setUp()