HomeSort by relevance Sort by last modified time
    Searched refs:alert (Results 101 - 125 of 306) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/boringssl/src/ssl/
d1_pkt.cc 163 *out_alert = 0; // TODO(davidben): Send an alert?
261 // If the alert is fatal, flush the BIO now.
268 int alert = (ssl->s3->send_alert[0] << 8) | ssl->s3->send_alert[1]; local
269 ssl_do_info_callback(ssl, SSL_CB_WRITE_ALERT, alert);
custom_extensions.cc 85 int alert = SSL_AD_DECODE_ERROR; local
88 switch (ext->add_callback(ssl, ext->value, &contents, &contents_len, &alert,
117 ssl_send_alert(ssl, SSL3_AL_FATAL, alert);
ssl_buffer.cc 188 size_t consumed, uint8_t alert) {
218 if (alert != 0) {
219 ssl_send_alert(ssl, SSL3_AL_FATAL, alert);
handshake_server.cc 477 uint8_t alert = SSL_AD_DECODE_ERROR; local
478 if (!negotiate_version(hs, &alert, &client_hello)) {
479 ssl_send_alert(ssl, SSL3_AL_FATAL, alert);
661 uint8_t alert = SSL_AD_DECODE_ERROR; local
662 if (!ssl_negotiate_alpn(hs, &alert, &client_hello)) {
663 ssl_send_alert(ssl, SSL3_AL_FATAL, alert);
990 uint8_t alert = SSL_AD_DECODE_ERROR; local
1190 uint8_t alert = SSL_AD_DECODE_ERROR; local
1299 uint8_t alert = SSL_AD_DECODE_ERROR; local
    [all...]
tls13_both.cc 176 uint8_t alert = SSL_AD_DECODE_ERROR; local
177 if (!ssl_parse_extensions(&extensions, &alert, ext_types,
180 ssl_send_alert(ssl, SSL3_AL_FATAL, alert);
293 uint8_t alert = SSL_AD_DECODE_ERROR; local
294 if (!tls12_check_peer_sigalg(ssl, &alert, signature_algorithm)) {
295 ssl_send_alert(ssl, SSL3_AL_FATAL, alert);
tls13_server.cc 77 uint8_t alert = SSL_AD_DECODE_ERROR; local
79 &alert, &key_share)) {
80 ssl_send_alert(ssl, SSL3_AL_FATAL, alert);
248 uint8_t alert = SSL_AD_DECODE_ERROR; local
249 if (!ssl_negotiate_alpn(hs, &alert, &client_hello)) {
250 ssl_send_alert(ssl, SSL3_AL_FATAL, alert);
368 uint8_t alert = SSL_AD_DECODE_ERROR; local
370 switch (select_session(hs, &alert, &session, &ssl->s3->ticket_age_skew, msg,
416 ssl_send_alert(ssl, SSL3_AL_FATAL, alert);
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
DecimalQuantityTest.java 420 String alert = "UNEXPECTED FAILURE: PLEASE REPORT THIS MESSAGE TO THE ICU TEAM: "; local
425 checkDoubleBehavior(d, false, alert);
429 private static void checkDoubleBehavior(double d, boolean explicitRequired, String alert) {
432 assertTrue(alert + "Should be using approximate double", !fq.explicitExactDouble);
434 assertEquals(alert + "Initial construction from hard double", d, fq.toDouble());
437 assertTrue(alert + "Should not be using approximate double", fq.explicitExactDouble);
439 assertDoubleEquals(alert + "After conversion to exact BCD (double)", d, fq.toDouble());
441 alert + "After conversion to exact BCD (BigDecimal)",
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
DecimalQuantityTest.java 417 String alert = "UNEXPECTED FAILURE: PLEASE REPORT THIS MESSAGE TO THE ICU TEAM: "; local
422 checkDoubleBehavior(d, false, alert);
426 private static void checkDoubleBehavior(double d, boolean explicitRequired, String alert) {
429 assertTrue(alert + "Should be using approximate double", !fq.explicitExactDouble);
431 assertEquals(alert + "Initial construction from hard double", d, fq.toDouble());
434 assertTrue(alert + "Should not be using approximate double", fq.explicitExactDouble);
436 assertDoubleEquals(alert + "After conversion to exact BCD (double)", d, fq.toDouble());
438 alert + "After conversion to exact BCD (BigDecimal)",
  /external/adhd/cras/src/tests/
system_state_unittest.cc 397 void cras_alert_destroy(struct cras_alert *alert)
401 int cras_alert_add_callback(struct cras_alert *alert, cras_alert_cb cb,
410 int cras_alert_rm_callback(struct cras_alert *alert, cras_alert_cb cb,
419 void cras_alert_pending(struct cras_alert *alert)
  /external/autotest/server/cros/ap_configurators/
linksyse2000_ap_configurator.py 17 def _sec_alert(self, alert):
18 text = alert.text
20 alert.accept()
22 alert.accept()
24 raise RuntimeError('Unhandled alert : %s' % text)
217 # WEP and WPA-Personal do not show up in the list, no alert is thrown.
asus_ap_configurator.py 33 def _invalid_security_handler(self, alert):
34 text = alert.text
37 alert.accept()
belkin_ap_configurator.py 23 def _security_alert(self, alert):
24 text = alert.text
26 alert.accept()
28 raise RuntimeError('Unhandled alert: %s', text)
edimax_ap_configurator.py 220 def _alert_handler(self, alert):
221 """Checks for any modal dialogs which popup to alert the user and
222 either raises a RuntimeError or ignores the alert.
224 @param alert: The modal dialog's contents.
226 text = alert.text
228 alert.accept()
trendnet_ap_configurator.py 20 def _alert_handler(self, alert):
21 """Checks for any modal dialogs which popup to alert the user and
22 either raises a RuntimeError or ignores the alert.
25 alert: The modal dialog's contents.
27 text = alert.text
29 alert.accept()
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogAlertManager.java 24 import com.android.dialer.app.alert.AlertManager;
  /system/libufdt/tests/
run_performance_test.sh 86 alert "========== Running Performance Tests =========="
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapConnection.java 348 final String alert = response.getAlertTextOrEmpty().getString(); local
354 throw new MessagingException(MessagingException.SERVER_ERROR, alert);
357 throw new ImapException(toString, status, alert, responseCode);
573 final String alert = response.getAlertTextOrEmpty().getString(); local
574 throw new MessagingException(MessagingException.SERVER_ERROR, alert);
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/mac/
APPRTCViewController.m 294 NSAlert* alert = [[NSAlert alloc] init];
295 [alert setMessageText:message];
296 [alert runModal];
  /external/replicaisland/tools/
ExtractPoints.js 61 alert("Path has no sub items!");
94 alert("Zero length normal calculated at path " + pathIndex);
99 alert("Normal of invalid length (" + normalLength2 + ") found at path " + pathIndex);
  /external/syslinux/gpxe/src/hci/tui/
settings_ui.c 99 static void alert ( const char *fmt, ... ) __nonnull;
271 * Print alert message
286 * Print alert message
291 static void alert ( const char *fmt, ... ) { function
371 alert ( " Could not set %s: %s ",
  /frameworks/base/cmds/statsd/src/anomaly/
AnomalyTracker.h 28 #include "frameworks/base/cmds/statsd/src/statsd_config.pb.h" // Alert
41 AnomalyTracker(const Alert& alert, const ConfigKey& configKey);
45 // Add subscriptions that depend on this alert.
69 // Informs incidentd about the detected alert.
123 // statsd_config.proto Alert message that defines this tracker.
124 const Alert mAlert;
126 // The subscriptions that depend on this alert.
129 // A reference to the Alert's config key.
  /frameworks/base/cmds/statsd/src/metrics/
DurationMetricProducer.h 49 sp<AnomalyTracker> addAnomalyTracker(const Alert &alert,
  /prebuilts/go/darwin-x86/src/html/template/
example_test.go 93 err = t.ExecuteTemplate(os.Stdout, "T", "<script>alert('you have been pwned')</script>")
96 // Hello, &lt;script&gt;alert(&#39;you have been pwned&#39;)&lt;/script&gt;!
  /prebuilts/go/linux-x86/src/html/template/
example_test.go 93 err = t.ExecuteTemplate(os.Stdout, "T", "<script>alert('you have been pwned')</script>")
96 // Hello, &lt;script&gt;alert(&#39;you have been pwned&#39;)&lt;/script&gt;!
  /system/netd/server/
BandwidthController.h 75 int64_t alert; member in struct:BandwidthController::QuotaInfo

Completed in 523 milliseconds

1 2 3 45 6 7 8 91011>>