Home
last modified time | relevance | path

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

/cts/apps/ForceStopHelperApp/src/com/android/cts/forcestophelper/
DAlarmReceiver.java20 import static com.android.cts.forcestophelper.Constants.ACTION_ALARM;
35 if (ACTION_ALARM.equals(intent.getAction())) { in onReceive()
50 final Intent alarmIntent = new Intent(ACTION_ALARM) in createAlarmPendingIntent()
DConstants.java23 String ACTION_ALARM = PACKAGE_NAME + ".action.ACTION_ALARM"; field
/cts/tests/AlarmManager/src/android/alarmmanager/cts/
DTimeChangeTests.java59 private static final String ACTION_ALARM = "android.alarmmanager.cts.ACTION_ALARM"; field in TimeChangeTests
78 case ACTION_ALARM:
102 final Intent alarmIntent = new Intent(ACTION_ALARM) in setUp()
106 final IntentFilter alarmFilter = new IntentFilter(ACTION_ALARM); in setUp()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DSignificantMotionTestActivity.java80 private static String ACTION_ALARM = "SignificantMotionTestActivity.ACTION_ALARM"; field in SignificantMotionTestActivity
178 alarm_intent.setAction(SignificantMotionTestActivity.ACTION_ALARM); in onReceive()
307 new IntentFilter(ACTION_ALARM));
DDeviceSuspendTestActivity.java44 private static String ACTION_ALARM = "DeviceSuspendTestActivity.ACTION_ALARM"; field in DeviceSuspendTestActivity
53 new IntentFilter(ACTION_ALARM)); in activitySetUp()
104 alarm_intent.setAction(DeviceSuspendTestActivity.ACTION_ALARM); in onReceive()
DOffBodySensorTestActivity.java54 private static String ACTION_ALARM = "OffBodySensorTestActivity.ACTION_ALARM"; field in OffBodySensorTestActivity
299 new IntentFilter(ACTION_ALARM)); in activitySetUp()
344 alarm_intent.setAction(OffBodySensorTestActivity.ACTION_ALARM); in onReceive()
/cts/tests/ServiceKillTest/app/src/com/android/cts/servicekilltestapp/
DServiceKillTestService.java78 private static final String ACTION_ALARM = TEST_CASE_PACKAGE_NAME + ".ACTION_ALARM"; field in ServiceKillTestService
105 if (intent != null && ACTION_ALARM.equals(intent.getAction())) {
238 Intent i = new Intent(ACTION_ALARM); in getAlarmIntent()
269 registerReceiver(mAlarmReceiver, new IntentFilter(ACTION_ALARM)); in startBenchmark()