Home
last modified time | relevance | path

Searched refs:reason_code (Results 1 – 25 of 1144) sorted by relevance

12345678910>>...46

/dports/security/opencryptoki/opencryptoki-3.11.0/usr/lib/cca_stdll/
H A Dcca_func.h23 long *reason_code,
31 long *reason_code,
42 long *reason_code,
51 long *reason_code,
60 long *reason_code,
68 long *reason_code,
78 long *reason_code,
92 long *reason_code,
119 long *reason_code,
129 long *reason_code,
[all …]
H A Dcsulincl.h228 long *reason_code,
236 long *reason_code,
247 long *reason_code,
256 long *reason_code,
265 long *reason_code,
297 long *reason_code,
356 long *reason_code,
378 long *reason_code,
452 long *reason_code,
490 long *reason_code,
[all …]
H A Dcca_specific.c409 &reason_code, in token_specific_init()
484 &reason_code, in cca_key_gen()
900 &reason_code, in token_specific_rsa_generate_keypair()
929 &reason_code, in token_specific_rsa_generate_keypair()
996 &reason_code, in token_specific_rsa_encrypt()
1051 &reason_code, in token_specific_rsa_decrypt()
1108 &reason_code, in token_specific_rsa_sign()
1161 &reason_code, in token_specific_rsa_verify()
1188 if (reason_code != 0) { in token_specific_rsa_verify()
2454 if (return_code == 4 && (reason_code == 429 || reason_code == 1)) { in ccatok_hmac()
[all …]
/dports/net/mosquitto/mosquitto-2.0.13/lib/
H A Dhandle_pubackcomp.c43 uint8_t reason_code = 0; in handle__pubackcomp() local
92 if(reason_code != MQTT_RC_SUCCESS in handle__pubackcomp()
93 && reason_code != MQTT_RC_NO_MATCHING_SUBSCRIBERS in handle__pubackcomp()
94 && reason_code != MQTT_RC_UNSPECIFIED in handle__pubackcomp()
96 && reason_code != MQTT_RC_NOT_AUTHORIZED in handle__pubackcomp()
97 && reason_code != MQTT_RC_TOPIC_NAME_INVALID in handle__pubackcomp()
98 && reason_code != MQTT_RC_PACKET_ID_IN_USE in handle__pubackcomp()
99 && reason_code != MQTT_RC_QUOTA_EXCEEDED in handle__pubackcomp()
100 && reason_code != MQTT_RC_PAYLOAD_FORMAT_INVALID in handle__pubackcomp()
106 if(reason_code != MQTT_RC_SUCCESS in handle__pubackcomp()
[all …]
H A Dhandle_pubrec.c42 uint8_t reason_code = 0; in handle__pubrec() local
61 rc = packet__read_byte(&mosq->in_packet, &reason_code); in handle__pubrec()
64 if(reason_code != MQTT_RC_SUCCESS in handle__pubrec()
65 && reason_code != MQTT_RC_NO_MATCHING_SUBSCRIBERS in handle__pubrec()
66 && reason_code != MQTT_RC_UNSPECIFIED in handle__pubrec()
67 && reason_code != MQTT_RC_IMPLEMENTATION_SPECIFIC in handle__pubrec()
68 && reason_code != MQTT_RC_NOT_AUTHORIZED in handle__pubrec()
69 && reason_code != MQTT_RC_TOPIC_NAME_INVALID in handle__pubrec()
70 && reason_code != MQTT_RC_PACKET_ID_IN_USE in handle__pubrec()
71 && reason_code != MQTT_RC_QUOTA_EXCEEDED){ in handle__pubrec()
[all …]
H A Dhandle_connack.c33 static void connack_callback(struct mosquitto *mosq, uint8_t reason_code, uint8_t connect_flags, co… in connack_callback() argument
35 log__printf(mosq, MOSQ_LOG_DEBUG, "Client %s received CONNACK (%d)", mosq->id, reason_code); in connack_callback()
36 if(reason_code == MQTT_RC_SUCCESS){ in connack_callback()
42 mosq->on_connect(mosq, mosq->userdata, reason_code); in connack_callback()
47 mosq->on_connect_with_flags(mosq, mosq->userdata, reason_code, connect_flags); in connack_callback()
52 mosq->on_connect_v5(mosq, mosq->userdata, reason_code, connect_flags, properties); in connack_callback()
62 uint8_t reason_code; in handle__connack() local
74 rc = packet__read_byte(&mosq->in_packet, &reason_code); in handle__connack()
80 if(rc == MOSQ_ERR_PROTOCOL && reason_code == CONNACK_REFUSED_PROTOCOL_VERSION){ in handle__connack()
115 connack_callback(mosq, reason_code, connect_flags, properties); in handle__connack()
[all …]
H A Dsend_mosq.c70 int send__puback(struct mosquitto *mosq, uint16_t mid, uint8_t reason_code, const mosquitto_propert… in send__puback() argument
73 log__printf(NULL, MOSQ_LOG_DEBUG, "Sending PUBACK to %s (m%d, rc%d)", mosq->id, mid, reason_code); in send__puback()
75 …__printf(mosq, MOSQ_LOG_DEBUG, "Client %s sending PUBACK (m%d, rc%d)", mosq->id, mid, reason_code); in send__puback()
79 return send__command_with_mid(mosq, CMD_PUBACK, mid, false, reason_code, properties); in send__puback()
98 log__printf(NULL, MOSQ_LOG_DEBUG, "Sending PUBREC to %s (m%d, rc%d)", mosq->id, mid, reason_code); in send__pubrec()
100 …__printf(mosq, MOSQ_LOG_DEBUG, "Client %s sending PUBREC (m%d, rc%d)", mosq->id, mid, reason_code); in send__pubrec()
102 if(reason_code >= 0x80 && mosq->protocol == mosq_p_mqtt5){ in send__pubrec()
106 return send__command_with_mid(mosq, CMD_PUBREC, mid, false, reason_code, properties); in send__pubrec()
137 if(reason_code != 0 || properties){ in send__command_with_mid()
155 if(reason_code != 0 || properties){ in send__command_with_mid()
[all …]
/dports/devel/p5-Log-Report-Optional/Log-Report-Optional-1.07/lib/Log/Report/
H A DUtil.pm30 our @EXPORT_OK = qw/%reason_code/;
38 our %reason_code; { my $i=1; %reason_code = map +($_ => $i++), @reasons }
72 { my $begin = $reason_code{$1 || 'TRACE'};
73 my $end = $reason_code{$2 || 'PANIC'};
84 elsif($reason_code{$r}) { $r{$reason_code{$r}}++ }
85 elsif(my $s = $reason_set{$r}) { $r{$reason_code{$_}}++ for @$s }
95 sub is_reason($) { $reason_code{$_[0]} }
111 || ($mode==2 && $reason_code{$reason} >= $reason_code{WARNING})
112 || ($mode==3 && $reason_code{$reason} >= $reason_code{MISTAKE});
119 || ($mode==2 && $reason_code{$reason} >= $reason_code{ALERT})
[all …]
/dports/www/domoticz/domoticz-2020.2/extern/mosquitto/lib/
H A Dhandle_connack.c31 static void connack_callback(struct mosquitto *mosq, uint8_t reason_code, uint8_t connect_flags, co… in connack_callback() argument
33 log__printf(mosq, MOSQ_LOG_DEBUG, "Client %s received CONNACK (%d)", mosq->id, reason_code); in connack_callback()
34 if(reason_code == MQTT_RC_SUCCESS){ in connack_callback()
40 mosq->on_connect(mosq, mosq->userdata, reason_code); in connack_callback()
45 mosq->on_connect_with_flags(mosq, mosq->userdata, reason_code, connect_flags); in connack_callback()
50 mosq->on_connect_v5(mosq, mosq->userdata, reason_code, connect_flags, properties); in connack_callback()
60 uint8_t reason_code; in handle__connack() local
68 rc = packet__read_byte(&mosq->in_packet, &reason_code); in handle__connack()
74 if(rc == MOSQ_ERR_PROTOCOL && reason_code == CONNACK_REFUSED_PROTOCOL_VERSION){ in handle__connack()
107 connack_callback(mosq, reason_code, connect_flags, properties); in handle__connack()
[all …]
H A Dsend_mosq.c68 int send__puback(struct mosquitto *mosq, uint16_t mid, uint8_t reason_code) in send__puback() argument
71 log__printf(NULL, MOSQ_LOG_DEBUG, "Sending PUBACK to %s (m%d, rc%d)", mosq->id, mid, reason_code); in send__puback()
73 …__printf(mosq, MOSQ_LOG_DEBUG, "Client %s sending PUBACK (m%d, rc%d)", mosq->id, mid, reason_code); in send__puback()
77 return send__command_with_mid(mosq, CMD_PUBACK, mid, false, reason_code, NULL); in send__puback()
93 int send__pubrec(struct mosquitto *mosq, uint16_t mid, uint8_t reason_code) in send__pubrec() argument
96 log__printf(NULL, MOSQ_LOG_DEBUG, "Sending PUBREC to %s (m%d, rc%d)", mosq->id, mid, reason_code); in send__pubrec()
100 if(reason_code >= 0x80 && mosq->protocol == mosq_p_mqtt5){ in send__pubrec()
104 return send__command_with_mid(mosq, CMD_PUBREC, mid, false, reason_code, NULL); in send__pubrec()
136 if(reason_code != 0 || properties){ in send__command_with_mid()
156 if(reason_code != 0 || properties){ in send__command_with_mid()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/boringssl/src/ssl/
H A Dssl_file.cc253 int reason_code; in SSL_use_certificate_file() local
273 reason_code = ERR_R_PEM_LIB; in SSL_use_certificate_file()
296 int reason_code, ret = 0; in SSL_use_RSAPrivateKey_file() local
315 reason_code = ERR_R_PEM_LIB; in SSL_use_RSAPrivateKey_file()
337 int reason_code, ret = 0; in SSL_use_PrivateKey_file() local
353 reason_code = ERR_R_PEM_LIB; in SSL_use_PrivateKey_file()
377 int reason_code; in SSL_CTX_use_certificate_file() local
397 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_certificate_file()
419 int reason_code, ret = 0; in SSL_CTX_use_RSAPrivateKey_file() local
438 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_RSAPrivateKey_file()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/boringssl/ssl/
H A Dssl_file.c250 int reason_code; in SSL_use_certificate_file() local
270 reason_code = ERR_R_PEM_LIB; in SSL_use_certificate_file()
293 int reason_code, ret = 0; in SSL_use_RSAPrivateKey_file() local
312 reason_code = ERR_R_PEM_LIB; in SSL_use_RSAPrivateKey_file()
334 int reason_code, ret = 0; in SSL_use_PrivateKey_file() local
350 reason_code = ERR_R_PEM_LIB; in SSL_use_PrivateKey_file()
374 int reason_code; in SSL_CTX_use_certificate_file() local
394 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_certificate_file()
416 int reason_code, ret = 0; in SSL_CTX_use_RSAPrivateKey_file() local
435 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_RSAPrivateKey_file()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/boringssl/src/ssl/
H A Dssl_file.cc253 int reason_code; in SSL_use_certificate_file() local
273 reason_code = ERR_R_PEM_LIB; in SSL_use_certificate_file()
296 int reason_code, ret = 0; in SSL_use_RSAPrivateKey_file() local
315 reason_code = ERR_R_PEM_LIB; in SSL_use_RSAPrivateKey_file()
337 int reason_code, ret = 0; in SSL_use_PrivateKey_file() local
353 reason_code = ERR_R_PEM_LIB; in SSL_use_PrivateKey_file()
377 int reason_code; in SSL_CTX_use_certificate_file() local
397 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_certificate_file()
419 int reason_code, ret = 0; in SSL_CTX_use_RSAPrivateKey_file() local
438 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_RSAPrivateKey_file()
[all …]
/dports/net/quiche/quiche-0.9.0/deps/boringssl/src/ssl/
H A Dssl_file.cc253 int reason_code; in SSL_use_certificate_file() local
273 reason_code = ERR_R_PEM_LIB; in SSL_use_certificate_file()
296 int reason_code, ret = 0; in SSL_use_RSAPrivateKey_file() local
315 reason_code = ERR_R_PEM_LIB; in SSL_use_RSAPrivateKey_file()
337 int reason_code, ret = 0; in SSL_use_PrivateKey_file() local
353 reason_code = ERR_R_PEM_LIB; in SSL_use_PrivateKey_file()
377 int reason_code; in SSL_CTX_use_certificate_file() local
397 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_certificate_file()
419 int reason_code, ret = 0; in SSL_CTX_use_RSAPrivateKey_file() local
438 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_RSAPrivateKey_file()
[all …]
/dports/net/quiche/quiche-0.9.0/cargo-crates/boring-sys-1.1.1/deps/boringssl/src/ssl/
H A Dssl_file.cc253 int reason_code; in SSL_use_certificate_file() local
273 reason_code = ERR_R_PEM_LIB; in SSL_use_certificate_file()
296 int reason_code, ret = 0; in SSL_use_RSAPrivateKey_file() local
315 reason_code = ERR_R_PEM_LIB; in SSL_use_RSAPrivateKey_file()
337 int reason_code, ret = 0; in SSL_use_PrivateKey_file() local
353 reason_code = ERR_R_PEM_LIB; in SSL_use_PrivateKey_file()
377 int reason_code; in SSL_CTX_use_certificate_file() local
397 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_certificate_file()
419 int reason_code, ret = 0; in SSL_CTX_use_RSAPrivateKey_file() local
438 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_RSAPrivateKey_file()
[all …]
/dports/security/boringssl/boringssl-6a71840/ssl/
H A Dssl_file.cc253 int reason_code; in SSL_use_certificate_file() local
273 reason_code = ERR_R_PEM_LIB; in SSL_use_certificate_file()
296 int reason_code, ret = 0; in SSL_use_RSAPrivateKey_file() local
315 reason_code = ERR_R_PEM_LIB; in SSL_use_RSAPrivateKey_file()
337 int reason_code, ret = 0; in SSL_use_PrivateKey_file() local
353 reason_code = ERR_R_PEM_LIB; in SSL_use_PrivateKey_file()
377 int reason_code; in SSL_CTX_use_certificate_file() local
397 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_certificate_file()
419 int reason_code, ret = 0; in SSL_CTX_use_RSAPrivateKey_file() local
438 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_RSAPrivateKey_file()
[all …]
/dports/devel/pecl-grpc/grpc-1.42.0/third_party/boringssl-with-bazel/src/ssl/
H A Dssl_file.cc253 int reason_code; in SSL_use_certificate_file() local
273 reason_code = ERR_R_PEM_LIB; in SSL_use_certificate_file()
296 int reason_code, ret = 0; in SSL_use_RSAPrivateKey_file() local
315 reason_code = ERR_R_PEM_LIB; in SSL_use_RSAPrivateKey_file()
337 int reason_code, ret = 0; in SSL_use_PrivateKey_file() local
353 reason_code = ERR_R_PEM_LIB; in SSL_use_PrivateKey_file()
377 int reason_code; in SSL_CTX_use_certificate_file() local
397 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_certificate_file()
419 int reason_code, ret = 0; in SSL_CTX_use_RSAPrivateKey_file() local
438 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_RSAPrivateKey_file()
[all …]
/dports/devel/py-grpcio/grpcio-1.43.0/third_party/boringssl-with-bazel/src/ssl/
H A Dssl_file.cc253 int reason_code; in SSL_use_certificate_file() local
273 reason_code = ERR_R_PEM_LIB; in SSL_use_certificate_file()
296 int reason_code, ret = 0; in SSL_use_RSAPrivateKey_file() local
315 reason_code = ERR_R_PEM_LIB; in SSL_use_RSAPrivateKey_file()
337 int reason_code, ret = 0; in SSL_use_PrivateKey_file() local
353 reason_code = ERR_R_PEM_LIB; in SSL_use_PrivateKey_file()
377 int reason_code; in SSL_CTX_use_certificate_file() local
397 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_certificate_file()
419 int reason_code, ret = 0; in SSL_CTX_use_RSAPrivateKey_file() local
438 reason_code = ERR_R_PEM_LIB; in SSL_CTX_use_RSAPrivateKey_file()
[all …]
/dports/security/p5-openxpki-i18n/openxpki-3.16.1/core/server/t/lib/OpenXPKI/Test/CertHelper/
H A DDatabase.pm242 reason_code => undef,
272 reason_code => undef,
302 reason_code => undef,
332 reason_code => undef,
362 reason_code => undef,
392 reason_code => undef,
422 reason_code => undef,
452 reason_code => undef,
482 reason_code => undef,
512 reason_code => undef,
[all …]
/dports/security/p5-openxpki/openxpki-3.16.1/core/server/t/lib/OpenXPKI/Test/CertHelper/
H A DDatabase.pm242 reason_code => undef,
272 reason_code => undef,
302 reason_code => undef,
332 reason_code => undef,
362 reason_code => undef,
392 reason_code => undef,
422 reason_code => undef,
452 reason_code => undef,
482 reason_code => undef,
512 reason_code => undef,
[all …]
/dports/security/p5-openxpki-i18n/openxpki-3.16.1/core/server/OpenXPKI/Server/Workflow/Activity/CRR/
H A DPersistRequest.pm45 my $reason_code = $self->param('reason_code') // $context->param('reason_code') || '';
50 …my $enforce = $self->param('enforce') || ($revocation_time ? 'all' : ($reason_code ? 'reason_code'…
51 $reason_code ||= 'unspecified';
55 if ($cert->{status} ne 'ISSUED' || $cert->{reason_code}) {
64 elsif ($enforce ne 'none' && $reason_code ne $cert->{reason_code}) {
69 …} elsif ($enforce ne 'none' && $reason_code eq 'keyCompromise' && $invalidity_time && $invalidity_…
91 reason_code => $reason_code,
/dports/security/p5-openxpki/openxpki-3.16.1/core/server/OpenXPKI/Server/Workflow/Activity/CRR/
H A DPersistRequest.pm45 my $reason_code = $self->param('reason_code') // $context->param('reason_code') || '';
50 …my $enforce = $self->param('enforce') || ($revocation_time ? 'all' : ($reason_code ? 'reason_code'…
51 $reason_code ||= 'unspecified';
55 if ($cert->{status} ne 'ISSUED' || $cert->{reason_code}) {
64 elsif ($enforce ne 'none' && $reason_code ne $cert->{reason_code}) {
69 …} elsif ($enforce ne 'none' && $reason_code eq 'keyCompromise' && $invalidity_time && $invalidity_…
91 reason_code => $reason_code,
/dports/net/p5-Socket-Class/Socket-Class-2.258/xs/sc_ssl/openssl/source/engines/vendor_defns/
H A Dhw_4758_cca.h52 long * reason_code,
64 long * reason_code,
73 long * reason_code,
89 long * reason_code,
104 long * reason_code,
117 long * reason_code,
134 long * reason_code,
/dports/security/openssl-legacy-static/openssl-1.0.2u/engines/vendor_defns/
H A Dhw_4758_cca.h52 long *reason_code,
62 long *reason_code,
70 long *reason_code,
84 long *reason_code,
104 long *reason_code,
121 long *reason_code,
137 long *reason_code,
/dports/security/openssl-unsafe/openssl-c9ba19c/engines/vendor_defns/
H A Dhw_4758_cca.h52 long *reason_code,
62 long *reason_code,
70 long *reason_code,
84 long *reason_code,
104 long *reason_code,
121 long *reason_code,
137 long *reason_code,

12345678910>>...46