Lines Matching defs:thread
59 class KangarooThread : public v8::internal::Thread {
62 : Thread("KangarooThread"),
99 // Migrates an isolate from one thread to another
149 class ThreadWithSemaphore : public i::Thread {
152 : Thread(joinable_thread->name_),
386 LockIsolateAndCalculateFibSharedContextThread thread(isolate_, context);
389 thread.Start();
390 thread.Join();
439 LockIsolateAndCalculateFibSharedContextThread thread(isolate_, context);
442 thread.Start();
443 thread.Join();
484 i::SmartPointer<LockIsolateAndCalculateFibSharedContextThread> thread;
496 thread.Reset(new LockIsolateAndCalculateFibSharedContextThread(
514 thread->Start();
516 thread->Join();
530 LockAndUnlockDifferentIsolatesThread thread(isolate1, isolate2);
531 thread.Start();
532 thread.Join();