HomeSort by: relevance | last modified time | path
    Searched defs:dtls (Results 1 - 25 of 25) sorted by relevancy

  /src/external/gpl3/gcc/dist/libsanitizer/lsan/
lsan_posix.h 25 struct DTLS;
36 DTLS *dtls() { return dtls_; } function in class:__lsan::final
41 DTLS *dtls_ = nullptr;
lsan_posix.cpp 34 DTLS *dtls; member in struct:__lsan::OnStartedArgs
46 dtls_ = args->dtls;
58 args.dtls = DTLS_Get();
64 uptr *cache_end, DTLS **dtls) {
75 *dtls = context->dtls();
lsan_common.cpp 407 DTLS *dtls; local
410 &tls_end, &cache_begin, &cache_end, &dtls);
490 reinterpret_cast<Frontier *>(arg), "DTLS",
495 // thread is suspended in the middle of updating its DTLS. IOWs, we
499 if (dtls && !DTLSInDestruction(dtls)) {
500 ForEachDVT(dtls, [&](const DTLS::DTV &dtv, int id) {
504 LOG_THREADS("DTLS %d at %p-%p.\n", id, (void *)dtls_beg
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
lsan_posix.h 25 struct DTLS;
36 DTLS *dtls() { return dtls_; } function in class:__lsan::final
41 DTLS *dtls_ = nullptr;
lsan_posix.cpp 33 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();
lsan_common.cpp 284 DTLS *dtls; local
287 &cache_begin, &cache_end, &dtls);
361 reinterpret_cast<Frontier *>(arg), "DTLS",
366 // thread is suspended in the middle of updating its DTLS. IOWs, we
370 if (dtls && !DTLSInDestruction(dtls)) {
371 ForEachDVT(dtls, [&](const DTLS::DTV &dtv, int id) {
375 LOG_THREADS("DTLS %d at %p-%p.\n", id, (void *)dtls_beg
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_thread.h 21 struct DTLS;
37 DTLS *dtls() { return dtls_; } function in class:__lsan::ThreadContext
43 DTLS *dtls_;
lsan_thread.cc 56 DTLS *dtls; member in struct:__lsan::OnStartedArgs
67 dtls_ = args->dtls;
89 args.dtls = DTLS_Get();
132 uptr *cache_end, DTLS **dtls) {
142 *dtls = context->dtls();
lsan_common.cc 226 DTLS *dtls; local
229 &cache_begin, &cache_end, &dtls);
293 if (dtls && !DTLSInDestruction(dtls)) {
294 for (uptr j = 0; j < dtls->dtv_size; ++j) {
295 uptr dtls_beg = dtls->dtv[j].beg;
296 uptr dtls_end = dtls_beg + dtls->dtv[j].size;
298 LOG_THREADS("DTLS %zu at %p-%p.\n", j, dtls_beg, dtls_end);
299 ScanRangeForPointers(dtls_beg, dtls_end, frontier, "DTLS",
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_thread.cc 38 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);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_tls_get_addr.cc 38 static __thread DTLS dtls; member in namespace:__sanitizer
40 // Make sure we properly destroy the DTLS objects:
46 static inline void DTLS_Deallocate(DTLS::DTV *dtv, uptr size) {
49 UnmapOrDie(dtv, size * sizeof(DTLS::DTV));
54 if (dtls.dtv_size >= new_size) return;
56 new_size = Max(new_size, 4096UL / sizeof(DTLS::DTV));
57 DTLS::DTV *new_dtv =
58 (DTLS::DTV *)MmapOrDie(new_size * sizeof(DTLS::DTV), "DTLS_Resize")
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_tls_get_addr.cpp 32 static __thread DTLS dtls; member in namespace:__sanitizer
34 // Make sure we properly destroy the DTLS objects:
40 static void DTLS_Deallocate(DTLS::DTVBlock *block) {
42 UnmapOrDie(block, sizeof(DTLS::DTVBlock));
46 static DTLS::DTVBlock *DTLS_NextBlock(atomic_uintptr_t *cur) {
50 DTLS::DTVBlock *next = (DTLS::DTVBlock *)v;
53 DTLS::DTVBlock *new_dtv =
54 (DTLS::DTVBlock *)MmapOrDie(sizeof(DTLS::DTVBlock), "DTLS_NextBlock")
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_tls_get_addr.cpp 38 static __thread DTLS dtls; member in namespace:__sanitizer
40 // Make sure we properly destroy the DTLS objects:
46 static void DTLS_Deallocate(DTLS::DTVBlock *block) {
48 UnmapOrDie(block, sizeof(DTLS::DTVBlock));
52 static DTLS::DTVBlock *DTLS_NextBlock(atomic_uintptr_t *cur) {
56 DTLS::DTVBlock *next = (DTLS::DTVBlock *)v;
59 DTLS::DTVBlock *new_dtv =
60 (DTLS::DTVBlock *)MmapOrDie(sizeof(DTLS::DTVBlock), "DTLS_NextBlock")
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_thread.h 27 struct DTLS;
81 DTLS *dtls() { return dtls_; } function in class:__asan::AsanThread
163 DTLS *dtls_;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_deadlock_detector_test.cc 38 dtls.clear();
42 DeadlockDetectorTLS<BV> dtls; member in struct:ScopedDD
50 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local
76 dtls.clear();
79 EXPECT_FALSE(d.onLock(&dtls, n1));
80 EXPECT_FALSE(d.onLock(&dtls, n2));
81 d.onUnlock(&dtls, n2);
82 d.onUnlock(&dtls, n1);
84 EXPECT_FALSE(d.onLock(&dtls, n2))
141 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local
247 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local
292 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local
324 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local
351 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local
389 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local
419 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local
457 DeadlockDetectorTLS<BV> &dtls = sdd.dtls; local
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_thread.h 27 struct DTLS;
91 DTLS *dtls() { return dtls_; } function in class:__asan::AsanThread
184 DTLS *dtls_;
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_thread.h 49 DTLS *dtls() { return dtls_; } function in class:__hwasan::Thread
88 DTLS *dtls_;
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_thread.h 26 struct DTLS;
76 DTLS *dtls() { return dtls_; } function in class:__asan::AsanThread
163 DTLS *dtls_;
  /src/crypto/external/bsd/openssl/dist/ssl/statem/
statem_lib.c 1056 * RFC6083: SCTP provides a reliable and in-sequence transport service for DTLS
1057 * messages that require it. Therefore, DTLS procedures for retransmissions
1059 * Hence the init_buf can be cleared when DTLS over SCTP as transport is used.
1065 * We don't do this in DTLS over UDP because we may still need the init_buf
1420 int dtls = SSL_IS_DTLS(s); local
1424 if (!dtls)
1693 * Restrict DTLS methods to DTLS protocol versions.
1694 * Note, DTLS version numbers are decreasing, use comparison macros.
  /src/crypto/external/bsd/openssl.old/dist/ssl/statem/
statem_lib.c 1041 * RFC6083: SCTP provides a reliable and in-sequence transport service for DTLS
1042 * messages that require it. Therefore, DTLS procedures for retransmissions
1044 * Hence the init_buf can be cleared when DTLS over SCTP as transport is used.
1050 * We don't do this in DTLS over UDP because we may still need the init_buf
1406 int dtls = SSL_IS_DTLS(s); local
1410 if (!dtls)
1689 * Restrict DTLS methods to DTLS protocol versions.
1690 * Note, DTLS version numbers are decreasing, use comparison macros.
  /src/crypto/external/apache2/openssl/dist/ssl/statem/
statem_lib.c 1443 * RFC6083: SCTP provides a reliable and in-sequence transport service for DTLS
1444 * messages that require it. Therefore, DTLS procedures for retransmissions
1446 * Hence the init_buf can be cleared when DTLS over SCTP as transport is used.
1452 * We don't do this in DTLS over UDP because we may still need the init_buf
1813 * SSL/TLS/DTLS version comparison
1822 int dtls = SSL_CONNECTION_IS_DTLS(s); local
1826 if (!dtls)
2091 /* We support client side pre-standardisation version of DTLS */
2101 * Restrict DTLS methods to DTLS protocol versions
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/
ssl_old_test.c 670 fprintf(stderr, " -dtls - use DTLS\n");
900 int dtls1 = 0, dtls12 = 0, dtls = 0, tls1 = 0, tls1_1 = 0, tls1_2 = 0, ssl3 = 0; local
1036 } else if (strcmp(*argv, "-dtls") == 0) {
1037 dtls = 1;
1248 if (ssl3 + tls1 + tls1_1 + tls1_2 + dtls + dtls1 + dtls12 > 1) {
1249 fprintf(stderr, "At most one of -ssl3, -tls1, -tls1_1, -tls1_2, -dtls, -dtls1 or -dtls12 should "
1298 if (!ssl3 && !tls1 && !tls1_1 && !tls1_2 && !dtls && !dtls1 && !dtls12 && number > 1
1302 "or add one of -ssl3, -tls1, -tls1_1, -tls1_2, -dtls, -dtls1, -dtls12, -reuse\n"
1369 if (dtls || dtls1 || dtls12)
    [all...]
  /src/crypto/external/bsd/openssl/dist/test/
ssl_old_test.c 664 fprintf(stderr, " -dtls - use DTLS\n");
889 int dtls1 = 0, dtls12 = 0, dtls = 0, tls1 = 0, tls1_1 = 0, tls1_2 = 0, ssl3 = 0; local
1031 } else if (strcmp(*argv, "-dtls") == 0) {
1032 dtls = 1;
1245 if (ssl3 + tls1 + tls1_1 + tls1_2 + dtls + dtls1 + dtls12 > 1) {
1246 fprintf(stderr, "At most one of -ssl3, -tls1, -tls1_1, -tls1_2, -dtls, -dtls1 or -dtls12 should "
1295 if (!ssl3 && !tls1 && !tls1_1 && !tls1_2 && !dtls && !dtls1 && !dtls12 && number > 1
1299 "or add one of -ssl3, -tls1, -tls1_1, -tls1_2, -dtls, -dtls1, -dtls12, -reuse\n"
1368 if (dtls || dtls1 || dtls12)
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/
ssltest_old.c 671 fprintf(stderr, " -dtls - use DTLS\n");
895 int dtls1 = 0, dtls12 = 0, dtls = 0, tls1 = 0, tls1_1 = 0, tls1_2 = 0, ssl3 = 0; local
1058 } else if (strcmp(*argv, "-dtls") == 0) {
1059 dtls = 1;
1260 if (ssl3 + tls1 + tls1_1 + tls1_2 + dtls + dtls1 + dtls12 > 1) {
1261 fprintf(stderr, "At most one of -ssl3, -tls1, -tls1_1, -tls1_2, -dtls, -dtls1 or -dtls12 should "
1310 if (!ssl3 && !tls1 && !tls1_1 && !tls1_2 && !dtls && !dtls1 && !dtls12 && number > 1
1314 "or add one of -ssl3, -tls1, -tls1_1, -tls1_2, -dtls, -dtls1, -dtls12, -reuse\n"
1378 if (dtls || dtls1 || dtls12)
    [all...]
  /src/external/bsd/ntp/dist/ntpd/
refclock_parse.c 4258 int dtls,
4268 * currently being announced (i.e. dtlsf != dtls) then the week number
4272 if ( dtlsf != dtls )
4293 dtls, dtlsf, ( dtls < dtlsf ) ? "insertion" : "deletion" );
4304 snprintf( t, size, "UTC offset parameter: %is, no leap second announced.", dtls );
5661 short dtls = (short) getshort((unsigned char *)&mb(12)); local
5668 mk_utcinfo(t, wnt, wnlsf, dn, dtls, dtlsf, BUFFER_SIZE(pbuffer, t));

Completed in 60 milliseconds