Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DCommandQueueTest.java38 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/
DNavigationBarFragment.java120 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()
DStatusBar.java825 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/
DInputDispatcher.cpp589 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()
DInputDispatcher.h864 Queue<CommandEntry> mCommandQueue; variable