Home | History | Annotate | Download | only in sanitizer_common

Lines Matching refs:u32

36   explicit ThreadContextBase(u32 tid);
39 const u32 tid; // Thread ID. Main thread should have tid = 0.
41 u32 reuse_count; // Number of times this tid was reused.
49 u32 parent_tid;
59 u32 _parent_tid, void *arg);
74 typedef ThreadContextBase* (*ThreadContextFactory)(u32 tid);
78 static const u32 kUnknownTid;
80 ThreadRegistry(ThreadContextFactory factory, u32 max_threads,
81 u32 thread_quarantine_size, u32 max_reuse = 0);
91 ThreadContextBase *GetThreadLocked(u32 tid) {
96 u32 CreateThread(uptr user_id, bool detached, u32 parent_tid, void *arg);
106 u32 FindThread(FindThreadCallback cb, void *arg);
113 void SetThreadName(u32 tid, const char *name);
115 void DetachThread(u32 tid, void *arg);
116 void JoinThread(u32 tid, void *arg);
117 void FinishThread(u32 tid);
118 void StartThread(u32 tid, uptr os_id, void *arg);
122 const u32 max_threads_;
123 const u32 thread_quarantine_size_;
124 const u32 max_reuse_;
128 u32 n_contexts_; // Number of created thread contexts,