Home
last modified time | relevance | path

Searched full:strict (Results 1 – 25 of 8397) sorted by relevance

12345678910>>...336

/freebsd/crypto/openssl/test/ssl-tests/
H A D12-ct.cnf7 test-2 = 2-ct-strict-without-scts
8 test-3 = 3-ct-strict-with-scts
10 test-5 = 5-ct-strict-resumption
67 [2-ct-strict-without-scts]
68 ssl_conf = 2-ct-strict-without-scts-ssl
70 [2-ct-strict-without-scts-ssl]
71 server = 2-ct-strict-without-scts-server
72 client = 2-ct-strict-without-scts-client
74 [2-ct-strict-without-scts-server]
79 [2-ct-strict-without-scts-client]
[all …]
H A D12-ct.cnf.in12 use strict;
49 name => "ct-strict-without-scts",
54 "CTValidation" => "Strict",
63 name => "ct-strict-with-scts",
71 "CTValidation" => "Strict",
97 name => "ct-strict-resumption",
105 "CTValidation" => "Strict",
112 "CTValidation" => "Strict",
/freebsd/contrib/wpa/src/wps/
H A Dwps_validate.c2 * Wi-Fi Protected Setup - Strict protocol validation routines
25 wpa_printf(MSG_INFO, "WPS-STRICT: Version attribute " in wps_validate_version()
32 wpa_printf(MSG_INFO, "WPS-STRICT: Invalid Version attribute " in wps_validate_version()
44 wpa_printf(MSG_INFO, "WPS-STRICT: Version2 attribute " in wps_validate_version2()
51 wpa_printf(MSG_INFO, "WPS-STRICT: Invalid Version2 attribute " in wps_validate_version2()
63 wpa_printf(MSG_INFO, "WPS-STRICT: Request Type " in wps_validate_request_type()
70 wpa_printf(MSG_INFO, "WPS-STRICT: Invalid Request Type " in wps_validate_request_type()
82 wpa_printf(MSG_INFO, "WPS-STRICT: Response Type " in wps_validate_response_type()
89 wpa_printf(MSG_INFO, "WPS-STRICT: Invalid Response Type " in wps_validate_response_type()
101 wpa_printf(MSG_INFO, "WPS-STRICT: Physical/Virtual " in valid_config_methods()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__configuration/
H A Davailability.h155 …__attribute__((availability(macos, strict, introduced = 14.4))) …
156 …__attribute__((availability(ios, strict, introduced = 17.4))) …
157 …__attribute__((availability(tvos, strict, introduced = 17.4))) …
158 __attribute__((availability(watchos, strict, introduced = 10.4)))
170 …__attribute__((availability(macos, strict, introduced = 14.0))) …
171 …__attribute__((availability(ios, strict, introduced = 17.0))) …
172 …__attribute__((availability(tvos, strict, introduced = 17.0))) …
173 __attribute__((availability(watchos, strict, introduced = 10.0)))
185 …__attribute__((availability(macos, strict, introduced = 13.4))) …
186 …__attribute__((availability(ios, strict, introduced = 16.5))) …
[all …]
/freebsd/crypto/openssl/external/perl/Text-Template-1.56/t/
H A Dstrict.t3 # Tests for STRICT features
6 use strict;
31 # strict should cause t1 to contain an error message if wrong variable is used in template
32 my $t1 = $tmpl1->fill_in(PACKAGE => 'T1', STRICT => 1, HASH => { bar => 'baz' });
34 # non-strict still works
41 STRICT => 1,
45 is $t2, 'The value of $foo is: template', "non-strict hash still works";
46 is $t3, "The value of \$foo is: fillin", "hash values with prepend, prepend wins, even under strict
/freebsd/contrib/bmake/unit-tests/
H A Dvarmod.mk10 # * `strict`: the parsing style used by most modifiers:
35 # | `E` | strict | | yes |
36 # | `H` | strict | | yes |
40 # | `O` | strict | only literal value | no |
42 # | `Q` | strict | | yes |
43 # | `R` | strict | | yes |
45 # | `T` | strict | | N/A |
47 # | `[` | strict | | no |
49 # | `gmtime` | strict | | yes |
50 # | `hash` | strict | | N/A |
[all …]
/freebsd/contrib/libder/tests/
H A Dmake_corpus.c70 params->buftype, params->strict, seed->seed_name) != -1); in write_one()
77 * the full params, but we'll still have our signal byte for strict in write_one()
83 assert(write(fd, &params->strict, sizeof(params->strict)) == sizeof(params->strict)); in write_one()
121 for (uint8_t strict = 0; strict < 2; strict++) { in main() local
122 params.strict = strict; in main()
H A Dfuzz_write.c28 bool strict; in LLVMFuzzerTestOneInput() local
36 * impossible to get strict validation of universal and application in LLVMFuzzerTestOneInput()
39 strict = !!data[0]; in LLVMFuzzerTestOneInput()
44 libder_set_strict(ctx, strict); in LLVMFuzzerTestOneInput()
/freebsd/contrib/libder/libder/
H A Dlibder_error.c32 DESCRIBE(STRICT_EOC, "Strict: end-of-content violation"),
33 DESCRIBE(STRICT_TAG, "Strict: tag violation"),
34 DESCRIBE(STRICT_PVARLEN, "Strict: primitive using indefinite length"),
35 DESCRIBE(STRICT_BOOLEAN, "Strict: boolean encoded incorrectly"),
36 DESCRIBE(STRICT_NULL, "Strict: null encoded incorrectly"),
37 DESCRIBE(STRICT_PRIMITIVE, "Strict: type must be primitive"),
38 DESCRIBE(STRICT_CONSTRUCTED, "Strict: type must be constructed"),
39 DESCRIBE(STRICT_BITSTRING, "Strict: malformed constructed bitstring"),
H A Dlibder.c29 ctx->strict = true; in libder_open()
82 return (ctx->strict); in libder_get_strict()
86 libder_set_strict(struct libder_ctx *ctx, bool strict) in libder_set_strict() argument
88 bool oval = ctx->strict; in libder_set_strict()
90 ctx->strict = strict; in libder_set_strict()
H A Dlibder.h87 /* Strict violations */
88 LDE_STRICT_EOC, /* Strict: end-of-content violation */
89 LDE_STRICT_TAG, /* Strict: tag violation */
90 LDE_STRICT_PVARLEN, /* Strict: primitive using indefinite length */
91 LDE_STRICT_BOOLEAN, /* Strict: boolean encoded incorrectly */
92 LDE_STRICT_NULL, /* Strict: null encoded incorrectly */
93 LDE_STRICT_PRIMITIVE, /* Strict: type must be primitive */
94 LDE_STRICT_CONSTRUCTED, /* Strict: type must be constructed */
95 LDE_STRICT_BITSTRING, /* Strict: malformed constructed bitstring */
H A Dlibder.344 .Fn libder_set_strict "struct libder_ctx *ctx" "bool strict"
85 need to be done for strict conformance.
143 functions may used to check or set the strict read state of the given
148 operates in strict mode and rejects various methods of expressing data that are
154 describe the various scenarios that strict mode may reject.
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DUnicodeNameToCodepoint.cpp120 static bool startsWith(StringRef Name, StringRef Needle, bool Strict, in startsWith() argument
125 if (Strict) { in startsWith()
179 compareNode(uint32_t Offset, StringRef Name, bool Strict,
184 bool DoesStartWith = N.IsRoot || startsWith(Name, N.Name, Strict, Consummed, in compareNode()
199 compareNode(ChildOffset, Name.substr(Consummed), Strict, in compareNode()
215 compareNode(uint32_t Offset, StringRef Name, bool Strict, BufferType &Buffer) {
216 return compareNode(Offset, Name, Strict, 0, Buffer);
259 static std::size_t findSyllable(StringRef Name, bool Strict,
272 startsWith(Name, Syllable, Strict, Consummed, PreviousInNameCopy); in findSyllable()
286 nameToHangulCodePoint(StringRef Name, bool Strict, BufferTyp in findSyllable()
180 compareNode(uint32_t Offset,StringRef Name,bool Strict,char PreviousCharInName,char PreviousCharInNeedle,BufferType & Buffer,const Node * Parent=nullptr) compareNode() argument
217 compareNode(uint32_t Offset,StringRef Name,bool Strict,BufferType & Buffer) compareNode() argument
261 findSyllable(StringRef Name,bool Strict,char & PreviousInName,int & Pos,int Column) findSyllable() argument
289 nameToHangulCodePoint(StringRef Name,bool Strict,BufferType & Buffer) nameToHangulCodePoint() argument
347 nameToGeneratedCodePoint(StringRef Name,bool Strict,BufferType & Buffer) nameToGeneratedCodePoint() argument
373 nameToCodepoint(StringRef Name,bool Strict,BufferType & Buffer) nameToCodepoint() argument
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DAMDGPUMetadataVerifier.h11 /// well-typed metadata and untyped metadata. When verifying in the non-strict
41 /// In strict mode, metadata must already be well-typed.
43 /// In non-strict mode, metadata is coerced into expected types when possible.
45 bool Strict; variable
66 /// Strict mode.
67 MetadataVerifier(bool Strict) : Strict(Strict) {} in MetadataVerifier() argument
/freebsd/crypto/openssh/
H A Dplatform-tracing.c40 platform_disable_tracing(int strict) in platform_disable_tracing() argument
55 if (strict) in platform_disable_tracing()
61 if (prctl(PR_SET_DUMPABLE, 0) != 0 && strict) in platform_disable_tracing()
67 if (setpflags(__PROC_PROTECT, 1) != 0 && strict) in platform_disable_tracing()
73 if (ptrace(PT_DENY_ATTACH, 0, 0, 0) == -1 && strict) in platform_disable_tracing()
/freebsd/contrib/llvm-project/libcxx/include/__debug_utils/
H A Dstrict_weak_ordering_check.h36 "The range is not sorted after the sort, your comparator is not a valid strict-weak ordering"); in __check_strict_weak_ordering_sorted()
50 !__comp(*(__first + __a), *(__first + __b)), "Your comparator is not a valid strict-weak ordering"); in __check_strict_weak_ordering_sorted()
52 !__comp(*(__first + __b), *(__first + __a)), "Your comparator is not a valid strict-weak ordering"); in __check_strict_weak_ordering_sorted()
59 __comp(*(__first + __a), *(__first + __b)), "Your comparator is not a valid strict-weak ordering"); in __check_strict_weak_ordering_sorted()
61 !__comp(*(__first + __b), *(__first + __a)), "Your comparator is not a valid strict-weak ordering"); in __check_strict_weak_ordering_sorted()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_set_format_v7tar.c22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
134 static int format_number(int64_t, char *, int size, int max, int strict);
354 * If "strict" is set to zero, it will extend numeric fields as
360 struct archive_entry *entry, int strict, in format_header_v7tar() argument
395 if (strict && copy_length < V7TAR_name_size) in format_header_v7tar()
397 else if (!strict && copy_length <= V7TAR_name_size) in format_header_v7tar()
448 V7TAR_mode_max_size, strict)) { in format_header_v7tar()
455 h + V7TAR_uid_offset, V7TAR_uid_size, V7TAR_uid_max_size, strict)) { in format_header_v7tar()
462 h + V7TAR_gid_offset, V7TAR_gid_size, V7TAR_gid_max_size, strict)) { in format_header_v7tar()
470 V7TAR_size_max_size, strict)) { in format_header_v7tar()
[all …]
H A Darchive_write_set_format_ustar.c22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
159 static int format_number(int64_t, char *, int size, int max, int strict);
380 * If "strict" is set to zero, it will extend numeric fields as
387 struct archive_entry *entry, int tartype, int strict, argument
554 h + USTAR_mode_offset, USTAR_mode_size, USTAR_mode_max_size, strict)) {
561 h + USTAR_uid_offset, USTAR_uid_size, USTAR_uid_max_size, strict)) {
568 h + USTAR_gid_offset, USTAR_gid_size, USTAR_gid_max_size, strict)) {
575 h + USTAR_size_offset, USTAR_size_size, USTAR_size_max_size, strict)) {
582 h + USTAR_mtime_offset, USTAR_mtime_size, USTAR_mtime_max_size, strict)) {
592 USTAR_rdevmajor_max_size, strict)) {
[all …]
/freebsd/crypto/heimdal/doc/
H A Dcopyright.texi50 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
117 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
156 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
201 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
244 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
277 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
311 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
344 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
377 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
470 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
[all …]
/freebsd/crypto/openssl/external/perl/Text-Template-1.56/
H A DChanges30 - Turn off strict+warnings in sections where template code is eval'ed
45 - use strict/warnings (thanks Mohammad S Anwar)
51 - Add "strict" option to fill_in(). This adds "use strict" and "use vars
67 + turn on strict/warnings for all tests
204 This is useful, for example, if you want to enable `strict' checks in
205 your templates but you don't want to manually add `use strict' to the
272 strict' by default. Otherwise, you get a lot of `Global symbol "$v"
H A DMakefile.PL2 use strict;
24 "strict" => 0,
55 "strict" => 0,
/freebsd/sys/dev/iicbus/
H A Diicbus.c23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
100 int strict; in iicbus_attach_common() local
107 device_get_unit(dev), "strict", &strict) == 0) in iicbus_attach_common()
108 sc->strict = strict; in iicbus_attach_common()
110 sc->strict = 1; in iicbus_attach_common()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUTargetStreamer.h71 /// When \p Strict is true, known metadata elements must already be
72 /// well-typed. When \p Strict is false, known types are inferred and
76 virtual bool EmitHSAMetadata(msgpack::Document &HSAMetadata, bool Strict) { in EmitHSAMetadata() argument
143 bool EmitHSAMetadata(msgpack::Document &HSAMetadata, bool Strict) override;
200 bool EmitHSAMetadata(msgpack::Document &HSAMetadata, bool Strict) override;
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-nice-strict_test.cc26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 #include "gmock/gmock-nice-strict.h"
446 // Tests that a strict mock allows expected calls.
454 // Tests that an unexpected call on a strict mock fails.
463 // Tests that an uninteresting call on a strict mock fails.
471 // Tests that an uninteresting call on a strict mock fails, even if
518 StrictMock< ::Mock> strict; in TEST() local
519 EXPECT_CALL(strict, DoThis()); in TEST()
520 strict.DoThis(); in TEST()
/freebsd/contrib/kyua/misc/
H A Dcontext.html1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
28 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT

12345678910>>...336