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

1 2 3 4 5 6 7

  /libcore/crypto/src/main/java/org/conscrypt/
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
161 protected void alert(byte level, byte description) { method in class:AlertProtocol
    [all...]
  /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/chromium_org/chrome/browser/extensions/
alert_apitest.cc 18 ASSERT_TRUE(RunExtensionTest("alert")) << message_;
26 ASCIIToUTF16("alert('This should not crash.');"));
28 AppModalDialog* alert = ui_test_utils::WaitForAppModalDialog(); local
29 ASSERT_TRUE(alert);
30 alert->CloseModalDialog();
  /external/chromium_org/net/data/proxy_resolver_v8_tracing_unittest/
too_many_empty_alerts.js 9 alert('');
error.js 3 alert('Prepare to DIE!');
global_sideffects1.js 11 alert('iteration: ' + g_iteration);
global_sideffects3.js 11 alert('iteration: ' + g_iteration);
global_sideffects4.js 13 alert('iteration: ' + g_iteration);
too_many_alerts.js 9 alert('Gee, all these alerts are silly!');
dns_during_init.js 6 alert('Watsup');
7 alert('Watsup2');
dns.js 4 alert('iteration: ' + g_iteration++);
  /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...]
  /external/chromium/net/data/proxy_resolver_v8_unittest/
bindings.js 33 // Call alert with some wonky arguments.
34 alert();
35 alert(null);
36 alert(undefined);
37 alert({foo:'bar'});
40 // to alert in the bindings.
42 alert(new MyObject());
44 alert(e);
  /external/chromium-libpac/test/js-unittest/
bindings.js 33 // Call alert with some wonky arguments.
34 alert();
35 alert(null);
36 alert(undefined);
37 alert({foo:'bar'});
40 // to alert in the bindings.
42 alert(new MyObject());
44 alert(e);
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
bindings.js 33 // Call alert with some wonky arguments.
34 alert();
35 alert(null);
36 alert(undefined);
37 alert({foo:'bar'});
40 // to alert in the bindings.
42 alert(new MyObject());
44 alert(e);
terminate.js 15 alert("hahaha");
24 alert("uhm...");
  /external/chromium_org/third_party/tlslite/tlslite/
errors.py 16 The TLS specification mandates that an alert of some sort
25 """A TLS alert has been signalled."""
57 """A TLS alert has been signalled by the local implementation.
70 def __init__(self, alert, message=None):
71 self.description = alert.description
72 self.level = alert.level
85 """A TLS alert has been signalled by the remote implementation.
95 def __init__(self, alert):
96 self.description = alert.description
97 self.level = alert.leve
    [all...]
  /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...]
  /packages/apps/Email/emailsync/src/com/android/emailsync/
MailboxAlarmReceiver.java 38 SyncManager.alert(context, mailboxId);
  /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();
  /external/wpa_supplicant_8/src/tls/
tlsv1_record.c 271 * @alert: Buffer for returning an alert value on failure
280 u8 *out_data, size_t *out_len, u8 *alert)
311 *alert = TLS_ALERT_PROTOCOL_VERSION;
319 *alert = TLS_ALERT_RECORD_OVERFLOW;
342 *alert = TLS_ALERT_UNEXPECTED_MESSAGE;
351 *alert = TLS_ALERT_INTERNAL_ERROR;
359 *alert = TLS_ALERT_DECRYPTION_FAILED;
368 * TLS v1.0 defines different alert values for various
370 * use the same bad_record_mac alert regardless of th
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/provider/
Alarm.java 92 if (alarm.alert == null) {
96 values.put(RINGTONE, alarm.alert.toString());
227 public Uri alert; field in class:Alarm
242 this.alert = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM);
259 alert = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM);
261 alert = Uri.parse(c.getString(RINGTONE_INDEX));
273 alert = (Uri) p.readParcelable(null);
292 p.writeParcelable(alert, flags);
324 result.mRingtone = alert;
343 "alert=" + alert
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/permissions/extension-questions/
options.js 23 alert('You already have SO host permission!');
42 alert('No SO host permission found.');
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/email_this_page/
options.js 9 alert('Local storage is required for changing providers');
21 alert("LocalStorage must be enabled for changing options.");
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmap.java 113 AlertDialog alert = builder.create(); local
114 alert.show();

Completed in 5980 milliseconds

1 2 3 4 5 6 7