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

1 2

  /external/chromium/chrome/browser/extensions/
alert_apitest.cc 16 ASSERT_TRUE(RunExtensionTest("alert")) << message_;
23 ASCIIToUTF16("alert('This should not crash.');"));
25 AppModalDialog* alert = ui_test_utils::WaitForAppModalDialog(); local
26 ASSERT_TRUE(alert);
27 alert->CloseModalDialog();
  /external/webkit/LayoutTests/fast/encoding/resources/
parser-tests.js 64 function alert() { } function
  /packages/apps/Exchange/src/com/android/exchange/
MailboxAlarmReceiver.java 37 ExchangeService.alert(context, mailboxId);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmap.java 113 AlertDialog alert = builder.create(); local
114 alert.show();
CameraPreview.java 123 AlertDialog alert = builder.create(); local
124 alert.show();
  /packages/apps/Phone/src/com/android/phone/
SpecialCharSequenceMgr.java 227 AlertDialog alert = new AlertDialog.Builder(context) local
233 alert.getWindow().setType(WindowManager.LayoutParams.TYPE_PRIORITY_PHONE);
234 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...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLRecordProtocol.java 26 * client protocol (handshake, alert, application data protocols)
82 // alert protocol to indicate alerts occurred/received
404 case ContentType.ALERT:
405 alert(fragment[0], fragment[1]); method
431 * Passes the alert information to the alert protocol.
435 protected void alert(byte level, byte description) { method in class:SSLRecordProtocol
439 alertProtocol.alert(level, description);
AlertProtocol.java 21 * This class encapsulates the functionality of Alert Protocol.
29 * Defines the severity of alert as warning
33 * Defines the severity of alert as fatal
39 * Defines the description code of the close_notify alert
43 * Defines the description code of the unexpected_message alert
47 * Defines the description code of the bad_record_mac alert
51 * Defines the description code of the decryption_failed alert
55 * Defines the description code of the record_overflow alert
59 * Defines the description code of the decompression_failure alert
63 * Defines the description code of the handshake_failure alert
131 private final byte[] alert = new byte[2]; field in class:AlertProtocol
162 protected void alert(byte level, byte description) { method in class:AlertProtocol
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
NdefPushReceiverActivity.java 137 AlertDialog alert = (AlertDialog) dialog; local
138 alert.setTitle(isMatch
141 alert.setMessage(isMatch
  /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);
  /external/wpa_supplicant_8/src/tls/
tlsv1_server_write.c 759 u8 *alert, *pos, *length; local
761 wpa_printf(MSG_DEBUG, "TLSv1: Send Alert(%d:%d)", level, description);
764 alert = os_malloc(10);
765 if (alert == NULL)
768 pos = alert;
781 /* Alert */
788 *out_len = pos - alert;
790 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 766 u8 *alert, *pos, *length; local
768 wpa_printf(MSG_DEBUG, "TLSv1: Send Alert(%d:%d)", level, description);
771 alert = os_malloc(10);
772 if (alert == NULL)
775 pos = alert;
788 /* Alert */
795 *out_len = pos - alert;
797 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);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunner.java 114 @MonkeyRunnerExported(doc = "Display an alert dialog to the process running the current " +
120 "The dialog's title. The default value is 'Alert'.",
123 public static void alert(PyObject[] args, String[] kws) { method in class:MonkeyRunner
128 String title = ap.getString(1, "Alert");
131 alert(message, title, buttonTitle); method
196 * Display an alert dialog.
202 public static void alert(String message, String title, String okTitle) { method in class:MonkeyRunner
  /packages/apps/Contacts/src/com/android/contacts/
SpecialCharSequenceMgr.java 215 AlertDialog alert = new AlertDialog.Builder(context) local
227 AlertDialog alert = new AlertDialog.Builder(context) local
  /packages/apps/DeskClock/src/com/android/deskclock/
SettingsActivity.java 59 Uri alert = RingtoneManager.getActualDefaultRingtoneUri(this, local
61 if (alert != null) {
62 ringtone.setAlert(alert);
Alarm.java 59 p.writeParcelable(alert, flags);
120 * Audio alert to play when alarm triggers
123 public static final String ALERT = "alert";
136 ENABLED, VIBRATE, MESSAGE, ALERT };
165 public Uri alert; field in class:Alarm
185 alert = Uri.parse(alertString);
188 // If the database alert is null or it failed to parse, use the
189 // default alert.
190 if (alert == null)
    [all...]
  /system/netd/
BandwidthController.h 84 : ifaceName(ifn), quota(q), alert(a) {};
87 int64_t alert; member in class:BandwidthController::QuotaInfo
  /external/chromium/chrome/browser/
browser_browsertest.cc 218 ASCIIToUTF16("alert('Activate!');"));
219 AppModalDialog* alert = ui_test_utils::WaitForAppModalDialog(); local
220 alert->CloseModalDialog();
268 AppModalDialog* alert = ui_test_utils::WaitForAppModalDialog(); local
269 alert->CloseModalDialog();
295 // beforeunload dialog. Then show another alert, to make it easy to verify
299 ASCIIToUTF16("w.close(); alert('bar');"));
300 AppModalDialog* alert = ui_test_utils::WaitForAppModalDialog(); local
301 alert->native_dialog()->AcceptAppModalDialog();
303 alert = ui_test_utils::WaitForAppModalDialog()
    [all...]
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
ChromeClientHaiku.cpp 44 #include <Alert.h>
229 BAlert* alert = new BAlert("JavaScript", BString(msg).String(), "OK"); local
230 alert->Go();
235 BAlert* alert = new BAlert("JavaScript", BString(msg).String(), "Yes", "No"); local
236 return !alert->Go();

Completed in 563 milliseconds

1 2