Home
last modified time | relevance | path

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

/cts/common/device-side/bedstead/harrier/src/test/java/com/android/bedstead/harrier/
DDeviceStateInternalTest.java77 private static final String INTENT_ACTION = "com.android.cts.deviceandprofileowner.CONFIRM"; field in DeviceStateInternalTest
111 intentFilter().where().actions().contains(INTENT_ACTION) in requirePackageRespondsToIntentAnnotation_packageRespondsToIntent()
118 .apply(List.of(requirePackageRespondsToIntent(INTENT_ACTION)) in requirePackageRespondsToIntentAnnotation_packageRespondsToIntent()
122 new Intent(INTENT_ACTION), in requirePackageRespondsToIntentAnnotation_packageRespondsToIntent()
134 … intentFilter().where().actions().contains(INTENT_ACTION))) in requirePackageRespondsToIntentAnnotation_workProfile_packageRespondsToIntent()
139 ….apply(List.of(requirePackageRespondsToIntent(INTENT_ACTION, UserType.WORK_PROFILE), ensureHasPerm… in requirePackageRespondsToIntentAnnotation_workProfile_packageRespondsToIntent()
143 new Intent(INTENT_ACTION), in requirePackageRespondsToIntentAnnotation_workProfile_packageRespondsToIntent()
176 intentFilter().where().actions().contains(INTENT_ACTION) in requireNoPackageRespondsToIntentAnnotation_packageRespondsToIntent()
186 .apply(List.of(requireNoPackageRespondsToIntent(INTENT_ACTION)) in requireNoPackageRespondsToIntentAnnotation_packageRespondsToIntent()
194 .apply(List.of(ensurePackageRespondsToIntent(INTENT_ACTION)) in ensurePackageRespondsToIntentAnnotation()
[all …]
/cts/tests/tests/wifi/src/android/net/wifi/sharedconnectivity/cts/app/
DSharedConnectivitySettingsStateTest.java44 private static final String INTENT_ACTION = "instant.tether.settings"; field in SharedConnectivitySettingsStateTest
56 new Intent(INTENT_ACTION).setComponent(new ComponentName( in pendingIntentMutable_buildShouldThrow()
66 SharedConnectivitySettingsState state = buildSettingsStateBuilder(INTENT_ACTION).build(); in parcelOperation()
94 SharedConnectivitySettingsState state1 = buildSettingsStateBuilder(INTENT_ACTION).build(); in equalsOperation()
95 SharedConnectivitySettingsState state2 = buildSettingsStateBuilder(INTENT_ACTION).build(); in equalsOperation()
98 SharedConnectivitySettingsState.Builder builder = buildSettingsStateBuilder(INTENT_ACTION) in equalsOperation()
111 SharedConnectivitySettingsState state = buildSettingsStateBuilder(INTENT_ACTION).build(); in getMethods()
116 .isEqualTo(buildPendingIntent(INTENT_ACTION)); in getMethods()
122 SharedConnectivitySettingsState state1 = buildSettingsStateBuilder(INTENT_ACTION).build(); in hashCodeCalculation()
123 SharedConnectivitySettingsState state2 = buildSettingsStateBuilder(INTENT_ACTION).build(); in hashCodeCalculation()
/cts/common/device-side/bedstead/testapp/src/test/java/com/android/bedstead/testapp/
DTestAppInstanceTest.java75 private static final String INTENT_ACTION = "com.android.bedstead.testapp.test_action"; field in TestAppInstanceTest
76 private static final IntentFilter INTENT_FILTER = new IntentFilter(INTENT_ACTION);
77 private static final Intent INTENT = new Intent(INTENT_ACTION);
199 .whereIntent().action().isEqualTo(INTENT_ACTION)) in registerReceiver_receivesBroadcast()
214 .whereIntent().action().isEqualTo(INTENT_ACTION)) in registerReceiver_multipleIntentFilters_receivesAllMatchingBroadcasts()
242 .whereIntent().action().isEqualTo(INTENT_ACTION); in stop_registeredReceiver_doesNotReceiveBroadcast()
257 .whereIntent().action().isEqualTo(INTENT_ACTION); in unregisterReceiver_registeredReceiver_doesNotReceiveBroadcast()
274 .whereIntent().action().isEqualTo(INTENT_ACTION); in unregisterReceiver_doesNotUnregisterOtherReceivers()
308 .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()