Home | History | Annotate | Download | only in metrics

Lines Matching refs:thread_id

19 ThreadWatcher::ThreadWatcher(const BrowserThread::ID& thread_id,
23 : thread_id_(thread_id),
39 void ThreadWatcher::StartWatching(const BrowserThread::ID& thread_id,
53 thread_id, thread_name, sleep_time, unresponsive_time));
61 new ThreadWatcher(thread_id, thread_name, sleep_time, unresponsive_time);
65 if (!ThreadWatcherList::IsRegistered(thread_id))
115 thread_id(),
181 void ThreadWatcher::OnPingMessage(const BrowserThread::ID& thread_id,
184 DCHECK(BrowserThread::CurrentlyOn(thread_id));
215 DCHECK(!global_->PreLockedFind(watcher->thread_id()));
216 global_->registered_[watcher->thread_id()] = watcher;
220 bool ThreadWatcherList::IsRegistered(const BrowserThread::ID thread_id) {
221 return NULL != ThreadWatcherList::Find(thread_id);
329 ThreadWatcher* ThreadWatcherList::Find(const BrowserThread::ID& thread_id) {
333 return global_->PreLockedFind(thread_id);
337 const BrowserThread::ID& thread_id) {
338 RegistrationList::iterator it = registered_.find(thread_id);