reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
 5173   DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, res, tls_begin, tls_end);
projects/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cpp
   45 static inline void DTLS_Deallocate(DTLS::DTV *dtv, uptr size) {
   48   UnmapOrDie(dtv, size * sizeof(DTLS::DTV));
   55   new_size = Max(new_size, 4096UL / sizeof(DTLS::DTV));
   56   DTLS::DTV *new_dtv =
   57       (DTLS::DTV *)MmapOrDie(new_size * sizeof(DTLS::DTV), "DTLS_Resize");
   63   DTLS::DTV *old_dtv = dtls.dtv;
   65     internal_memcpy(new_dtv, dtls.dtv, dtls.dtv_size * sizeof(DTLS::DTV));
   89 DTLS::DTV *DTLS_on_tls_get_addr(void *arg_void, void *res,
projects/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.h
   43   DTV *dtv;  // dtv_size elements, allocated by MmapOrDie.
   52 DTLS::DTV *DTLS_on_tls_get_addr(void *arg, void *res, uptr static_tls_begin,
projects/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp
 2541   DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, res, thr->tls_addr,