Searched refs:thread_id_ (Results 1 - 25 of 53) sorted by relevance

123

/external/chromium_org/components/browser_context_keyed_service/
H A Drefcounted_browser_context_keyed_service.cc13 !content::BrowserThread::CurrentlyOn(obj->thread_id_)) {
14 content::BrowserThread::DeleteSoon(obj->thread_id_, FROM_HERE, obj);
24 thread_id_(content::BrowserThread::UI) {
30 thread_id_(thread_id) {
H A Drefcounted_browser_context_keyed_service.h72 content::BrowserThread::ID thread_id_; member in class:RefcountedBrowserContextKeyedService
/external/chromium_org/ui/base/win/
H A Dscoped_ole_initializer.cc15 thread_id_(GetCurrentThreadId()),
20 LOG(ERROR) << "Multiple OleInitialize() calls for thread " << thread_id_;
30 DCHECK_EQ(thread_id_, GetCurrentThreadId());
H A Dscoped_ole_initializer.h26 DWORD thread_id_; member in class:ui::ScopedOleInitializer
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
H A Dthread_checker.h43 ThreadChecker() : thread_id_(pthread_self()) {}
46 return thread_id_ == pthread_self();
50 const pthread_t thread_id_; member in class:i18n::phonenumbers::ThreadChecker
/external/chromium_org/base/win/
H A Dscoped_com_initializer.h37 DCHECK_EQ(GetCurrentThreadId(), thread_id_); local
48 thread_id_ = GetCurrentThreadId();
53 LOG(ERROR) << "Multiple CoInitialize() calls for thread " << thread_id_;
65 DWORD thread_id_; member in class:base::win::ScopedCOMInitializer
H A Dscoped_process_information.cc36 : process_id_(0), thread_id_(0) {
40 const PROCESS_INFORMATION& process_info) : process_id_(0), thread_id_(0) {
50 thread_id_ || thread_handle_.Get();
57 thread_id_ = 0;
67 thread_id_ = process_info.dwThreadId;
78 thread_id_ = other.thread_id();
92 thread_id_ = 0;
103 thread_id_ = 0;
H A Dscoped_process_information.h68 return thread_id_;
75 DWORD thread_id_; member in class:base::win::ScopedProcessInformation
/external/chromium_org/base/timer/
H A Dtimer.cc64 thread_id_(0),
78 thread_id_(0),
152 if (!thread_id_)
153 thread_id_ = static_cast<int>(PlatformThread::CurrentId());
157 DCHECK(thread_id_ == 0 ||
158 thread_id_ == static_cast<int>(PlatformThread::CurrentId()));
/external/chromium_org/chrome/browser/extensions/api/
H A Dapi_resource_manager.h78 : thread_id_(T::kThreadId),
79 data_(new ApiResourceData(thread_id_)) {
95 manager->thread_id_ = thread_id;
102 DCHECK(content::BrowserThread::IsMessageLoopValid(thread_id_)) <<
180 thread_id_(thread_id) {
184 DCHECK(content::BrowserThread::CurrentlyOn(thread_id_));
203 DCHECK(content::BrowserThread::CurrentlyOn(thread_id_));
213 DCHECK(content::BrowserThread::CurrentlyOn(thread_id_));
218 DCHECK(content::BrowserThread::CurrentlyOn(thread_id_));
223 content::BrowserThread::PostTask(thread_id_, FROM_HER
322 const content::BrowserThread::ID thread_id_; member in class:extensions::ApiResourceManager::ApiResourceData
327 content::BrowserThread::ID thread_id_; member in class:extensions::ApiResourceManager
[all...]
/external/chromium_org/content/browser/service_worker/
H A Dembedded_worker_instance.h58 int thread_id() const { return thread_id_; }
93 int thread_id_; member in class:content::EmbeddedWorkerInstance
H A Dembedded_worker_instance.cc67 thread_id_(-1) {
73 thread_id_ = thread_id;
79 thread_id_ = -1;
/external/chromium/base/threading/
H A Dthread.cc54 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;
H A Dthread.h126 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
H A Dplatform_thread_unittest.cc57 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_org/base/threading/
H A Dplatform_thread_unittest.cc58 FunctionTestThread() : thread_id_(0) {}
61 thread_id_ = PlatformThread::CurrentId();
66 EXPECT_EQ(thread_id_, PlatformThread::CurrentId());
71 PlatformThreadId thread_id() const { return thread_id_; }
74 PlatformThreadId thread_id_; member in class:base::FunctionTestThread
H A Dthread.h153 PlatformThreadId thread_id() const { return thread_id_; }
217 PlatformThreadId thread_id_; member in class:base::Thread
H A Dthread.cc77 thread_id_(kInvalidThreadId),
149 // Reading thread_id_ without a lock can lead to a benign data race
151 DCHECK_NE(ANNOTATE_UNPROTECTED_READ(thread_id_), PlatformThread::CurrentId());
167 DCHECK_NE(thread_id_, kInvalidThreadId);
201 thread_id_ = PlatformThread::CurrentId();
/external/chromium/chrome/browser/prefs/
H A Dpref_member.cc80 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;
/external/chromium_org/chrome/browser/extensions/api/sockets_tcp/
H A Dtcp_socket_event_dispatcher.cc42 : thread_id_(Socket::kThreadId),
61 DCHECK(BrowserThread::CurrentlyOn(thread_id_));
68 DCHECK(BrowserThread::CurrentlyOn(thread_id_));
75 DCHECK(BrowserThread::CurrentlyOn(thread_id_));
78 params.thread_id = thread_id_;
/external/chromium/chrome/browser/importer/
H A Dprofile_import_process_host.cc24 thread_id_(thread_id) {
125 thread_id_, FROM_HERE,
135 thread_id_, FROM_HERE,
H A Dprofile_import_process_host.h27 // the IO thread. It passes messages back to the |thread_id_| thread through
75 BrowserThread::ID thread_id_; member in class:ProfileImportProcessHost
/external/chromium_org/content/child/fileapi/
H A Dwebfilewriter_impl.cc37 thread_id_(WorkerTaskRunner::Instance()->CurrentWorkerId()),
102 if (!thread_id_) {
112 WorkerTaskRunner::Instance()->PostTask(thread_id_, closure);
118 int thread_id_; member in class:content::WebFileWriterImpl::WriterBridge
/external/chromium_org/tools/gn/
H A Dtrace.h37 base::PlatformThreadId thread_id() const { return thread_id_; }
57 base::PlatformThreadId thread_id_; member in class:TraceItem
/external/chromium_org/v8/src/
H A Doptimizing-compiler-thread.h51 thread_id_(0),
129 int thread_id_; member in class:v8::internal::OptimizingCompilerThread

Completed in 7834 milliseconds

123