Home | History | Annotate | Download | only in msan

Lines Matching refs:MsanThread

10 MsanThread *MsanThread::Create(thread_callback_t start_routine,
13 uptr size = RoundUpTo(sizeof(MsanThread), PageSize);
14 MsanThread *thread = (MsanThread*)MmapOrDie(size, __func__);
22 void MsanThread::SetThreadStackAndTls() {
34 void MsanThread::ClearShadowForThreadStackAndTLS() {
44 void MsanThread::Init() {
51 void MsanThread::TSDDtor(void *tsd) {
52 MsanThread *t = (MsanThread*)tsd;
56 void MsanThread::Destroy() {
62 uptr size = RoundUpTo(sizeof(MsanThread), GetPageSizeCached());
67 thread_return_t MsanThread::ThreadStart() {