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;
120 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartService()
154 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceNotInCallOverrideDnd()
183 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceEnableLedFlash()
207 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceSilentRinger()
229 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceVibrateRinger()
249 intent.setAction(SHOW_NEW_ALERT_ACTION); in testStartServiceAndStop()
DCellBroadcastAlertServiceTest.java20 import static com.android.cellbroadcastreceiver.CellBroadcastAlertService.SHOW_NEW_ALERT_ACTION;
155 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testHandleCellBroadcastIntent()
169 intent.setAction(SHOW_NEW_ALERT_ACTION); in testShowNewAlert()
206 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testShowNewAlertChildAbductionWithDefaultLanguage()
234 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testShowNewAlertChildAbduction()
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastAlertService.java75 public static final String SHOW_NEW_ALERT_ACTION = "cellbroadcastreceiver.SHOW_NEW_ALERT"; field in CellBroadcastAlertService
148 } else if (SHOW_NEW_ALERT_ACTION.equals(action)) { in onStartCommand()
293 final Intent alertIntent = new Intent(SHOW_NEW_ALERT_ACTION); in handleCellBroadcastIntent()