Home
last modified time | relevance | path

Searched refs:critical (Results 1 - 25 of 44) sorted by relevance

12

/third_party/rust/crates/rust-openssl/openssl/src/x509/
H A Dextension.rs15 //! let bc = bc.critical().ca().pathlen(1);
29 critical: bool,
44 critical: false, in new()
50 /// Sets the `critical` flag to `true`. The extension will be critical.
51 pub fn critical(&mut self) -> &mut BasicConstraints { in critical() functions
52 self.critical = true; in critical()
75 if self.critical { in build()
76 value.push_str("critical,"); in build()
93 critical
129 pub fn critical(&mut self) -> &mut KeyUsage { critical() functions
252 pub fn critical(&mut self) -> &mut ExtendedKeyUsage { critical() functions
349 pub fn critical(&mut self) -> &mut SubjectKeyIdentifier { critical() functions
392 pub fn critical(&mut self) -> &mut AuthorityKeyIdentifier { critical() functions
463 pub fn critical(&mut self) -> &mut SubjectAlternativeName { critical() functions
[all...]
H A Dmod.rs987 /// critical, and its DER contents.
997 critical: bool, in new_from_der()
1004 critical as _, in new_from_der()
1013 critical: bool,
1017 cvt_p(ffi::X509V3_EXT_i2d(nid.as_raw(), critical as _, value)).map(X509Extension)
1699 let mut critical = -1; in extension() variables
1705 &mut critical as *mut _, in extension()
1712 match (critical, out) { in extension()
1717 // A critical value of 0 or 1 suggests success, but a null pointer in extension()
1720 (c_int::MIN..=-2 | 2.., _) => panic!("OpenSSL should only return -2, -1, 0, or 1 for an extension's criticality but it returned {}", critical), in extension()
[all...]
H A Dtests.rs313 let basic_constraints = BasicConstraints::new().critical().ca().build().unwrap(); in x509_builder()
389 BasicConstraints::new().critical().ca().build().unwrap(), in x509_extension_to_der()
707 let (critical, issuer) = entry in test_crl_entry_extensions()
711 assert!(critical, "Certificate issuer extension is critical"); in test_crl_entry_extensions()
723 let (critical, reason_code) = entry in test_crl_entry_extensions()
727 assert!(!critical, "Reason code extension is not critical"); in test_crl_entry_extensions()
/third_party/ltp/lib/newlib_tests/
H A Dtst_fuzzy_sync01.c9 * outcome to a data race when the critical sections are not aligned.
12 * - Each thread contains a single contiguous critical section.
17 * If a single data race has N critical sections then we may remove
31 * outside of the critical section.
37 * | # | | # | The '#' is the critical section.
42 * So we can either have the critical section of the shorter race
43 * before that of the longer one. Or the critical section of the
48 * the shorter. We also vary the distance of the critical section from
52 * When entering their critical sections, both threads increment the
54 * leaving their critical section
185 int cs, ct, r, too_early = 0, critical = 0, too_late = 0; run() local
[all...]
H A Dtst_fuzzy_sync02.c13 * - Each thread contains two contiguous critical sections. One for each race.
43 /* The time signature of a code path containing a critical section. */
45 /* The delay until the start of the critical section */
47 /* The length of the critical section */
55 * used instead of a.return_t if the ad and bd critical sections
56 * overlap. This may result in the critical section of a never being
128 int critical = 0; in run() local
148 critical++; in run()
158 if (critical > 100) { in run()
164 tst_res(critical > 5 in run()
[all...]
/third_party/node/deps/openssl/openssl/crypto/ts/
H A Dts_lib.c50 int i, critical, n; in TS_ext_print_bio() local
61 critical = X509_EXTENSION_get_critical(ex); in TS_ext_print_bio()
62 BIO_printf(bio, ":%s\n", critical ? " critical" : ""); in TS_ext_print_bio()
/third_party/openssl/crypto/ts/
H A Dts_lib.c50 int i, critical, n; in TS_ext_print_bio() local
61 critical = X509_EXTENSION_get_critical(ex); in TS_ext_print_bio()
62 BIO_printf(bio, ":%s\n", critical ? " critical" : ""); in TS_ext_print_bio()
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dx509_v3.c75 if (((ex->critical > 0) && crit) || ((ex->critical <= 0) && !crit)) in STACK_OF()
200 ex->critical = (crit) ? 0xFF : -1; in X509_EXTENSION_set_critical()
234 if (ex->critical > 0) in X509_EXTENSION_get_critical()
H A Dt_req.c174 int critical; in X509_REQ_print_ex() local
181 critical = X509_EXTENSION_get_critical(ex); in X509_REQ_print_ex()
182 if (BIO_printf(bp, ": %s\n", critical ? "critical" : "") <= 0) in X509_REQ_print_ex()
H A Dx509_local.h52 ASN1_BOOLEAN critical; member
/third_party/openssl/crypto/x509/
H A Dx509_v3.c75 if (((ex->critical > 0) && crit) || ((ex->critical <= 0) && !crit)) in STACK_OF()
200 ex->critical = (crit) ? 0xFF : -1; in X509_EXTENSION_set_critical()
234 if (ex->critical > 0) in X509_EXTENSION_get_critical()
H A Dt_req.c174 int critical; in X509_REQ_print_ex() local
181 critical = X509_EXTENSION_get_critical(ex); in X509_REQ_print_ex()
182 if (BIO_printf(bp, ": %s\n", critical ? "critical" : "") <= 0) in X509_REQ_print_ex()
/third_party/mbedtls/include/mbedtls/
H A Dx509_csr.h79 * ignored, unless the critical flag is set, in which case
107 * \param critical Whether the extension is critical.
114 * When the callback fails to parse a critical extension
116 * When the callback fails to parse a non critical extension
126 int critical,
134 * ignored, unless the critical flag is set, in which case
315 * \param critical Set to 1 to mark the extension as critical, 0 otherwise.
323 int critical,
[all...]
H A Dx509_crt.h386 * \param critical Whether the extension is critical.
393 * When the callback fails to parse a critical extension
395 * When the callback fails to parse a non critical extension
405 int critical,
442 * When the callback fails to parse a critical extension
444 * When the callback fails to parse a non critical extension
1068 * \param critical if the extension is critical (per the RFC's definition)
1076 int critical,
[all...]
/third_party/rust/crates/rust-openssl/openssl/examples/
H A Dmk_certs.rs46 cert_builder.append_extension(BasicConstraints::new().critical().ca().build()?)?; in mk_ca_cert()
49 .critical() in mk_ca_cert()
113 .critical() in mk_ca_signed_cert()
/third_party/openssl/test/
H A Dbn_rand_range.h16 double critical; member
/third_party/mesa3d/src/gallium/auxiliary/hud/
H A Dhud_sensors_temp.c63 /* The type of measurement, critical or current. */
73 double current, min, max, critical; member
121 sti->critical = get_value(sti->chip, sf); in get_sensor_values()
175 hud_graph_add_value(gr, sti->critical); in query_sti_load()
291 /* Create a 'current' and 'critical' object pair. in build_sensor_list()
/third_party/node/deps/v8/tools/testrunner/local/
H A Dandroid.py90 logging.critical('Missing file on host: %s' % file_on_host)
99 logging.critical('PUSH FAILED: ' + output)
/third_party/mbedtls/library/
H A Dx509write_csr.c70 int critical, in mbedtls_x509write_csr_set_extension()
74 critical, val, val_len); in mbedtls_x509write_csr_set_extension()
68 mbedtls_x509write_csr_set_extension(mbedtls_x509write_csr *ctx, const char *oid, size_t oid_len, int critical, const unsigned char *val, size_t val_len) mbedtls_x509write_csr_set_extension() argument
H A Dx509_internal.h52 int critical, const unsigned char *val,
/third_party/python/Lib/concurrent/futures/
H A Dthread.py74 _base.LOGGER.critical('Exception in initializer:', exc_info=True)
109 _base.LOGGER.critical('Exception in worker', exc_info=True)
/third_party/node/test/parallel/
H A Dtest-dns-resolveany.js28 critical: 128,
/third_party/node/test/fixtures/0-dns/
H A Dcreate-cert.js49 critical: false,
/third_party/node/deps/cares/src/lib/
H A Dares_parse_caa_reply.c99 caa_curr->critical = ares_dns_rr_get_u8(rr, ARES_RR_CAA_CRITICAL); in ares_parse_caa_reply()
H A Dares_dns_private.h161 unsigned char critical; member

Completed in 14 milliseconds

12