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;
121 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartService()
155 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceNotInCallOverrideDnd()
184 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceEnableLedFlash()
208 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceSilentRinger()
230 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceVibrateRinger()
250 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceAndStop()
DCellBroadcastAlertServiceTest.java20 import static com.android.cellbroadcastreceiver.CellBroadcastAlertService.SHOW_NEW_ALERT_ACTION;
168 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testHandleCellBroadcastIntent()
196 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testHandleCellBroadcastIntentDomesticRoaming()
224 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testHandleCellBroadcastIntentInternationalRoaming()
251 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testHandleCellBroadcastIntentNonRoaming()
287 intent.setAction(SHOW_NEW_ALERT_ACTION); in testShowNewAlert()
326 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testShowNewAlertChildAbductionWithDefaultLanguage()
354 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testShowNewAlertChildAbduction()
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastAlertService.java74 public static final String SHOW_NEW_ALERT_ACTION = "cellbroadcastreceiver.SHOW_NEW_ALERT"; field in CellBroadcastAlertService
172 } else if (SHOW_NEW_ALERT_ACTION.equals(action)) { in onStartCommand()
343 final Intent alertIntent = new Intent(SHOW_NEW_ALERT_ACTION); in handleCellBroadcastIntent()