Home
last modified time | relevance | path

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

/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastAlertService.java287 Intent audioIntent = new Intent(this, CellBroadcastAlertAudio.class); in openEmergencyAlertNotification()
288 audioIntent.setAction(CellBroadcastAlertAudio.ACTION_START_ALERT_AUDIO); in openEmergencyAlertNotification()
300 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_DURATION_EXTRA, duration); in openEmergencyAlertNotification()
304 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_VIBRATE_EXTRA, true); in openEmergencyAlertNotification()
305 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_ETWS_VIBRATE_EXTRA, true); in openEmergencyAlertNotification()
308 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_VIBRATE_EXTRA, in openEmergencyAlertNotification()
315 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_MESSAGE_BODY, messageBody); in openEmergencyAlertNotification()
325 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_MESSAGE_LANGUAGE, in openEmergencyAlertNotification()
DCellBroadcastAlertFullScreen.java390 stopService(new Intent(this, CellBroadcastAlertAudio.class)); in dismiss()
472 stopService(new Intent(this, CellBroadcastAlertAudio.class)); in dispatchKeyEvent()
DCellBroadcastAlertAudio.java48 public class CellBroadcastAlertAudio extends Service implements TextToSpeech.OnInitListener, class