Home
last modified time | relevance | path

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

/cts/common/device-side/bedstead/testapp/src/test/java/com/android/bedstead/testapp/
DTestAppInstanceReferenceTest.java60 private static final String INTENT_ACTION = "com.android.bedstead.testapp.test_action"; field in TestAppInstanceReferenceTest
61 private static final IntentFilter INTENT_FILTER = new IntentFilter(INTENT_ACTION);
62 private static final Intent INTENT = new Intent(INTENT_ACTION);
198 .whereIntent().action().isEqualTo(INTENT_ACTION); in registerReceiver_receivesBroadcast()
215 .whereIntent().action().isEqualTo(INTENT_ACTION); in registerReceiver_multipleIntentFilters_receivesAllMatchingBroadcasts()
246 .whereIntent().action().isEqualTo(INTENT_ACTION); in stop_registeredReceiver_doesNotReceiveBroadcast()
262 .whereIntent().action().isEqualTo(INTENT_ACTION); in unregisterReceiver_registeredReceiver_doesNotReceiveBroadcast()
280 .whereIntent().action().isEqualTo(INTENT_ACTION); in unregisterReceiver_doesNotUnregisterOtherReceivers()
312 .whereIntent().action().isEqualTo(INTENT_ACTION); in registerReceiver_appIsKilled_stillReceivesBroadcast()
/cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
DLockTaskUtilityActivity.java35 …public static final String INTENT_ACTION = "com.android.cts.deviceandprofileowner.LOCK_TASK_INTENT… field in LockTaskUtilityActivity
114 sendLocalBroadcast(new Intent(INTENT_ACTION)); in handleIntent()
/cts/tests/tests/permission4/src/android/permission4/cts/
DCameraMicIndicatorsPermissionTest.kt48 private const val INTENT_ACTION = "test.action.USE_CAMERA_OR_MIC" constant
131 context.startActivity(Intent(INTENT_ACTION).apply { in openApp()