HomeSort by relevance Sort by last modified time
    Searched refs:alert (Results 76 - 100 of 209) sorted by null

1 2 34 5 6 7 8 9

  /external/autotest/server/cros/ap_configurators/
netgear_single_band_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
28 raise RuntimeError('We have an unhandeled alert. %s' % text)
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()
linksys_ap_configurator.py 19 def _sec_alert(self, alert):
20 text = alert.text
24 raise RuntimeError('Unhandled alert message: %s' % text)
  /external/chromium-trace/catapult/dashboard/dashboard/
add_point_queue.py 278 has been previously marked as deprecated or associated with a stoppage alert,
318 alert = existing.stoppage_alert.get()
319 if alert:
320 alert.recovered = True
321 alert.put()
323 logging.warning('Stoppage alert %s not found.', existing.stoppage_alert)
file_bug.py 20 from dashboard.models import alert namespace
50 keys: Comma-separated Alert keys in urlsafe format.
89 urlsafe_keys: Comma-separated Alert keys in urlsafe format.
111 urlsafe_keys: Comma-separated alert keys in urlsafe format.
165 bot_names = alert.GetBotNamesFromAlerts(alerts)
167 comment += '\n\nBot(s) for this bug\'s original alert(s):\n\n'
186 """Fetches a list of bug labels and components for the given Alert keys."""
190 sheriff_keys = set(alert.sheriff for alert in alerts)
group_report_test.py 93 # but not the non-overlapping alert.
141 alert = stoppage_alert.CreateStoppageAlert(test_keys[0].get(), row)
142 alert.bug_id = 123
143 alert.put()
dump_graph_json.py 78 sheriff_keys = {alert.sheriff for alert in alerts}
  /external/boringssl/src/ssl/
custom_extensions.c 84 int alert = SSL_AD_DECODE_ERROR; local
87 switch (ext->add_callback(ssl, ext->value, &contents, &contents_len, &alert,
116 ssl3_send_alert(ssl, SSL3_AL_FATAL, alert);
d1_pkt.c 152 uint8_t type, alert; local
154 switch (dtls_open_record(ssl, &type, out, &len, &consumed, &alert, max_out,
175 ssl3_send_alert(ssl, SSL3_AL_FATAL, alert);
234 * Alert records (e.g. close_notify) and out of records. */
341 /* If an alert record, process one alert out of the record. Note that we allow
367 uint16_t alert = (alert_level << 8) | alert_descr; local
368 cb(ssl, SSL_CB_READ_ALERT, alert);
384 ERR_add_error_data(2, "SSL alert number ", tmp);
503 /* If we have an alert to send, lets send it *
    [all...]
  /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);
  /packages/apps/DeskClock/src/com/android/deskclock/
HandleApiCalls.java 297 final String alert = intent.getStringExtra(AlarmClock.EXTRA_RINGTONE); local
305 if (alert != null) {
306 if (AlarmClock.VALUE_RINGTONE_SILENT.equals(alert) || alert.isEmpty()) {
307 alarm.alert = Alarm.NO_RINGTONE_URI;
309 alarm.alert = Uri.parse(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);
  /cts/tests/tests/security/src/android/security/cts/
OpenSSLEarlyCCSTest.java 66 // aborting the TLS handshake with an unexpected_message fatal alert.
139 // to abort the handshake immediately with unexpected_message alert.
153 if (firstRecordReceivedAfterCCSWasInjected.protocol == TlsProtocols.ALERT) {
154 AlertMessage alert = AlertMessage.tryParse(firstRecordReceivedAfterCCSWasInjected); local
155 if ((alert != null)
156 && (alert.level == AlertMessage.LEVEL_FATAL)
157 && (alert.description == AlertMessage.DESCRIPTION_UNEXPECTED_MESSAGE)) {
458 case TlsProtocols.ALERT:
459 return "alert";
477 case TlsProtocols.ALERT
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/sms/
CdmaSmsTest.java 279 assertEquals(bearerData.alert, BearerData.ALERT_HIGH_PRIO);
326 assertEquals(bearerData.alert, BearerData.ALERT_HIGH_PRIO);
    [all...]
  /developers/build/prebuilts/gradle/WatchFace/Application/src/main/java/com/example/android/wearable/watchface/
DigitalWatchFaceCompanionConfigActivity.java 146 AlertDialog alert = builder.create(); local
147 alert.show();
  /developers/samples/android/wearable/wear/WatchFace/Application/src/main/java/com/example/android/wearable/watchface/
DigitalWatchFaceCompanionConfigActivity.java 146 AlertDialog alert = builder.create(); local
147 alert.show();
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CameraPreview.java 123 AlertDialog alert = builder.create(); local
124 alert.show();
  /development/samples/browseable/WatchFace/Application/src/com.example.android.wearable.watchface/
DigitalWatchFaceCompanionConfigActivity.java 146 AlertDialog alert = builder.create(); local
147 alert.show();
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
ScriptEditor.java 278 AlertDialog.Builder alert = new AlertDialog.Builder(this); local
280 alert.setCancelable(false);
281 alert.setTitle("Confirm exit");
282 alert.setMessage("Would you like to save?");
283 alert.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
289 alert.setNegativeButton("No", new DialogInterface.OnClickListener() {
294 alert.setNeutralButton("Cancel", new DialogInterface.OnClickListener() {
298 alert.show();
  /external/wpa_supplicant_8/src/tls/
tlsv1_server.c 137 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; local
156 in_msg, &in_msg_len, &alert);
160 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
167 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
197 /* Avoid alert loops */
198 wpa_printf(MSG_DEBUG, "TLSv1: Drop alert loop");
264 u8 alert, *out_end, *out_pos, ct; local
276 out_pos, &olen, &alert);
279 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
286 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
    [all...]

Completed in 1235 milliseconds

1 2 34 5 6 7 8 9