Searched refs:mCommandQueue (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | CommandQueueTest.java | 38 private CommandQueue mCommandQueue; field in CommandQueueTest 43 mCommandQueue = new CommandQueue(); in setup() 45 mCommandQueue.addCallbacks(mCallbacks); in setup() 58 mCommandQueue.setIcon(slot, icon); in testIcon() 62 mCommandQueue.removeIcon(slot); in testIcon() 71 mCommandQueue.disable(state1, state2); in testDisable() 78 mCommandQueue.animateExpandNotificationsPanel(); in testExpandNotifications() 85 mCommandQueue.animateCollapsePanels(); in testCollapsePanels() 93 mCommandQueue.animateExpandSettingsPanel(panel); in testExpandSettings() 101 mCommandQueue.setSystemUiVisibility(1, 2, 3, 4, null, r); in testSetSystemUiVisibility() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | NavigationBarFragment.java | 120 private CommandQueue mCommandQueue; field in NavigationBarFragment 136 mCommandQueue = SysUiServiceProvider.getComponent(getContext(), CommandQueue.class); in onCreate() 137 mCommandQueue.addCallbacks(this); in onCreate() 168 mCommandQueue.removeCallbacks(this); in onDestroy() 465 mCommandQueue.preloadRecentApps(); in onRecentsTouch() 467 mCommandQueue.cancelPreloadRecentApps(); in onRecentsTouch() 470 mCommandQueue.cancelPreloadRecentApps(); in onRecentsTouch() 482 mCommandQueue.toggleRecentApps(); in onRecentsClick()
|
D | StatusBar.java | 825 mCommandQueue = getComponent(CommandQueue.class); in start() 826 mCommandQueue.addCallbacks(this); in start() 835 mBarService.registerStatusBar(mCommandQueue, iconSlots, icons, switches, binders, in start() 844 mCommandQueue.disable(switches[0], switches[6], false /* animate */); in start() 855 mCommandQueue.setIcon(iconSlots.get(i), icons.get(i)); in start() 2577 mCommandQueue.recomputeDisableFlags(animate); in recomputeDisableFlags() 4184 mCommandQueue.appTransitionStarting(SystemClock.uptimeMillis(), in fadeKeyguardAfterLaunchTransition() 4312 mCommandQueue.appTransitionPending(true); in keyguardGoingAway() 4327 mCommandQueue.appTransitionStarting(startTime + fadeoutDuration in setKeyguardFadingAway() 4331 mCommandQueue.appTransitionStarting( in setKeyguardFadingAway() [all …]
|
/frameworks/native/services/inputflinger/ |
D | InputDispatcher.cpp | 589 return !mCommandQueue.isEmpty(); in haveCommandsLocked() 593 if (mCommandQueue.isEmpty()) { in runCommandsLockedInterruptible() 598 CommandEntry* commandEntry = mCommandQueue.dequeueAtHead(); in runCommandsLockedInterruptible() 605 } while (! mCommandQueue.isEmpty()); in runCommandsLockedInterruptible() 611 mCommandQueue.enqueueAtTail(commandEntry); in postCommandLocked()
|
D | InputDispatcher.h | 864 Queue<CommandEntry> mCommandQueue; variable
|