Home
last modified time | relevance | path

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

/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/unit/
DCellBroadcastAlertAudioTest.java19 import static com.android.cellbroadcastreceiver.CellBroadcastAlertService.SHOW_NEW_ALERT_ACTION;
169 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartService()
242 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceNotInCallOverrideDnd()
271 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceEnableLedFlash()
295 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceSilentRinger()
317 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceVibrateRinger()
339 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceWithTts()
400 intent.setAction(SHOW_NEW_ALERT_ACTION); in testSetTtsLanguage()
434 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceAndStop()
472 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceMuteWithOverrideDnd()
DCellBroadcastAlertServiceTest.java21 import static com.android.cellbroadcastreceiver.CellBroadcastAlertService.SHOW_NEW_ALERT_ACTION;
225 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testHandleCellBroadcastIntent()
253 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testHandleCellBroadcastIntentDomesticRoaming()
281 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testHandleCellBroadcastIntentInternationalRoaming()
308 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testHandleCellBroadcastIntentNonRoaming()
344 intent.setAction(SHOW_NEW_ALERT_ACTION); in testShowNewAlert()
383 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testShowNewAlertChildAbductionWithDefaultLanguage()
411 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testShowNewAlertChildAbduction()
786 intent.setAction(SHOW_NEW_ALERT_ACTION); in testMuteAlert()
827 intent.setAction(SHOW_NEW_ALERT_ACTION); in testAddToNotificationBarForWatch()
[all …]
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastAlertService.java93 public static final String SHOW_NEW_ALERT_ACTION = "cellbroadcastreceiver.SHOW_NEW_ALERT"; field in CellBroadcastAlertService
200 } else if (SHOW_NEW_ALERT_ACTION.equals(action)) { in onStartCommand()
398 final Intent alertIntent = new Intent(SHOW_NEW_ALERT_ACTION); in handleCellBroadcastIntent()