Home
last modified time | relevance | path

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

/cts/tests/framework/base/windowmanager/app_base/src/android/server/wm/app/
DTestActivity.java21 import static android.server.wm.app.Components.TestActivity.COMMAND_START_ACTIVITY;
115 case COMMAND_START_ACTIVITY: in handleCommand()
/cts/tests/app/src/android/app/cts/
DActivityManagerTest.java644 CommandReceiver.COMMAND_START_ACTIVITY,
1336 CommandReceiver.sendCommand(mTargetContext, CommandReceiver.COMMAND_START_ACTIVITY, in testKillingAppChildProcess()
1369 CommandReceiver.sendCommand(mTargetContext, CommandReceiver.COMMAND_START_ACTIVITY, in testKillingAppChildProcess()
1462 CommandReceiver.sendCommand(mTargetContext, CommandReceiver.COMMAND_START_ACTIVITY, in testTrimAppChildProcess()
1476 CommandReceiver.sendCommand(mTargetContext, CommandReceiver.COMMAND_START_ACTIVITY, in testTrimAppChildProcess()
1506 CommandReceiver.sendCommand(mTargetContext, CommandReceiver.COMMAND_START_ACTIVITY, in testTrimAppChildProcess()
1675 CommandReceiver.sendCommand(mTargetContext, CommandReceiver.COMMAND_START_ACTIVITY, in testTrimMemActivityFg()
1687 CommandReceiver.sendCommand(mTargetContext, CommandReceiver.COMMAND_START_ACTIVITY, in testTrimMemActivityFg()
1771 CommandReceiver.sendCommand(mTargetContext, CommandReceiver.COMMAND_START_ACTIVITY, in testServiceDoneLRUPosition()
1842 CommandReceiver.sendCommand(mTargetContext, CommandReceiver.COMMAND_START_ACTIVITY, in testBroadcastReceiverLRUPosition()
[all …]
DActivityManagerFgsBgStartTest.java288 CommandReceiver.COMMAND_START_ACTIVITY, in testFgsLocationStartFromBG()
369 CommandReceiver.COMMAND_START_ACTIVITY, in testFgsLocationStartFromBGTwoProcesses()
489 CommandReceiver.COMMAND_START_ACTIVITY, in testFgsLocationPendingIntent()
627 CommandReceiver.COMMAND_START_ACTIVITY, in testUpdateUidProcState()
731 CommandReceiver.COMMAND_START_ACTIVITY, in testFgsStartFromBG()
785 CommandReceiver.COMMAND_START_ACTIVITY, in testFgsStartFromBoundTopState()
852 CommandReceiver.COMMAND_START_ACTIVITY, in testFgsStartFromFgsState()
1483 CommandReceiver.COMMAND_START_ACTIVITY, in testVisibleActivityGracePeriodInternal()
1537 CommandReceiver.sendCommand(mContext, CommandReceiver.COMMAND_START_ACTIVITY, in testStartForegroundTimeout()
1570 CommandReceiver.sendCommand(mContext, CommandReceiver.COMMAND_START_ACTIVITY, in testStartForegroundTimeout()
[all …]
DActivityManagerProcessStateTest.java1896 CommandReceiver.COMMAND_START_ACTIVITY, in testFgsLocationBind()
2442 CommandReceiver.COMMAND_START_ACTIVITY, in testFgsStickyInternal()
2514 CommandReceiver.COMMAND_START_ACTIVITY, in testFgsDefaultCapabilityNone()
2588 CommandReceiver.sendCommand(mContext, CommandReceiver.COMMAND_START_ACTIVITY, in testProcessDeathBindings()
2660 CommandReceiver.sendCommand(mContext, CommandReceiver.COMMAND_START_ACTIVITY, in testProcessDeathBindings_anotherClient()
/cts/tests/app/app/src/android/app/stubs/
DCommandReceiver.java66 public static final int COMMAND_START_ACTIVITY = 10; field in CommandReceiver
190 case COMMAND_START_ACTIVITY: in onReceive()
745 || command == COMMAND_STOP_FOREGROUND_SERVICE || command == COMMAND_START_ACTIVITY in makeIntent()
/cts/tests/framework/base/windowmanager/src/android/server/wm/animations/
DSplashscreenTests.java36 import static android.server.wm.app.Components.TestActivity.COMMAND_START_ACTIVITY;
167 starter.sendCommand(COMMAND_START_ACTIVITY, data); in startActivityFromStarter()
/cts/tests/framework/base/windowmanager/app/src/android/server/wm/app/
DComponents.java351 public static final String COMMAND_START_ACTIVITY = "start_activity"; field in Components.TestActivity