/third_party/node/deps/v8/src/libplatform/ |
D | worker-thread.h | 21 class V8_PLATFORM_EXPORT WorkerThread : public NON_EXPORTED_BASE(base::Thread) { in NON_EXPORTED_BASE() 23 explicit WorkerThread(TaskQueue* queue); in NON_EXPORTED_BASE() 24 ~WorkerThread() override; in NON_EXPORTED_BASE() 26 WorkerThread(const WorkerThread&) = delete; in NON_EXPORTED_BASE() 27 WorkerThread& operator=(const WorkerThread&) = delete; in NON_EXPORTED_BASE()
|
D | default-worker-threads-task-runner.h | 45 class WorkerThread : public base::Thread { in NON_EXPORTED_BASE() 47 explicit WorkerThread(DefaultWorkerThreadsTaskRunner* runner); in NON_EXPORTED_BASE() 48 ~WorkerThread() override; in NON_EXPORTED_BASE() 50 WorkerThread(const WorkerThread&) = delete; in NON_EXPORTED_BASE() 51 WorkerThread& operator=(const WorkerThread&) = delete; in NON_EXPORTED_BASE() 67 std::vector<std::unique_ptr<WorkerThread>> thread_pool_; in NON_EXPORTED_BASE()
|
D | worker-thread.cc | 13 WorkerThread::WorkerThread(TaskQueue* queue) in WorkerThread() function in v8::platform::WorkerThread 18 WorkerThread::~WorkerThread() { in ~WorkerThread() 22 void WorkerThread::Run() { in Run()
|
D | default-worker-threads-task-runner.cc | 16 thread_pool_.push_back(std::make_unique<WorkerThread>(this)); in DefaultWorkerThreadsTaskRunner() 62 DefaultWorkerThreadsTaskRunner::WorkerThread::WorkerThread( in WorkerThread() function in v8::platform::DefaultWorkerThreadsTaskRunner::WorkerThread 69 DefaultWorkerThreadsTaskRunner::WorkerThread::~WorkerThread() { Join(); } in ~WorkerThread() 71 void DefaultWorkerThreadsTaskRunner::WorkerThread::Run() { in Run()
|
D | default-platform.h | 24 class WorkerThread; variable
|
/third_party/skia/third_party/externals/dawn/src/dawn_platform/ |
D | CMakeLists.txt | 26 "WorkerThread.cpp" 27 "WorkerThread.h"
|
D | BUILD.gn | 28 "WorkerThread.cpp", 29 "WorkerThread.h",
|
/third_party/cef/patch/patches/ |
D | crashpad_tp_1995.patch | 211 @@ -108,7 +109,7 @@ class CrashReportUploadThread : public WorkerThread::Delegate, 220 @@ -136,7 +137,7 @@ class CrashReportUploadThread : public WorkerThread::Delegate, 229 @@ -150,7 +151,7 @@ class CrashReportUploadThread : public WorkerThread::Delegate, 238 @@ -167,6 +168,11 @@ class CrashReportUploadThread : public WorkerThread::Delegate, 247 // WorkerThread::Delegate:
|
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/ |
D | linux_workqueue.c | 47 STATIC VOID WorkerThread(cpu_workqueue_struct *cwq); 168 taskInitParam.pfnTaskEntry = (TSK_ENTRY_FUNC)WorkerThread; in CreateWorkqueueThread() 186 STATIC VOID WorkerThread(cpu_workqueue_struct *cwqParam) in WorkerThread() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/ |
D | scheduler.h | 58 struct WorkerThread { struct 70 WorkerThread workerThread;
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/ |
D | TestCharsetDetector.java | 1217 class WorkerThread extends Thread { in TestMultithreaded() class 1218 WorkerThread(int num) { in TestMultithreaded() method in TestCharsetDetector.WorkerThread 1239 threads[i] = new WorkerThread(i); in TestMultithreaded()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/charsetdet/ |
D | TestCharsetDetector.java | 1220 class WorkerThread extends Thread { in TestMultithreaded() class 1221 WorkerThread(int num) { in TestMultithreaded() method in TestCharsetDetector.WorkerThread 1242 threads[i] = new WorkerThread(i); in TestMultithreaded()
|
/third_party/json/tests/thirdparty/Fuzzer/ |
D | FuzzerDriver.cpp | 203 static void WorkerThread(const std::string &Cmd, std::atomic<unsigned> *Counter, in WorkerThread() function 242 V.push_back(std::thread(WorkerThread, Cmd, &Counter, NumJobs, &HasErrors)); in RunInMultipleProcesses()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/ |
D | RBBITest.java | 392 class WorkerThread implements Runnable { in TestBug12873() class 414 threads.add(new Thread(new WorkerThread())); in TestBug12873()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
D | ShaderMtl.mm | 16 #include "libANGLE/WorkerThread.h"
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | RBBITest.java | 395 class WorkerThread implements Runnable { in TestBug12873() class 417 threads.add(new Thread(new WorkerThread())); in TestBug12873()
|
/third_party/node/deps/v8/src/d8/ |
D | d8.h | 230 class WorkerThread : public base::Thread { 232 explicit WorkerThread(std::shared_ptr<Worker> worker) in WorkerThread() function
|
D | d8.cc | 4128 auto thread = new WorkerThread(worker); in StartWorkerThread() 4137 void Worker::WorkerThread::Run() { in Run()
|
/third_party/skia/third_party/externals/angle2/src/ |
D | libGLESv2.gni | 282 "src/libANGLE/WorkerThread.h", 407 "src/libANGLE/WorkerThread.cpp",
|
/third_party/chromium/patch/ |
D | 0004-ohos-3.2-Beta5.patch | 39754 std::unique_ptr<WorkerThread> CreateWorkerThread() final { 39760 + void WaitForReady(WorkerThread* worker_thread) { 39818 @@ -589,6 +589,7 @@ void WorkerThread::InitializeOnWorkerThread( 39825 TRACE_EVENT0("blink.worker", "WorkerThread::InitializeWorkerContext"); 39826 @@ -724,11 +725,13 @@ void WorkerThread::PrepareForShutdownOnWorkerThread() { 39840 @@ -873,8 +876,7 @@ void WorkerThread::PauseOrFreezeOnWorkerThread( 39850 @@ -882,13 +884,20 @@ void WorkerThread::PauseOrFreezeOnWorkerThread( 39872 void WorkerThread::ResumeOnWorkerThread() { 39889 -// WorkerThread start and termination must be initiated on the main thread and 39890 +// WorkerThread start and termination must be initiated on the parent thread and [all …]
|
/third_party/python/Doc/howto/ |
D | logging-cookbook.rst | 2951 self.worker_thread.setObjectName('WorkerThread') # for qThreadName
|