/freebsd/crypto/openssl/test/ssl-tests/ |
H A D | protocol_version.pm | 105 my ($dtls, $fips) = @_; 106 if ($dtls && $fips) { 109 return $dtls ? alldisabled("dtls1", "dtls1_2") : 117 my $dtls = $method eq "DTLS"; 119 undef $method if !$dtls; 127 @protocols = $dtls ? @dtls_protocols_fips : @tls_protocols_fips; 128 @min_protocols = $dtls ? @min_dtls_protocols_fips : @min_tls_protocols_fips; 129 @max_protocols = $dtls ? @max_dtls_protocols_fips : @max_tls_protocols_fips; 130 $min_enabled = $dtls ? $min_dtls_enabled_fips : $min_tls_enabled_fips; 131 $max_enabled = $dtls ? $max_dtls_enabled_fips : $max_tls_enabled_fips; [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_deadlock_detector.h | 195 void ensureCurrentEpoch(DeadlockDetectorTLS<BV> *dtls) { in ensureCurrentEpoch() argument 196 dtls->ensureCurrentEpoch(current_epoch_); in ensureCurrentEpoch() 202 bool onLockBefore(DeadlockDetectorTLS<BV> *dtls, uptr cur_node) { in onLockBefore() argument 203 ensureCurrentEpoch(dtls); in onLockBefore() 205 return g_.isReachable(cur_idx, dtls->getLocks(current_epoch_)); in onLockBefore() 208 u32 findLockContext(DeadlockDetectorTLS<BV> *dtls, uptr node) { in findLockContext() argument 209 return dtls->findLockContext(nodeToIndex(node)); in findLockContext() 213 void onLockAfter(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) { 214 ensureCurrentEpoch(dtls); 216 dtls->addLock(cur_idx, current_epoch_, stk); [all …]
|
H A D | sanitizer_tls_get_addr.cpp | 32 static __thread DTLS dtls; variable 63 VReport(2, "__tls_get_addr: DTLS_NextBlock %p %zd\n", (void *)&dtls, in DTLS_NextBlock() 69 VReport(2, "__tls_get_addr: DTLS_Find %p %zd\n", (void *)&dtls, id); in DTLS_Find() 71 DTLS::DTVBlock *cur = DTLS_NextBlock(&dtls.dtv_block); in DTLS_Find() 80 VReport(2, "__tls_get_addr: DTLS_Destroy %p\n", (void *)&dtls); in DTLS_Destroy() 82 &dtls.dtv_block, kDestroyedThread, memory_order_release); in DTLS_Destroy() 129 if (dtls.last_memalign_ptr == tls_beg) { in DTLS_on_tls_get_addr() 130 tls_size = dtls.last_memalign_size; in DTLS_on_tls_get_addr() 157 dtls.last_memalign_ptr = reinterpret_cast<uptr>(ptr); in DTLS_on_libc_memalign() 158 dtls.last_memalign_size = size; in DTLS_on_libc_memalign() [all …]
|
H A D | sanitizer_tls_get_addr.h | 65 void ForEachDVT(DTLS *dtls, const Fn &fn) { in ForEachDVT() argument 67 (DTLS::DTVBlock *)atomic_load(&dtls->dtv_block, memory_order_acquire); in ForEachDVT() 83 bool DTLSInDestruction(DTLS *dtls);
|
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
H A D | lsan_posix.cpp | 36 DTLS *dtls; 48 dtls_ = args->dtls; 60 args.dtls = DTLS_Get(); in ThreadStart() 66 uptr *cache_end, DTLS **dtls) { in GetThreadRangesLocked() 77 *dtls = context->dtls(); in GetThreadRangesLocked() 34 DTLS *dtls; global() member 64 GetThreadRangesLocked(tid_t os_id,uptr * stack_begin,uptr * stack_end,uptr * tls_begin,uptr * tls_end,uptr * cache_begin,uptr * cache_end,DTLS ** dtls) GetThreadRangesLocked() argument
|
H A D | lsan_posix.h | 36 DTLS *dtls() { return dtls_; } in dtls() function
|
H A D | lsan_common.cpp | 411 DTLS *dtls; in ProcessThreads() local 414 &tls_end, &cache_begin, &cache_end, &dtls); in ProcessThreads() 503 if (dtls && !DTLSInDestruction(dtls)) { in ProcessThreads() 504 ForEachDVT(dtls, [&](const DTLS::DTV &dtv, int id) { in ProcessThreads()
|
H A D | lsan_common.h | 107 uptr *cache_end, DTLS **dtls);
|
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
H A D | dfsan_thread.cpp | 39 DTLS *dtls = DTLS_Get(); in ClearShadowForThreadStackAndTLS() local 40 CHECK_NE(dtls, 0); in ClearShadowForThreadStackAndTLS() 41 ForEachDVT(dtls, [](const DTLS::DTV &dtv, int id) { in ClearShadowForThreadStackAndTLS()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_thread.cpp | 38 DTLS *dtls = DTLS_Get(); in ClearShadowForThreadStackAndTLS() local 39 CHECK_NE(dtls, 0); in ClearShadowForThreadStackAndTLS() 40 ForEachDVT(dtls, [](const DTLS::DTV &dtv, int id) { in ClearShadowForThreadStackAndTLS()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_thread.cpp | 196 uptr *cache_end, DTLS **dtls) { in GetThreadRangesLocked() 207 *dtls = t->dtls(); in GetThreadRangesLocked() 195 GetThreadRangesLocked(tid_t os_id,uptr * stack_begin,uptr * stack_end,uptr * tls_begin,uptr * tls_end,uptr * cache_begin,uptr * cache_end,DTLS ** dtls) GetThreadRangesLocked() argument
|
H A D | hwasan_thread.h | 49 DTLS *dtls() { return dtls_; } in dtls() function
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_thread.cpp | 507 uptr *cache_end, DTLS **dtls) { in GetThreadRangesLocked() argument 518 *dtls = t->dtls(); in GetThreadRangesLocked()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_thread.h | 76 DTLS *dtls() { return dtls_; } in dtls() function
|
/freebsd/crypto/openssl/ |
H A D | Configure | 394 my @dtls = qw(dtls1 dtls1_2); 508 foreach my $proto ((@tls, @dtls)) 590 "dtls" => [ @dtls ], 591 sub { 0 == scalar grep { !$disabled{$_} } @dtls } 654 my @list = (reverse @dtls); 815 foreach my $proto ((@tls, @dtls)) 825 foreach my $proto (@dtls)
|
H A D | configdata.pm.in | 67 dtls => [{- dump_data(\@dtls, indent => 0) -}],
|
H A D | INSTALL.md | 978 no-{ssl|ssl3|tls|tls1|tls1_1|tls1_2|tls1_3|dtls|dtls1|dtls1_2} 984 Similarly `no-dtls` will disable `dtls1` and `dtls1_2`. The `no-ssl` option is
|
/freebsd/crypto/openssl/test/ |
H A D | ssl_old_test.c | 889 int dtls1 = 0, dtls12 = 0, dtls = 0, tls1 = 0, tls1_1 = 0, tls1_2 = 0, ssl3 = 0; in main() local 1032 dtls = 1; in main() 1245 if (ssl3 + tls1 + tls1_1 + tls1_2 + dtls + dtls1 + dtls12 > 1) { in main() 1295 if (!ssl3 && !tls1 && !tls1_1 && !tls1_2 && !dtls && !dtls1 && !dtls12 && number > 1 in main() 1368 if (dtls || dtls1 || dtls12) { in main()
|
/freebsd/contrib/ntp/ntpd/ |
H A D | refclock_parse.c | 4256 int dtls, in mk_utcinfo() argument 4270 if ( dtlsf != dtls ) in mk_utcinfo() 4291 dtls, dtlsf, ( dtls < dtlsf ) ? "insertion" : "deletion" ); in mk_utcinfo() 4302 snprintf( t, size, "UTC offset parameter: %is, no leap second announced.", dtls ); in mk_utcinfo() 5659 short dtls = (short) getshort((unsigned char *)&mb(12)); in trimbletsip_message() local 5666 mk_utcinfo(t, wnt, wnlsf, dn, dtls, dtlsf, BUFFER_SIZE(pbuffer, t)); in trimbletsip_message()
|
/freebsd/crypto/openssl/doc/man1/ |
H A D | openssl.pod | 574 =item B<-dtls>, B<-dtls1>, B<-dtls1_2> 577 With B<-dtls>, clients will negotiate any supported DTLS protocol version.
|
H A D | openssl-s_server.pod.in | 736 conjunction with B<-dtls>, B<-dtls1> or B<-dtls1_2>. This option is only
|
H A D | openssl-s_client.pod.in | 523 conjunction with B<-dtls>, B<-dtls1> or B<-dtls1_2>. This option is only
|
/freebsd/crypto/openssl/ssl/statem/ |
H A D | statem_lib.c | 1420 int dtls = SSL_IS_DTLS(s); in version_cmp() local 1424 if (!dtls) in version_cmp()
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | provider-base.pod | 600 =item "tls-min-dtls" (B<OSSL_CAPABILITY_TLS_GROUP_MIN_DTLS>) <integer> 602 =item "tls-max-dtls" (B<OSSL_CAPABILITY_TLS_GROUP_MAX_DTLS>) <integer>
|
/freebsd/sys/contrib/ncsw/inc/Peripherals/ |
H A D | fm_pcd_ext.h | 2436 bool dtls; /**< TRUE if continue to SEC DTLS encryption */ member
|