Searched defs:DTLS (Results 1 - 2 of 2) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_tls_get_addr.h13 // the lack of interface that would tell us about the Dynamic TLS (DTLS).
20 // Before 2.19, every DTLS chunk is allocated with __libc_memalign,
21 // which we intercept and thus know where is the DTLS.
22 // Since 2.19, DTLS chunks are allocated with __signal_safe_memalign,
36 struct DTLS { struct in namespace:__sanitizer
37 // Array of DTLS chunks for the current Thread.
53 DTLS::DTV *DTLS_on_tls_get_addr(void *arg, void *res);
55 DTLS *DTLS_Get();
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dchannel_unittest.cc128 DTLS = 0x10 }; enumerator in enum:ChannelTest::Flags
195 if ((flags1 & DTLS) && (flags2 & DTLS)) {
206 if (flags1 & DTLS) {
210 if (flags2 & DTLS) {
1206 // You can pass in DTLS and/or RTCP_MUX as flags.
1208 ASSERT((flags1_in & ~(RTCP_MUX | DTLS)) == 0);
1209 ASSERT((flags2_in & ~(RTCP_MUX | DTLS)) == 0);
1213 bool dtls1 = !!(flags1_in & DTLS);
1214 bool dtls2 = !!(flags2_in & DTLS);
[all...]

Completed in 892 milliseconds