Lines Matching refs:Thread
8890 // We are in a callback and want to switch to another thread (if we
8891 // are currently running the thread fuzzing test).
8899 // Let the next thread go. Since it is also waiting on the V8 lock it may
8988 // If the new thread is the same as the current thread there is nothing to do.
10076 class GCThread : public i::Thread {
10079 : Thread(isolate, "GCThread"), test_(test) {}
10102 block_->Signal(); // Enable garbage collection thread on next preemption.
10115 gc_during_regexp_ = kRequiredGCs; // Allow gc thread to exit.
10198 class GCThread : public i::Thread {
10201 : Thread(isolate, "GCThread"), test_(test) {}
10493 class MorphThread : public i::Thread {
10497 Thread(isolate, "MorphThread"), test_(test) {}
10522 block_->Signal(); // Enable morphing thread on next preemption.
13133 // Still working since default isolate is auto-entering any thread
13328 class IsolateThread : public v8::internal::Thread {
13331 : Thread(NULL, "IsolateThread"),
13377 class InitDefaultIsolateThread : public v8::internal::Thread {
13389 : Thread(NULL, "InitDefaultIsolateThread"),
13436 InitDefaultIsolateThread thread(testCase);
13437 thread.Start();
13438 thread.Join();
13439 CHECK_EQ(thread.result(), true);