HomeSort by relevance Sort by last modified time
    Searched defs:alert (Results 1 - 25 of 42) 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/exchange2/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();
  /hardware/ti/wpan/tools/FM/FmRxApp/src/com/ti/fmrxapp/
FmPresetList.java 142 AlertDialog.Builder alert = new AlertDialog.Builder(this); local
144 alert.setTitle("Rename");
145 alert.setMessage("Rename Station?");
149 alert.setView(input);
151 alert.setPositiveButton("Ok",
161 alert.setNegativeButton("Cancel",
169 alert.show();
  /packages/apps/Nfc/src/com/android/nfc/handover/
ConfirmConnectActivity.java 45 AlertDialog alert = builder.create(); local
46 alert.show();
  /packages/apps/Phone/src/com/android/phone/
SpecialCharSequenceMgr.java 229 AlertDialog alert = new AlertDialog.Builder(context) local
235 alert.getWindow().setType(WindowManager.LayoutParams.TYPE_PRIORITY_PHONE);
236 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...]
  /packages/apps/Settings/src/com/android/settings/
DreamComponentPreference.java 209 AlertDialog alert = new AlertDialog.Builder(getContext()) local
234 alert.show();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
NdefPushReceiverActivity.java 141 AlertDialog alert = (AlertDialog) dialog; local
142 alert.setTitle(isMatch
145 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 768 u8 *alert, *pos, *length; local
770 wpa_printf(MSG_DEBUG, "TLSv1: Send Alert(%d:%d)", level, description);
773 alert = os_malloc(10);
774 if (alert == NULL)
777 pos = alert;
791 /* Alert */
798 *out_len = pos - alert;
800 return alert;
tlsv1_client.c 145 u8 *msg = NULL, *in_msg = NULL, *in_pos, *in_end, alert, ct; local
185 in_msg, &in_msg_len, &alert);
189 tls_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
312 u8 alert, *out_pos, ct; local
323 alert = TLS_ALERT_INTERNAL_ERROR;
337 alert = TLS_ALERT_INTERNAL_ERROR;
343 out_pos, &olen, &alert);
359 alert = TLS_ALERT_INTERNAL_ERROR;
369 wpa_printf(MSG_DEBUG, "TLSv1: Alert "
371 alert = TLS_ALERT_DECODE_ERROR
    [all...]
tlsv1_client_write.c 833 u8 *alert, *pos, *length; local
835 wpa_printf(MSG_DEBUG, "TLSv1: Send Alert(%d:%d)", level, description);
838 alert = os_malloc(10);
839 if (alert == NULL)
842 pos = alert;
856 /* Alert */
863 *out_len = pos - alert;
865 return alert;
tlsv1_server.c 112 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; local
131 in_msg, &in_msg_len, &alert);
135 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
142 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
172 /* Avoid alert loops */
173 wpa_printf(MSG_DEBUG, "TLSv1: Drop alert loop");
239 u8 alert, *out_end, *out_pos, ct; local
251 out_pos, &olen, &alert);
255 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
262 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
    [all...]
  /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/DeskClock/src/com/android/deskclock/
SettingsActivity.java 59 Uri alert = RingtoneManager.getActualDefaultRingtoneUri(this, local
61 if (alert != null) {
62 ringtone.setAlert(alert);
  /system/netd/
BandwidthController.h 87 : ifaceName(ifn), quota(q), alert(a) {};
90 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...]

Completed in 659 milliseconds

1 2