/third_party/gn/src/base/win/ |
D | scoped_process_information.cc | 37 : process_id_(0), thread_id_(0) {} in ScopedProcessInformation() 41 : process_id_(0), thread_id_(0) { in ScopedProcessInformation() 50 return process_id_ || process_handle_.Get() || thread_id_ || in IsValid() 58 thread_id_ = 0; in Close() 68 thread_id_ = process_info.dwThreadId; in Set() 79 thread_id_ = other.thread_id(); in DuplicateFrom() 93 thread_id_ = 0; in Take() 104 thread_id_ = 0; in TakeThreadHandle()
|
D | scoped_process_information.h | 59 DWORD thread_id() const { return thread_id_; } in thread_id() 65 DWORD thread_id_; variable
|
/third_party/libphonenumber/cpp/src/phonenumbers/base/ |
D | thread_checker.h | 45 ThreadChecker() : thread_id_(pthread_self()) {} in ThreadChecker() 48 return thread_id_ == pthread_self(); in CalledOnValidThread() 52 const pthread_t thread_id_;
|
/third_party/node/src/ |
D | node_worker.cc | 60 thread_id_(AllocateEnvironmentThreadId()), in Worker() 65 thread_id_.id); in Worker() 83 Number::New(env->isolate(), static_cast<double>(thread_id_.id))) in Worker() 87 GetInspectorParentHandle(env, thread_id_, url.c_str(), name.c_str()); in Worker() 93 Debug(this, "Preparation for worker %llu finished", thread_id_.id); in Worker() 193 Debug(w_, "Worker %llu dispose isolate", w_->thread_id_.id); in ~WorkerThreadData() 261 std::string trace_name = "[worker " + std::to_string(thread_id_.id) + "]" + in Run() 267 Debug(this, "Creating isolate for worker with id %llu", thread_id_.id); in Run() 273 Debug(this, "Starting worker with id %llu", thread_id_.id); in Run() 335 thread_id_, in Run() [all …]
|
D | node_worker.h | 100 ThreadId thread_id_; variable
|
/third_party/cef/libcef/common/ |
D | thread_impl.cc | 44 CefThreadImpl::CefThreadImpl() : thread_id_(kInvalidPlatformThreadId) {} in CefThreadImpl() 114 thread_id_ = thread_->GetThreadId(); in Create() 123 return thread_id_; in GetPlatformThreadId()
|
D | value_base.h | 176 : thread_id_(base::PlatformThread::CurrentId()) {} in CefValueControllerNonThreadSafe() 186 return (thread_id_ == base::PlatformThread::CurrentId()); in on_correct_thread() 194 base::PlatformThreadId thread_id_;
|
D | thread_impl.h | 36 cef_platform_thread_id_t thread_id_; variable
|
/third_party/cef/tests/ceftests/ |
D | thread_unittest.cc | 38 thread_id_ = thread_->GetPlatformThreadId(); in CreateTestThread() 39 EXPECT_NE(thread_id_, kInvalidPlatformThreadId); in CreateTestThread() 85 EXPECT_EQ(thread_id_, thread_->GetPlatformThreadId()); in AssertOwnerThread() 93 EXPECT_EQ(thread_id_, thread_->GetPlatformThreadId()); in AssertTestThread() 111 cef_platform_thread_id_t thread_id_; member in __anon62b858dd0111::ThreadTest
|
/third_party/node/deps/v8/src/execution/ |
D | thread-local-top.cc | 17 thread_id_ = ThreadId(); in Clear() 45 thread_id_ = ThreadId::Current(); in Initialize()
|
D | local-isolate.h | 111 ThreadId thread_id() const { return thread_id_; } in thread_id() 159 ThreadId const thread_id_; variable
|
D | local-isolate.cc | 22 thread_id_(ThreadId::Current()), in LocalIsolate()
|
D | thread-local-top.h | 111 std::atomic<ThreadId> thread_id_; variable
|
D | isolate.h | 552 thread_id_(thread_id), in PerIsolateThreadData() 565 ThreadId thread_id() const { return thread_id_; } in thread_id() 575 return isolate_ == isolate && thread_id_ == thread_id; in FIELD_ACCESSOR() 580 ThreadId thread_id_; variable 742 thread_local_top()->thread_id_.store(id, std::memory_order_relaxed); in set_thread_id() 745 return thread_local_top()->thread_id_.load(std::memory_order_relaxed); in thread_id()
|
/third_party/gn/src/gn/ |
D | trace.h | 43 std::thread::id thread_id() const { return thread_id_; } in thread_id() 63 std::thread::id thread_id_; variable
|
D | trace.cc | 125 : type_(type), name_(name), thread_id_(thread_id) {} in TraceItem()
|
/third_party/cef/tests/cefclient/browser/ |
D | main_message_loop_multithreaded_gtk.cc | 62 : thread_id_(base::PlatformThread::CurrentId()) { in MainMessageLoopMultithreadedGtk() 120 return (thread_id_ == base::PlatformThread::CurrentId()); in RunsTasksOnCurrentThread()
|
D | main_message_loop_multithreaded_win.cc | 23 : thread_id_(base::PlatformThread::CurrentId()), in MainMessageLoopMultithreadedWin() 95 return (thread_id_ == base::PlatformThread::CurrentId()); in RunsTasksOnCurrentThread()
|
D | main_message_loop_multithreaded_gtk.h | 39 base::PlatformThreadId thread_id_; variable
|
D | main_message_loop_multithreaded_win.h | 46 base::PlatformThreadId thread_id_; variable
|
/third_party/vk-gl-cts/external/amber/src/src/vulkan/ |
D | engine_vulkan_debugger.cc | 541 thread_id_(threadId), in Thread() 583 request.threadId = thread_id_; in StepOver() 591 request.threadId = thread_id_; in StepIn() 599 request.threadId = thread_id_; in StepOut() 607 request.threadId = thread_id_; in Continue() 617 if (!client_.TopStackFrame(thread_id_, &frame)) { in ExpectLocation() 651 if (!client_.Callstack(thread_id_, &got_stack)) { in ExpectCallstack() 722 if (!client_.TopStackFrame(thread_id_, &frame)) { in ExpectLocalT() 795 const dap::integer thread_id_; member in amber::vulkan::__anone0acb01e0111::Thread
|
/third_party/ltp/testcases/kernel/fs/openfile/ |
D | openfile.c | 206 void *threads(void *thread_id_) in threads() argument 208 int thread_id = (uintptr_t) thread_id_; in threads()
|
/third_party/node/deps/v8/src/logging/ |
D | runtime-call-stats.cc | 241 if (thread_id_.IsValid()) return thread_id_ == ThreadId::Current(); in IsCalledOnTheSameThread() 242 thread_id_ = ThreadId::Current(); in IsCalledOnTheSameThread()
|
D | runtime-call-stats.h | 609 ThreadId thread_id() const { return thread_id_; } in thread_id() 658 ThreadId thread_id_; variable
|
/third_party/node/deps/v8/src/diagnostics/ |
D | perf-jit.cc | 87 uint32_t thread_id_; member 276 code_load.thread_id_ = static_cast<uint32_t>(base::OS::GetCurrentThreadId()); in WriteJitCodeLoadEntry()
|