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/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 61 AlertDialog alert = builder.create(); local
62 alert.show();
  /packages/apps/Phone/src/com/android/phone/
SpecialCharSequenceMgr.java 233 AlertDialog alert = new AlertDialog.Builder(context) local
239 alert.getWindow().setType(WindowManager.LayoutParams.TYPE_PRIORITY_PHONE);
240 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...]
HandshakeProtocol.java 190 * process and no_renegotiation alert message is received
293 * Sends fatal alert, breaks execution
298 recordProtocol.alert(AlertProtocol.WARNING, description);
302 * Sends fatal alert, breaks execution
312 * Sends fatal alert, breaks execution
323 * Sends fatal alert, breaks execution
427 * Sends fatal alert "UNEXPECTED MESSAGE"
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
AlertDialogTest.java 36 AlertDialog alert = builder.create(); local
37 alert.show();
39 assertThat(alert.isShowing(), equalTo(true));
41 ShadowAlertDialog shadowAlertDialog = shadowOf(alert);
46 assertThat(ShadowAlertDialog.getLatestAlertDialog(), sameInstance(alert));
80 AlertDialog alert = builder.create(); local
82 ShadowAlertDialog shadowAlertDialog = shadowOf(alert);
97 AlertDialog alert = builder.create(); local
98 ShadowAlertDialog shadowAlertDialog = shadowOf(alert);
109 AlertDialog alert = builder.create() local
120 AlertDialog alert = builder.create(); local
216 AlertDialog alert = builder.create(); local
259 AlertDialog alert = builder.create(); local
289 AlertDialog alert = builder.create(); local
308 AlertDialog alert = builder.create(); local
334 AlertDialog alert = builder.create(); local
    [all...]
  /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_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...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PresentationActivity.java 263 AlertDialog alert = builder local
275 alert.show();
  /system/netd/
BandwidthController.h 93 : ifaceName(ifn), quota(q), alert(a) {};
96 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();
  /external/wpa_supplicant_8/src/crypto/
tls.h 67 } alert; member in union:tls_event_data
341 * TLS library has a TLS alert to send out, that should be returned as the
486 * tls_connection_get_read_alerts - Get connection read alert status
495 * tls_connection_get_write_alerts - Get connection write alert status
  /packages/apps/DeskClock/src/com/android/deskclock/
Alarm.java 61 p.writeParcelable(alert, flags);
122 * Audio alert to play when alarm triggers
125 public static final String ALERT = "alert";
138 ENABLED, VIBRATE, MESSAGE, ALERT };
167 public Uri alert; field in class:Alarm
173 "alert=" + alert +
203 alert = Uri.parse(alertString);
206 // If the database alert is null or it failed to parse, use th
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/
SpecialCharSequenceMgr.java 286 AlertDialog alert = new AlertDialog.Builder(context) local
298 AlertDialog alert = new AlertDialog.Builder(context) local

Completed in 1073 milliseconds

1 2