thread_ 1521 src/d8.cc delete thread_;
thread_ 1522 src/d8.cc thread_ = NULL;
thread_ 1600 src/d8.cc if (thread_ == NULL) {
thread_ 1601 src/d8.cc thread_ = new IsolateThread(this);
thread_ 1602 src/d8.cc thread_->Start();
thread_ 1609 src/d8.cc if (thread_ == NULL) return;
thread_ 1611 src/d8.cc thread_->Join();
thread_ 146 src/d8.h thread_(NULL),
thread_ 186 src/d8.h i::Thread* thread_;
thread_ 95 src/frames.cc thread_(isolate_->thread_local_top()),
thread_ 103 src/frames.cc thread_(isolate_->thread_local_top()),
thread_ 110 src/frames.cc frame_(NULL), handler_(NULL), thread_(t),
thread_ 119 src/frames.cc thread_(use_top ? isolate_->thread_local_top() : NULL),
thread_ 166 src/frames.cc if (thread_ != NULL) {
thread_ 168 src/frames.cc Isolate::c_entry_fp(thread_), &state);
thread_ 170 src/frames.cc Isolate::handler(thread_));
thread_ 699 src/frames.h ThreadLocalTop* thread_;
thread_ 365 src/platform-cygwin.cc pthread_t thread_; // Thread handle for pthread.
thread_ 388 src/platform-cygwin.cc thread->data()->thread_ = pthread_self();
thread_ 389 src/platform-cygwin.cc ASSERT(thread->data()->thread_ != kNoThread);
thread_ 409 src/platform-cygwin.cc pthread_create(&data_->thread_, attr_ptr, ThreadEntry, this);
thread_ 410 src/platform-cygwin.cc ASSERT(data_->thread_ != kNoThread);
thread_ 415 src/platform-cygwin.cc pthread_join(data_->thread_, NULL);
thread_ 461 src/platform-freebsd.cc pthread_t thread_; // Thread handle for pthread.
thread_ 482 src/platform-freebsd.cc thread->data()->thread_ = pthread_self();
thread_ 483 src/platform-freebsd.cc ASSERT(thread->data()->thread_ != kNoThread);
thread_ 503 src/platform-freebsd.cc pthread_create(&data_->thread_, attr_ptr, ThreadEntry, this);
thread_ 504 src/platform-freebsd.cc ASSERT(data_->thread_ != kNoThread);
thread_ 509 src/platform-freebsd.cc pthread_join(data_->thread_, NULL);
thread_ 701 src/platform-linux.cc pthread_t thread_; // Thread handle for pthread.
thread_ 726 src/platform-linux.cc thread->data()->thread_ = pthread_self();
thread_ 727 src/platform-linux.cc ASSERT(thread->data()->thread_ != kNoThread);
thread_ 747 src/platform-linux.cc int result = pthread_create(&data_->thread_, attr_ptr, ThreadEntry, this);
thread_ 749 src/platform-linux.cc ASSERT(data_->thread_ != kNoThread);
thread_ 754 src/platform-linux.cc pthread_join(data_->thread_, NULL);
thread_ 477 src/platform-macos.cc pthread_t thread_; // Thread handle for pthread.
thread_ 515 src/platform-macos.cc thread->data()->thread_ = pthread_self();
thread_ 517 src/platform-macos.cc ASSERT(thread->data()->thread_ != kNoThread);
thread_ 537 src/platform-macos.cc pthread_create(&data_->thread_, attr_ptr, ThreadEntry, this);
thread_ 538 src/platform-macos.cc ASSERT(data_->thread_ != kNoThread);
thread_ 543 src/platform-macos.cc pthread_join(data_->thread_, NULL);
thread_ 514 src/platform-openbsd.cc pthread_t thread_; // Thread handle for pthread.
thread_ 539 src/platform-openbsd.cc thread->data()->thread_ = pthread_self();
thread_ 540 src/platform-openbsd.cc ASSERT(thread->data()->thread_ != kNoThread);
thread_ 560 src/platform-openbsd.cc pthread_create(&data_->thread_, attr_ptr, ThreadEntry, this);
thread_ 561 src/platform-openbsd.cc ASSERT(data_->thread_ != kNoThread);
thread_ 566 src/platform-openbsd.cc pthread_join(data_->thread_, NULL);
thread_ 455 src/platform-solaris.cc pthread_t thread_; // Thread handle for pthread.
thread_ 476 src/platform-solaris.cc thread->data()->thread_ = pthread_self();
thread_ 477 src/platform-solaris.cc ASSERT(thread->data()->thread_ != kNoThread);
thread_ 495 src/platform-solaris.cc pthread_create(&data_->thread_, NULL, ThreadEntry, this);
thread_ 496 src/platform-solaris.cc ASSERT(data_->thread_ != kNoThread);
thread_ 501 src/platform-solaris.cc pthread_join(data_->thread_, NULL);
thread_ 1574 src/platform-win32.cc HANDLE thread_;
thread_ 1597 src/platform-win32.cc if (data_->thread_ != kNoThread) CloseHandle(data_->thread_);
thread_ 1606 src/platform-win32.cc data_->thread_ = reinterpret_cast<HANDLE>(
thread_ 1619 src/platform-win32.cc WaitForSingleObject(data_->thread_, INFINITE);
thread_ 137 test/cctest/test-lockers.cc thread_.Start();
thread_ 165 test/cctest/test-lockers.cc ThreadWithSemaphore thread_;