Searched refs:dtls (Results 1 - 15 of 15) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_tls_get_addr.cpp37 static __thread DTLS dtls; member in namespace:__sanitizer
53 if (dtls.dtv_size >= new_size) return;
60 VReport(2, "__tls_get_addr: DTLS_Resize %p %zd\n", &dtls, num_live_dtls);
62 uptr old_dtv_size = dtls.dtv_size;
63 DTLS::DTV *old_dtv = dtls.dtv;
65 internal_memcpy(new_dtv, dtls.dtv, dtls.dtv_size * sizeof(DTLS::DTV));
66 dtls.dtv = new_dtv;
67 dtls.dtv_size = new_size;
74 VReport(2, "__tls_get_addr: DTLS_Destroy %p %zd\n", &dtls, dtl
138 DTLSInDestruction(DTLS *dtls) argument
[all...]
H A Dsanitizer_deadlock_detector.h195 void ensureCurrentEpoch(DeadlockDetectorTLS<BV> *dtls) { argument
196 dtls->ensureCurrentEpoch(current_epoch_);
202 bool onLockBefore(DeadlockDetectorTLS<BV> *dtls, uptr cur_node) { argument
203 ensureCurrentEpoch(dtls);
205 return g_.isReachable(cur_idx, dtls->getLocks(current_epoch_));
208 u32 findLockContext(DeadlockDetectorTLS<BV> *dtls, uptr node) { argument
209 return dtls->findLockContext(nodeToIndex(node));
212 // Add cur_node to the set of locks held currently by dtls.
213 void onLockAfter(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) { argument
214 ensureCurrentEpoch(dtls);
221 hasAllEdges(DeadlockDetectorTLS<BV> *dtls, uptr cur_node) argument
240 addEdges(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk, int unique_tid) argument
275 onLock(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) argument
288 onTryLock(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) argument
298 onFirstLock(DeadlockDetectorTLS<BV> *dtls, uptr node, u32 stk = 0) argument
310 findPathToLock(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, uptr *path, uptr path_size) argument
325 onUnlock(DeadlockDetectorTLS<BV> *dtls, uptr node) argument
334 onLockFast(DeadlockDetectorTLS<BV> *dtls, uptr node, u32 stk = 0) argument
342 isHeld(DeadlockDetectorTLS<BV> *dtls, uptr node) const argument
[all...]
H A Dsanitizer_tls_get_addr.h58 bool DTLSInDestruction(DTLS *dtls);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_thread.cpp38 DTLS *dtls = DTLS_Get(); local
39 CHECK_NE(dtls, 0);
40 for (uptr i = 0; i < dtls->dtv_size; ++i)
41 __msan_unpoison((void *)(dtls->dtv[i].beg), dtls->dtv[i].size);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_posix.cpp33 DTLS *dtls; member in struct:__lsan::OnStartedArgs
44 dtls_ = args->dtls;
56 args.dtls = DTLS_Get();
62 uptr *cache_end, DTLS **dtls) {
73 *dtls = context->dtls();
60 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) argument
H A Dlsan_posix.h36 DTLS *dtls() { return dtls_; } function in class:__lsan::ThreadContext
H A Dlsan_common.cpp235 DTLS *dtls; local
238 &cache_begin, &cache_end, &dtls);
302 if (dtls && !DTLSInDestruction(dtls)) {
303 for (uptr j = 0; j < dtls->dtv_size; ++j) {
304 uptr dtls_beg = dtls->dtv[j].beg;
305 uptr dtls_end = dtls_beg + dtls->dtv[j].size;
H A Dlsan_common.h225 uptr *cache_end, DTLS **dtls);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp469 uptr *cache_end, DTLS **dtls) {
479 *dtls = t->dtls();
467 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) argument
H A Dasan_thread.h80 DTLS *dtls() { return dtls_; } function in class:__asan::AsanThread
/freebsd-13-stable/crypto/openssl/
H A DConfigure337 my @dtls = qw(dtls1 dtls1_2);
372 "dtls",
439 foreach my $proto ((@tls, @dtls))
492 "dgram" => [ "dtls", "sctp" ],
494 "dtls" => [ @dtls ],
495 sub { 0 == scalar grep { !$disabled{$_} } @dtls }
496 => [ "dtls" ],
534 my @list = (reverse @dtls);
697 foreach my $proto ((@tls, @dtls))
[all...]
/freebsd-13-stable/contrib/ntp/ntpd/
H A Drefclock_parse.c4242 int dtls,
4252 * currently being announced (i.e. dtlsf != dtls) then the week number
4256 if ( dtlsf != dtls )
4277 dtls, dtlsf, ( dtls < dtlsf ) ? "insertion" : "deletion" );
4288 snprintf( t, size, "UTC offset parameter: %is, no leap second announced.\n", dtls );
5645 short dtls = (short) getshort((unsigned char *)&mb(12)); local
5652 mk_utcinfo(t, wnt, wnlsf, dn, dtls, dtlsf, BUFFER_SIZE(pbuffer, t));
4237 mk_utcinfo( char *t, uint16_t wnt, uint16_t wnlsf, int dn, int dtls, int dtlsf, int size ) argument
/freebsd-13-stable/crypto/openssl/ssl/statem/
H A Dstatem_lib.c1406 int dtls = SSL_IS_DTLS(s); local
1410 if (!dtls)
/freebsd-13-stable/sys/contrib/ncsw/inc/Peripherals/
H A Dfm_pcd_ext.h2436 bool dtls; /**< TRUE if continue to SEC DTLS encryption */ member in struct:t_FmPcdManipSpecialOffloadCapwapParams
/freebsd-13-stable/sys/contrib/ncsw/Peripherals/FM/Pcd/
H A Dfm_manip.c4397 tmpReg32 |= (p_Params->dtls) ? FM_PCD_MANIP_CAPWAP_DTLS : 0;

Completed in 188 milliseconds