Home | History | Annotate | Download | only in metrics

Lines Matching defs:thread_id

58   // This method starts performing health check on the given thread_id. It will
59 // create ThreadWatcher object for the given thread_id, thread_name,
64 // thread_id.
65 static void StartWatching(const BrowserThread::ID& thread_id,
70 // Return the thread_id of the thread being watched.
71 BrowserThread::ID thread_id() const { return thread_id_; }
92 // Construct a ThreadWatcher for the given thread_id. sleep_time_ is the
95 ThreadWatcher(const BrowserThread::ID& thread_id,
149 static void OnPingMessage(const BrowserThread::ID& thread_id,
156 // The thread_id of the thread being watched. Only one instance can exist for
157 // the given thread_id of the thread being watched.
217 static bool IsRegistered(const BrowserThread::ID thread_id);
258 static ThreadWatcher* Find(const BrowserThread::ID& thread_id);
261 ThreadWatcher* PreLockedFind(const BrowserThread::ID& thread_id);
268 // Map of all registered watched threads, from thread_id to ThreadWatcher.