Home
last modified time | relevance | path

Searched refs:alert (Results 1 – 25 of 168) sorted by relevance

1234567

/freebsd/sys/contrib/device-tree/src/arm64/exynos/
H A Dexynos5433-tmu.dtsi17 atlas0_alert_0: atlas0-alert-0 {
22 atlas0_alert_1: atlas0-alert-1 {
27 atlas0_alert_2: atlas0-alert-2 {
32 atlas0_alert_3: atlas0-alert-3 {
37 atlas0_alert_4: atlas0-alert-4 {
42 atlas0_alert_5: atlas0-alert-5 {
47 atlas0_alert_6: atlas0-alert-6 {
105 atlas1_alert_0: atlas1-alert-0 {
110 atlas1_alert_1: atlas1-alert-1 {
115 atlas1_alert_2: atlas1-alert-2 {
[all …]
H A Dexynos7-trip-points.dtsi10 cpu-alert-0 {
15 cpu-alert-1 {
20 cpu-alert-2 {
25 cpu-alert-3 {
30 cpu-alert-4 {
35 cpu-alert-5 {
40 cpu-alert-6 {
/freebsd/sys/contrib/device-tree/src/arm/samsung/
H A Dexynos5422-odroidxu3-common.dtsi61 cpu0_alert0: cpu-alert-0 {
66 cpu0_alert1: cpu-alert-1 {
71 cpu0_alert2: cpu-alert-2 {
81 cpu0_alert3: cpu-alert-3 {
86 cpu0_alert4: cpu-alert-4 {
144 cpu1_alert0: cpu-alert-0 {
149 cpu1_alert1: cpu-alert-1 {
154 cpu1_alert2: cpu-alert-2 {
164 cpu1_alert3: cpu-alert-3 {
169 cpu1_alert4: cpu-alert-4 {
[all …]
H A Dexynos5422-odroidhc1.dts36 cpu0_alert0: cpu-alert-0 {
41 cpu0_alert1: cpu-alert-1 {
91 cpu1_alert0: cpu-alert-0 {
96 cpu1_alert1: cpu-alert-1 {
135 cpu2_alert0: cpu-alert-0 {
140 cpu2_alert1: cpu-alert-1 {
179 cpu3_alert0: cpu-alert-0 {
184 cpu3_alert1: cpu-alert-1 {
223 gpu_alert0: gpu-alert-0 {
228 gpu_alert1: gpu-alert-1 {
H A Dexynos5420-trip-points.dtsi11 cpu-alert-0 {
16 cpu-alert-1 {
21 cpu-alert-2 {
H A Dexynos4-cpu-thermal.dtsi17 cpu_alert0: cpu-alert-0 {
22 cpu_alert1: cpu-alert-1 {
27 cpu_alert2: cpu-alert-2 {
H A Dexynos5420-arndale-octa.dts78 cpu0_alert0: cpu-alert-0 {
83 cpu0_alert1: cpu-alert-1 {
88 cpu0_alert2: cpu-alert-2 {
153 cpu1_alert0: cpu-alert-0 {
158 cpu1_alert1: cpu-alert-1 {
163 cpu1_alert2: cpu-alert-2 {
216 cpu2_alert0: cpu-alert-0 {
221 cpu2_alert1: cpu-alert-1 {
226 cpu2_alert2: cpu-alert-2 {
279 cpu3_alert0: cpu-alert-0 {
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DSSL_alert_type_string.pod5 …g, SSL_alert_desc_string, SSL_alert_desc_string_long - get textual description of alert information
20 type of the alert specified by B<value>.
22 SSL_alert_type_string_long() returns a string indicating the type of the alert
26 describing the reason of the alert specified by B<value>.
29 of the alert specified by B<value>.
34 a special situation, it sends an alert. The alert is sent as a special message
38 A warning alert is sent, when a non-fatal error condition occurs. The
39 "close notify" alert is sent as a warning alert. Other examples for
41 "unsupported certificate"), for which a warning alert may be sent.
44 alert on it discretion.
[all …]
H A DSSL_shutdown.pod16 close_notify shutdown alert to the peer.
18 SSL_shutdown() tries to send the close_notify shutdown alert to the peer.
28 shutdown alert, and reception of the peer's close_notify shutdown alert.
31 It is acceptable for an application to only send its shutdown alert and
69 to wait for the peer's close_notify alert.
74 state but not actually send the close_notify alert messages,
80 data has been received and doesn't wait for the close_notify alert
83 There are implementations that do not send the required close_notify alert.
85 that all data has been received, do not wait for the peer's close_notify alert.
86 Waiting for the close_notify alert when the peer just closes the connection
[all …]
H A DSSL_set_shutdown.pod33 A close_notify shutdown alert was sent to the peer, the connection is being
38 A shutdown alert was received form the peer, either a normal close_notify
51 alert but to not wait for the peer's answer, when the underlying connection
54 close alert to the peer (see L<SSL_shutdown(3)>).
H A DSSL_CTX_set_info_callback.pod49 an alert appears, or an error occurs.
54 If an alert is handled, SSL_CB_ALERT is set and B<ret> specifies the alert
83 Callback has been called due to an alert being sent or received.
142 BIO_printf(bio_err, "SSL3 alert %s:%s:%s\n", str,
/freebsd/contrib/wpa/src/tls/
H A Dtlsv1_record.c280 u8 *out_data, size_t *out_len, u8 *alert) in tlsv1_record_receive() argument
311 *alert = TLS_ALERT_PROTOCOL_VERSION; in tlsv1_record_receive()
319 *alert = TLS_ALERT_RECORD_OVERFLOW; in tlsv1_record_receive()
342 *alert = TLS_ALERT_UNEXPECTED_MESSAGE; in tlsv1_record_receive()
351 *alert = TLS_ALERT_INTERNAL_ERROR; in tlsv1_record_receive()
359 *alert = TLS_ALERT_DECRYPTION_FAILED; in tlsv1_record_receive()
430 *alert = TLS_ALERT_BAD_RECORD_MAC; in tlsv1_record_receive()
441 *alert = TLS_ALERT_INTERNAL_ERROR; in tlsv1_record_receive()
455 *alert = TLS_ALERT_INTERNAL_ERROR; in tlsv1_record_receive()
464 *alert = TLS_ALERT_BAD_RECORD_MAC; in tlsv1_record_receive()
[all …]
H A Dtlsv1_client.c169 u8 *msg = NULL, *in_msg = NULL, *in_pos, *in_end, alert, ct; in tlsv1_client_handshake() local
209 in_msg, &in_msg_len, &alert); in tlsv1_client_handshake()
213 tls_alert(conn, TLS_ALERT_LEVEL_FATAL, alert); in tlsv1_client_handshake()
336 u8 alert, *out_pos, ct; in tlsv1_client_decrypt() local
347 alert = TLS_ALERT_INTERNAL_ERROR; in tlsv1_client_decrypt()
361 alert = TLS_ALERT_INTERNAL_ERROR; in tlsv1_client_decrypt()
367 out_pos, &olen, &alert); in tlsv1_client_decrypt()
383 alert = TLS_ALERT_INTERNAL_ERROR; in tlsv1_client_decrypt()
395 alert = TLS_ALERT_DECODE_ERROR; in tlsv1_client_decrypt()
406 alert = out_pos[1]; in tlsv1_client_decrypt()
[all …]
H A Dtlsv1_common.c418 const u8 *pos, size_t len, u8 *alert) in tls_verify_signature() argument
427 *alert = TLS_ALERT_DECODE_ERROR; in tls_verify_signature()
433 *alert = TLS_ALERT_DECODE_ERROR; in tls_verify_signature()
445 *alert = TLS_ALERT_INTERNAL_ERROR; in tls_verify_signature()
452 *alert = TLS_ALERT_INTERNAL_ERROR; in tls_verify_signature()
459 *alert = TLS_ALERT_DECRYPT_ERROR; in tls_verify_signature()
508 *alert = TLS_ALERT_DECRYPT_ERROR; in tls_verify_signature()
518 *alert = TLS_ALERT_DECRYPT_ERROR; in tls_verify_signature()
H A Dtlsv1_server.c137 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; in tlsv1_server_handshake() local
156 in_msg, &in_msg_len, &alert); in tlsv1_server_handshake()
160 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert); in tlsv1_server_handshake()
266 u8 alert, *out_end, *out_pos, ct; in tlsv1_server_decrypt() local
278 out_pos, &olen, &alert); in tlsv1_server_decrypt()
281 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert); in tlsv1_server_decrypt()
288 tlsv1_server_alert(conn, TLS_ALERT_LEVEL_FATAL, alert); in tlsv1_server_decrypt()
/freebsd/sys/contrib/device-tree/Bindings/power/supply/
H A Dmax17040_battery.txt11 - maxim,alert-low-soc-level : The alert threshold that sets the state of
28 property to use alert low SOC level interrupt
31 Optional properties support interrupt functionality for alert low state of
40 maxim,alert-low-soc-level = <10>;
50 maxim,alert-low-soc-level = <10>;
H A Dmicrochip,ucs1002.txt13 - "alert" for line connected to ALERT# pin
25 interrupt-names = "a_det", "alert";
/freebsd/crypto/openssl/test/recipes/
H A D70-test_tls13alerts.t43 my $alert = TLSProxy::Message->alert();
44 ok(TLSProxy::Message->fail() && !$alert->server() && !$alert->encrypted(), "Client sends an unecryp…
H A D70-test_tls13downgrade.t72 my $alert = TLSProxy::Message->alert();
74 && !$alert->server()
75 && $alert->description() == TLSProxy::Message::AL_DESC_ILLEGAL_PARAMETER,
/freebsd/crypto/openssl/test/ssl-tests/
H A D09-alpn.cnf8 test-3 = 3-alpn-alert-on-mismatch
18 test-13 = 13-alpn-alert-on-mismatch-resumption
118 [3-alpn-alert-on-mismatch]
119 ssl_conf = 3-alpn-alert-on-mismatch-ssl
121 [3-alpn-alert-on-mismatch-ssl]
122 server = 3-alpn-alert-on-mismatch-server
123 client = 3-alpn-alert-on-mismatch-client
125 [3-alpn-alert-on-mismatch-server]
130 [3-alpn-alert-on-mismatch-client]
138 server = 3-alpn-alert-on-mismatch-server-extra
[all …]
/freebsd/libexec/bootpd/
H A Dsyslog.conf25 *.alert;kern.err;daemon.err;user.none operator
26 *.alert;user.none root
48 user.alert /var/log/syslog
/freebsd/sys/contrib/device-tree/src/arm/aspeed/
H A Daspeed-bmc-ufispace-ncplite.dts50 psu0-alert-n {
51 label = "psu0-alert-n";
56 psu1-alert-n {
57 label = "psu1-alert-n";
62 int-thermal-alert {
63 label = "int-thermal-alert";
/freebsd/sys/contrib/device-tree/Bindings/hwmon/
H A Dmax6697.txt30 - alert-mask
33 If not specified, alert will be enabled for all channels.
62 alert-mask = <0x72>;
/freebsd/crypto/openssl/util/perl/TLSProxy/
H A DMessage.pm148 my $alert;
161 $alert = undef;
291 $alert = TLSProxy::Alert->new(
422 sub alert subroutine
424 return $alert;
/freebsd/sys/contrib/device-tree/src/arm64/ti/
H A Dk3-am62-thermal.dtsi15 main0_alert: main0-alert {
46 main1_alert: main1-alert {

1234567