HomeSort by relevance Sort by last modified time
    Searched defs:alert (Results 1 - 25 of 29) sorted by null

1 2

  /packages/apps/Email/src/com/android/exchange/
MailboxAlarmReceiver.java 34 SyncManager.alert(context, mid);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmap.java 113 AlertDialog alert = builder.create(); local
114 alert.show();
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiAPITest.java 104 AlertDialog.Builder alert = new AlertDialog.Builder(this); local
105 alert.setTitle("Input");
106 alert.setMessage("Enter Network ID");
109 alert.setView(input);
110 alert.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
117 alert.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
122 alert.show();
124 AlertDialog.Builder alert = new AlertDialog.Builder(this); local
125 alert.setTitle("Input");
126 alert.setMessage("Enter Network ID")
    [all...]
  /packages/apps/Phone/src/com/android/phone/
SpecialCharSequenceMgr.java 222 AlertDialog alert = new AlertDialog.Builder(context) local
228 alert.getWindow().setType(WindowManager.LayoutParams.TYPE_PRIORITY_PHONE);
236 AlertDialog alert = new AlertDialog.Builder(context) local
242 alert.getWindow().setType(WindowManager.LayoutParams.TYPE_PRIORITY_PHONE);
EmergencyDialer.java 514 // erase the number and throw up an alert dialog.
588 AlertDialog alert = (AlertDialog) dialog; local
589 alert.setMessage(createErrorMessage(mLastNumber));
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLRecordProtocol.java 30 * client protocol (handshake, alert, application data protocols)
86 // alert protocol to indicate alerts occured/received
409 case ContentType.ALERT:
410 alert(fragment[0], fragment[1]); method
436 * Passes the alert information to the alert protocol.
440 protected void alert(byte level, byte description) { method in class:SSLRecordProtocol
444 alertProtocol.alert(level, description);
AlertProtocol.java 25 * This class encapsulates the functionality of Alert Protocol.
33 * Defines the severity of alert as warning
37 * Defines the severity of alert as fatal
43 * Defines the description code of the close_notify alert
47 * Defines the description code of the unexpected_message alert
51 * Defines the description code of the bad_record_mac alert
55 * Defines the description code of the decryption_failed alert
59 * Defines the description code of the record_overflow alert
63 * Defines the description code of the decompression_failure alert
67 * Defines the description code of the handshake_failure alert
135 private final byte[] alert = new byte[2]; field in class:AlertProtocol
166 protected void alert(byte level, byte description) { method in class:AlertProtocol
    [all...]
HandshakeProtocol.java 195 * process and no_renegotiation alert message is received
298 * Sends fatal alert, breaks execution
303 recordProtocol.alert(AlertProtocol.WARNING, description);
307 * Sends fatal alert, breaks execution
317 * Sends fatal alert, breaks execution
328 * Sends fatal alert, breaks execution
430 * Sends fatal alert "UNEXPECTED MESSAGE"
SSLEngineImpl.java 48 // indicates if close_notify alert had been sent to another peer
50 // indicates if close_notify alert had been received from another peer
65 // alert protocol to be used
157 alertProtocol.alert(AlertProtocol.FATAL,
160 + "alert has been received.");
184 alertProtocol.alert(AlertProtocol.WARNING,
367 // need to send an alert
476 // to appropriate client protocol (alert, handshake, or app)
490 case ContentType.ALERT:
496 String description = "Fatal alert received
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_server_write.c 764 u8 *alert, *pos, *length; local
766 wpa_printf(MSG_DEBUG, "TLSv1: Send Alert(%d:%d)", level, description);
769 alert = os_malloc(10);
770 if (alert == NULL)
773 pos = alert;
786 /* Alert */
793 *out_len = pos - alert;
795 return alert;
tlsv1_client.c 137 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; local
160 in_msg, &in_msg_len, &alert)) {
163 tls_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
262 u8 alert, *out_end, *out_pos; local
281 out_pos, &olen, &alert);
285 tls_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
tlsv1_client_write.c 770 u8 *alert, *pos, *length; local
772 wpa_printf(MSG_DEBUG, "TLSv1: Send Alert(%d:%d)", level, description);
775 alert = os_malloc(10);
776 if (alert == NULL)
779 pos = alert;
792 /* Alert */
799 *out_len = pos - alert;
801 return alert;
tlsv1_server.c 116 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; local
134 in_msg, &in_msg_len, &alert)) {
137 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
167 /* Avoid alert loops */
168 wpa_printf(MSG_DEBUG, "TLSv1: Drop alert loop");
236 u8 alert, *out_end, *out_pos; local
255 out_pos, &olen, &alert);
259 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
  /packages/apps/AlarmClock/src/com/android/alarmclock/
