Home | History | Annotate | Download | only in lsan

Lines Matching refs:tid

29 static ThreadContextBase *CreateThreadContext(u32 tid) {
31 return new(mem) ThreadContext(tid);
47 void SetCurrentThread(u32 tid) {
48 current_thread_tid = tid;
51 ThreadContext::ThreadContext(int tid)
52 : ThreadContextBase(tid),
85 void ThreadStart(u32 tid, uptr os_id) {
89 GetThreadStackAndTls(tid == 0, &args.stack_begin, &stack_size,
94 thread_registry->StartThread(tid, os_id, &args);
121 void ThreadJoin(u32 tid) {
122 CHECK_NE(tid, kInvalidTid);
123 thread_registry->JoinThread(tid, /* arg */0);