Home | History | Annotate | Download | only in asan

Lines Matching defs:thread

32 // These objects are created for every thread and are never deleted,
33 // so we can find them by tid even if the thread is long dead.
41 thread(0) {
46 AsanThread *thread;
55 // AsanThread are stored in TSD and destroyed when the thread dies.
62 void Init(); // Should be called from the thread itself.
100 // True is this thread is currently unwinding stack (i.e. collecting a stack
136 explicit ScopedUnwinding(AsanThread *t) : thread(t) {
139 ~ScopedUnwinding() { thread->setUnwinding(false); }
142 AsanThread *thread;
146 AsanThread *thread;
156 // Get the current thread. May return 0.