Searched refs:DTLS (Results 1 – 17 of 17) sorted by relevance
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_tls_get_addr.cc | 38 static __thread DTLS dtls; 46 static inline void DTLS_Deallocate(DTLS::DTV *dtv, uptr size) { in DTLS_Deallocate() 49 UnmapOrDie(dtv, size * sizeof(DTLS::DTV)); in DTLS_Deallocate() 56 new_size = Max(new_size, 4096UL / sizeof(DTLS::DTV)); in DTLS_Resize() 57 DTLS::DTV *new_dtv = in DTLS_Resize() 58 (DTLS::DTV *)MmapOrDie(new_size * sizeof(DTLS::DTV), "DTLS_Resize"); in DTLS_Resize() 64 DTLS::DTV *old_dtv = dtls.dtv; in DTLS_Resize() 66 internal_memcpy(new_dtv, dtls.dtv, dtls.dtv_size * sizeof(DTLS::DTV)); in DTLS_Resize() 90 DTLS::DTV *DTLS_on_tls_get_addr(void *arg_void, void *res, in DTLS_on_tls_get_addr() 137 DTLS *DTLS_Get() { return &dtls; } in DTLS_Get() [all …]
|
D | sanitizer_tls_get_addr.h | 36 struct DTLS { struct 53 DTLS::DTV *DTLS_on_tls_get_addr(void *arg, void *res, uptr static_tls_begin, argument 56 DTLS *DTLS_Get();
|
D | sanitizer_common_interceptors.inc | 4459 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, res, tls_begin, tls_end); 4461 // New DTLS block has been allocated. 4492 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, ptr, tls_begin, tls_end); 4494 // New DTLS block has been allocated.
|
/external/compiler-rt/lib/lsan/ |
D | lsan_thread.h | 21 struct DTLS; 37 DTLS *dtls() { return dtls_; } in dtls() 43 DTLS *dtls_;
|
D | lsan_common.h | 34 struct DTLS; 156 uptr *cache_end, DTLS **dtls);
|
D | lsan_thread.cc | 66 DTLS *dtls; 141 uptr *cache_end, DTLS **dtls) { in GetThreadRangesLocked()
|
D | lsan_common.cc | 197 DTLS *dtls; in ProcessThreads()
|
/external/compiler-rt/lib/asan/ |
D | asan_thread.h | 27 struct DTLS; 74 DTLS *dtls() { return dtls_; } in dtls() 154 DTLS *dtls_;
|
D | asan_thread.cc | 400 uptr *cache_end, DTLS **dtls) { in GetThreadRangesLocked()
|
/external/webrtc/talk/session/media/ |
D | channel_unittest.cc | 128 DTLS = 0x10 }; enumerator 165 if ((flags1 & DTLS) && (flags2 & DTLS)) { in CreateChannels() 176 if (flags1 & DTLS) { in CreateChannels() 182 if (flags2 & DTLS) { in CreateChannels() 1247 ASSERT((flags1_in & ~(RTCP_MUX | DTLS)) == 0); in SendSrtpToSrtp() 1248 ASSERT((flags2_in & ~(RTCP_MUX | DTLS)) == 0); in SendSrtpToSrtp() 1252 bool dtls1 = !!(flags1_in & DTLS); in SendSrtpToSrtp() 1253 bool dtls2 = !!(flags2_in & DTLS); in SendSrtpToSrtp() 2080 Base::SendSrtpToSrtp(DTLS, 0); in TEST_F() 2085 Base::SendSrtpToSrtp(DTLS, DTLS); in TEST_F() [all …]
|
/external/compiler-rt/lib/msan/ |
D | msan_thread.cc | 38 DTLS *dtls = DTLS_Get(); in ClearShadowForThreadStackAndTLS()
|
/external/boringssl/src/ssl/test/ |
D | README.md | 21 test DTLS code enforces strict ordering on sequence numbers and has controlled
|
D | PORTING.md | 25 runner as a TCP client even when acting as a TLS server. For DTLS,
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/tests/ |
D | ARDAppClientTest.mm | 259 // TODO(tkchin): Figure out why DTLS-SRTP constraint causes thread assertion 274 // TODO(tkchin): Figure out why DTLS-SRTP constraint causes thread assertion
|
/external/mdnsresponder/ |
D | PrivateDNS.txt | 85 A potential solution to this deficiency might be in using DTLS, which is 87 More investigation needs to be done to see if DTLS is suitable for
|
/external/boringssl/src/ |
D | PORTING.md | 121 * There is no support for renegotiation in DTLS.
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_interceptors.cc | 2405 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, res, thr->tls_addr, thr->tls_size); in TSAN_INTERCEPTOR()
|