HomeSort by relevance Sort by last modified time
    Searched refs:thread_id_ (Results 1 - 12 of 12) sorted by null

  /external/chromium/base/threading/
thread.cc 54 thread_id_(kInvalidThreadId),
116 // Reading thread_id_ without a lock can lead to a benign data race
118 DCHECK_NE(ANNOTATE_UNPROTECTED_READ(thread_id_), PlatformThread::CurrentId());
149 thread_id_ = PlatformThread::CurrentId();
176 thread_id_ = kInvalidThreadId;
thread.h 126 PlatformThreadId thread_id() const { return thread_id_; }
129 // When a thread is running, |thread_id_| is a valid id.
130 bool IsRunning() const { return thread_id_ != kInvalidThreadId; }
183 PlatformThreadId thread_id_; member in class:base::Thread
platform_thread_unittest.cc 57 FunctionTestThread() : thread_id_(0) {}
60 thread_id_ = PlatformThread::CurrentId();
67 PlatformThreadId thread_id() const { return thread_id_; }
70 PlatformThreadId thread_id_; member in class:base::FunctionTestThread
  /external/chromium/chrome/browser/importer/
profile_import_process_host.h 27 // the IO thread. It passes messages back to the |thread_id_| thread through
75 BrowserThread::ID thread_id_; member in class:ProfileImportProcessHost
profile_import_process_host.cc 24 thread_id_(thread_id) {
125 thread_id_, FROM_HERE,
135 thread_id_, FROM_HERE,
  /external/chromium/chrome/browser/prefs/
pref_member.cc 80 PrefMemberBase::Internal::Internal() : thread_id_(BrowserThread::UI) { }
85 return (BrowserThread::CurrentlyOn(thread_id_) ||
86 (thread_id_ == BrowserThread::UI &&
98 thread_id_, FROM_HERE,
108 thread_id_ = thread_id;
pref_member.h 74 BrowserThread::ID thread_id_; member in class:subtle::PrefMemberBase::Internal
  /external/chromium/chrome/browser/metrics/
thread_watcher.h 71 BrowserThread::ID thread_id() const { return thread_id_; }
158 const BrowserThread::ID thread_id_; member in class:ThreadWatcher
thread_watcher.cc 23 : thread_id_(thread_id),
118 &ThreadWatcher::OnPingMessage, thread_id_, callback_task))) {
  /external/v8/src/
isolate.h 238 ThreadId thread_id_; member in class:v8::internal::BASE_EMBEDDED
372 thread_id_(thread_id),
382 ThreadId thread_id() const { return thread_id_; }
397 return isolate_ == isolate && thread_id_.Equals(thread_id);
402 ThreadId thread_id_; member in class:v8::internal::Isolate::PerIsolateThreadData
531 ThreadId thread_id() { return thread_local_top_.thread_id_; }
532 void set_thread_id(ThreadId id) { thread_local_top_.thread_id_ = id; }
    [all...]
platform-win32.cc 1590 unsigned thread_id_; member in class:v8::internal::Thread::PlatformData
    [all...]
isolate.cc 97 thread_id_ = ThreadId::Invalid();
123 thread_id_ = ThreadId::Current();
    [all...]

Completed in 171 milliseconds