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.java364 Intent audioIntent = new Intent(this, CellBroadcastAlertAudio.class); in openEmergencyAlertNotification()
365 audioIntent.setAction(CellBroadcastAlertAudio.ACTION_START_ALERT_AUDIO); in openEmergencyAlertNotification()
377 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_DURATION_EXTRA, duration); in openEmergencyAlertNotification()
381 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_VIBRATE_EXTRA, true); in openEmergencyAlertNotification()
382 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_ETWS_VIBRATE_EXTRA, true); in openEmergencyAlertNotification()
385 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_VIBRATE_EXTRA, in openEmergencyAlertNotification()
392 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_MESSAGE_BODY, messageBody); in openEmergencyAlertNotification()
417 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_MESSAGE_PREFERRED_LANGUAGE, in openEmergencyAlertNotification()
419 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_MESSAGE_DEFAULT_LANGUAGE, in openEmergencyAlertNotification()
DCellBroadcastAlertFullScreen.java391 stopService(new Intent(this, CellBroadcastAlertAudio.class)); in dismiss()
474 stopService(new Intent(this, CellBroadcastAlertAudio.class)); in dispatchKeyEvent()
DCellBroadcastAlertAudio.java52 public class CellBroadcastAlertAudio extends Service implements TextToSpeech.OnInitListener, class