SettingsActivity.java 57 Uri alert = RingtoneManager.getActualDefaultRingtoneUri(this, local
59 if (alert != null) {
60 ringtone.setAlert(alert);
Alarm.java 60 p.writeParcelable(alert, flags);
121 * Audio alert to play when alarm triggers
124 public static final String ALERT = "alert";
137 ENABLED, VIBRATE, MESSAGE, ALERT };
166 public Uri alert; field in class:Alarm
186 alert = Uri.parse(alertString);
189 // If the database alert is null or it failed to parse, use the
190 // default alert.
191 if (alert == null)
    [all...]
SetAlarm.java 106 // Give the alert uri to the preference.
107 mAlarmPref.setAlert(alarm.alert);
194 final String alert = mAlarmPref.getAlertString(); local
197 mLabel.getText(), alert);
212 String alert, boolean popToast) {
216 // Fix alert string first
218 daysOfWeek, vibrate, label, alert);
AlarmKlaxon.java 158 Log.v("AlarmKlaxon.play() " + alarm.id + " alert " + alarm.alert);
162 Uri alert = alarm.alert; local
165 if (alert == null) {
166 alert = RingtoneManager.getDefaultUri(
169 Log.v("Using default alarm: " + alert.toString());
196 mMediaPlayer.setDataSource(this, alert);
201 // The alert may be on the sd card which could be busy right
  /external/webkit/WebKit/haiku/WebCoreSupport/
ChromeClientHaiku.cpp 38 #include <Alert.h>
219 BAlert* alert = new BAlert("JavaScript", BString(msg).String(), "OK"); local
220 alert->Go();
225 BAlert* alert = new BAlert("JavaScript", BString(msg).String(), "Yes", "No"); local
226 return !alert->Go();
  /packages/apps/Contacts/src/com/android/contacts/
SpecialCharSequenceMgr.java 205 AlertDialog alert = new AlertDialog.Builder(context) local
211 alert.getWindow().setType(WindowManager.LayoutParams.TYPE_PRIORITY_PHONE);
218 AlertDialog alert = new AlertDialog.Builder(context) local
224 alert.getWindow().setType(WindowManager.LayoutParams.TYPE_PRIORITY_PHONE);
  /packages/apps/DeskClock/src/com/android/deskclock/
Alarm.java 60 p.writeParcelable(alert, flags);
121 * Audio alert to play when alarm triggers
124 public static final String ALERT = "alert";
137 ENABLED, VIBRATE, MESSAGE, ALERT };
166 public Uri alert; field in class:Alarm
186 alert = Uri.parse(alertString);
189 // If the database alert is null or it failed to parse, use the
190 // default alert.
191 if (alert == null)
    [all...]
AlarmKlaxon.java 158 Log.v("AlarmKlaxon.play() " + alarm.id + " alert " + alarm.alert);
162 Uri alert = alarm.alert; local
165 if (alert == null) {
166 alert = RingtoneManager.getDefaultUri(
169 Log.v("Using default alarm: " + alert.toString());
196 mMediaPlayer.setDataSource(this, alert);
201 // The alert may be on the sd card which could be busy right
  /external/quake/src/com/android/quake/
DownloaderActivity.java 222 AlertDialog alert = new Builder(this).create(); local
223 alert.setTitle(R.string.download_activity_download_stopped);
226 alert.setMessage(shortReason);
229 alert.setButton(getString(R.string.download_activity_retry),
236 alert.setButton2(getString(R.string.download_activity_quit),
244 alert.show();
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 1524 ContentValues alert = new ContentValues(); local
    [all...]
  /external/webkit/WebCore/page/
DOMWindow.cpp 783 void DOMWindow::alert(const String& message) function in class:WebCore::DOMWindow
    [all...]
  /frameworks/base/services/java/com/android/server/
LocationManagerService.java 813 for (ProximityAlert alert : mProximityAlerts.values()) {
814 if (alert.mUid == uid) {
1210 ProximityAlert alert = mProximityAlerts.get(i); local
1280 ProximityAlert alert = new ProximityAlert(Binder.getCallingUid(), local
    [all...]

Completed in 702 milliseconds

1 2