Home
last modified time | relevance | path

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

12

/openbsd/src/lib/libssl/
Dssl_tlsext.c90 tlsext_alpn_server_process(SSL *s, uint16_t msg_type, CBS *cbs, int *alert) in tlsext_alpn_server_process() argument
119 *alert = SSL_AD_INTERNAL_ERROR; in tlsext_alpn_server_process()
130 *alert = SSL_AD_NO_APPLICATION_PROTOCOL; in tlsext_alpn_server_process()
164 tlsext_alpn_client_process(SSL *s, uint16_t msg_type, CBS *cbs, int *alert) in tlsext_alpn_client_process() argument
169 *alert = SSL_AD_UNSUPPORTED_EXTENSION; in tlsext_alpn_client_process()
232 int *alert) in tlsext_supportedgroups_server_process() argument
256 *alert = SSL_AD_HANDSHAKE_FAILURE; in tlsext_supportedgroups_server_process()
272 *alert = SSL_AD_INTERNAL_ERROR; in tlsext_supportedgroups_server_process()
287 *alert = SSL_AD_ILLEGAL_PARAMETER; in tlsext_supportedgroups_server_process()
325 int *alert) in tlsext_supportedgroups_client_process() argument
[all …]
Dtls13_server.c182 ctx->alert = TLS13_ALERT_ILLEGAL_PARAMETER; in tls13_client_hello_process()
188 ctx->alert = TLS13_ALERT_INTERNAL_ERROR; in tls13_client_hello_process()
193 ctx->alert = TLS13_ALERT_INTERNAL_ERROR; in tls13_client_hello_process()
197 ctx->alert = TLS13_ALERT_INTERNAL_ERROR; in tls13_client_hello_process()
201 ctx->alert = TLS13_ALERT_INTERNAL_ERROR; in tls13_client_hello_process()
205 ctx->alert = TLS13_ALERT_INTERNAL_ERROR; in tls13_client_hello_process()
209 ctx->alert = TLS13_ALERT_INTERNAL_ERROR; in tls13_client_hello_process()
214 ctx->alert = alert_desc; in tls13_client_hello_process()
221 ctx->alert = TLS13_ALERT_INTERNAL_ERROR; in tls13_client_hello_process()
226 ctx->alert = TLS13_ALERT_ILLEGAL_PARAMETER; in tls13_client_hello_process()
[all …]
Dtls13_lib.c117 uint8_t alert[] = {alert_level, alert_desc}; in tls13_legacy_alert_cb() local
125 CBS_init(&cbs, alert, sizeof(alert)); in tls13_legacy_alert_cb()
245 ctx->alert = TLS13_ALERT_INTERNAL_ERROR; in tls13_legacy_ocsp_status_recv_cb()
250 ctx->alert = TLS13_ALERT_BAD_CERTIFICATE_STATUS_RESPONSE; in tls13_legacy_ocsp_status_recv_cb()
324 uint8_t alert = TLS13_ALERT_INTERNAL_ERROR; in tls13_key_update_recv() local
329 alert = TLS13_ALERT_DECODE_ERROR; in tls13_key_update_recv()
333 alert = TLS13_ALERT_DECODE_ERROR; in tls13_key_update_recv()
337 alert = TLS13_ALERT_ILLEGAL_PARAMETER; in tls13_key_update_recv()
369 return tls13_send_alert(ctx->rl, alert); in tls13_key_update_recv()
381 int alert, session_id_length; in tls13_new_session_ticket_recv() local
[all …]
Dtls13_client.c244 ctx->alert = TLS13_ALERT_ILLEGAL_PARAMETER; in tls13_server_hello_process()
269 ctx->alert = alert_desc; in tls13_server_hello_process()
280 ctx->alert = TLS13_ALERT_PROTOCOL_VERSION; in tls13_server_hello_process()
289 ctx->alert = TLS13_ALERT_ILLEGAL_PARAMETER; in tls13_server_hello_process()
299 ctx->alert = TLS13_ALERT_ILLEGAL_PARAMETER; in tls13_server_hello_process()
303 ctx->alert = TLS13_ALERT_ILLEGAL_PARAMETER; in tls13_server_hello_process()
312 ctx->alert = TLS13_ALERT_ILLEGAL_PARAMETER; in tls13_server_hello_process()
319 ctx->alert = TLS13_ALERT_ILLEGAL_PARAMETER; in tls13_server_hello_process()
326 if (ctx->alert == 0) in tls13_server_hello_process()
327 ctx->alert = TLS13_ALERT_DECODE_ERROR; in tls13_server_hello_process()
[all …]
Dssl_tlsext.h38 int tlsext_client_parse(SSL *s, uint16_t msg_type, CBS *cbs, int *alert);
41 int tlsext_server_parse(SSL *s, uint16_t msg_type, CBS *cbs, int *alert);
Dt1_lib.c124 static int tls_decrypt_ticket(SSL *s, CBS *ticket, int *alert,
889 tls1_process_ticket(SSL *s, CBS *ext_block, int *alert, SSL_SESSION **ret) in tls1_process_ticket() argument
912 *alert = SSL_AD_DECODE_ERROR; in tls1_process_ticket()
919 *alert = SSL_AD_DECODE_ERROR; in tls1_process_ticket()
949 return tls_decrypt_ticket(s, &ext_data, alert, ret); in tls1_process_ticket()
964 tls_decrypt_ticket(SSL *s, CBS *ticket, int *alert, SSL_SESSION **psess) in tls_decrypt_ticket() argument
1108 *alert = alert_desc; in tls_decrypt_ticket()
Dtls13_record_layer.c90 uint8_t alert; member
543 rl->alert = TLS13_ALERT_RECORD_OVERFLOW; in tls13_record_layer_open_record_plaintext()
588 rl->alert = TLS13_ALERT_RECORD_OVERFLOW; in tls13_record_layer_open_record_protected()
608 rl->alert = TLS13_ALERT_UNEXPECTED_MESSAGE; in tls13_record_layer_open_record_protected()
612 rl->alert = TLS13_ALERT_RECORD_OVERFLOW; in tls13_record_layer_open_record_protected()
1018 if (rl->alert != 0) in tls13_record_layer_peek()
1019 return tls13_send_alert(rl, rl->alert); in tls13_record_layer_peek()
1034 if (rl->alert != 0) in tls13_record_layer_read()
1035 return tls13_send_alert(rl, rl->alert); in tls13_record_layer_read()
Dtls13_handshake.c406 if (ctx->alert != 0) in tls13_handshake_perform()
407 return tls13_send_alert(ctx->rl, ctx->alert); in tls13_handshake_perform()
414 if (ctx->alert != 0) in tls13_handshake_perform()
415 return tls13_send_alert(ctx->rl, ctx->alert); in tls13_handshake_perform()
555 ctx->alert = TLS13_ALERT_DECODE_ERROR; in tls13_handshake_recv_action()
Dtls13_legacy.c536 tls13_legacy_servername_process(struct tls13_ctx *ctx, uint8_t *alert) in tls13_legacy_servername_process() argument
558 *alert = legacy_alert; in tls13_legacy_servername_process()
Dtls13_internal.h293 uint8_t alert; member
339 int tls13_legacy_servername_process(struct tls13_ctx *ctx, uint8_t *alert);
Dssl_sess.c638 ssl_get_prev_session(SSL *s, CBS *session_id, CBS *ext_block, int *alert) in ssl_get_prev_session() argument
736 *alert = alert_desc; in ssl_get_prev_session()
/openbsd/src/regress/lib/libssl/tlsext/
Dtlsexttest.c33 int (*process)(SSL *s, uint16_t msg_type, CBS *cbs, int *alert);
168 int failure, alert; in test_tlsext_alpn_client() local
241 if (!server_funcs->process(ssl, SSL_TLSEXT_MSG_CH, &cbs, &alert)) { in test_tlsext_alpn_client()
308 if (!server_funcs->process(ssl, SSL_TLSEXT_MSG_CH, &cbs, &alert)) { in test_tlsext_alpn_client()
369 int failure, alert; in test_tlsext_alpn_server() local
445 if (client_funcs->process(ssl, SSL_TLSEXT_MSG_SH, &cbs, &alert)) { in test_tlsext_alpn_server()
456 if (!client_funcs->process(ssl, SSL_TLSEXT_MSG_SH, &cbs, &alert)) { in test_tlsext_alpn_server()
558 int failure, alert; in test_tlsext_supportedgroups_client() local
669 if (!server_funcs->process(ssl, SSL_TLSEXT_MSG_CH, &cbs, &alert)) { in test_tlsext_supportedgroups_client()
775 if (!server_funcs->process(ssl, SSL_TLSEXT_MSG_CH, &cbs, &alert)) { in test_tlsext_supportedgroups_client()
[all …]
/openbsd/src/sys/dev/pci/drm/amd/pm/powerplay/hwmgr/
Dsmu7_thermal.c374 uint32_t alert; in smu7_thermal_enable_alert() local
376 alert = PHM_READ_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC, in smu7_thermal_enable_alert()
378 alert &= ~(SMU7_THERMAL_HIGH_ALERT_MASK | SMU7_THERMAL_LOW_ALERT_MASK); in smu7_thermal_enable_alert()
380 CG_THERMAL_INT, THERM_INT_MASK, alert); in smu7_thermal_enable_alert()
392 uint32_t alert; in smu7_thermal_disable_alert() local
394 alert = PHM_READ_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC, in smu7_thermal_disable_alert()
396 alert |= (SMU7_THERMAL_HIGH_ALERT_MASK | SMU7_THERMAL_LOW_ALERT_MASK); in smu7_thermal_disable_alert()
398 CG_THERMAL_INT, THERM_INT_MASK, alert); in smu7_thermal_disable_alert()
/openbsd/src/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
Dcharset.c62 char alert, char backspace, char form_feed, in init_string() argument
67 string[0] = alert; in init_string()
/openbsd/src/usr.bin/tmux/
Dsession.c409 session_next(struct session *s, int alert) in session_next() argument
417 if (alert) in session_next()
421 if (alert && ((wl = session_next_alert(wl)) == NULL)) in session_next()
440 session_previous(struct session *s, int alert) in session_previous() argument
448 if (alert) in session_previous()
452 if (alert && (wl = session_previous_alert(wl)) == NULL) in session_previous()
/openbsd/src/regress/lib/libssl/interop/botan/
Dclient.cpp100 void tls_alert(Botan::TLS::Alert alert) override in tls_alert() argument
102 errx(1, "alert: %s", alert.type_string().c_str()); in tls_alert()
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/EventFacet/
DTrace.pm60 sub alert { subroutine
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/Util/
DTrace.t32 warnings { $one->alert('I cried') },
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/EventFacet/
DTrace.t34 warnings { $one->alert('I cried') },
/openbsd/src/gnu/usr.bin/binutils/gdb/osf-share/
Dcma_tcb_defs.h253 cma__t_int_alert alert; /* Current alert state info */ member
/openbsd/src/gnu/usr.bin/perl/cpan/JSON-PP/t/
D018_json_checker.t45 {"Illegal invocation": alert()}
/openbsd/src/sys/arch/amd64/conf/
Dld.script155 /* XXX - hack alert, since we are not C++, nuke these */
/openbsd/src/sys/arch/i386/conf/
Dld.script145 /* XXX - hack alert, since we are not C++, nuke these */
/openbsd/src/gnu/usr.bin/binutils-2.17/bfd/
Dversados.c82 int alert; /* To see if we're trampling. */ member
157 VDATA (abfd)->alert = 0x12345678; in versados_mkobject()
/openbsd/src/gnu/usr.bin/binutils/bfd/
Dversados.c107 int alert; /* to see if we're trampling */ member
188 VDATA (abfd)->alert = 0x12345678;

12