HomeSort by relevance Sort by last modified time
    Searched refs:thread_handle_data (Results 1 - 7 of 7) sorted by null

  /external/v8/src/
platform-macos.cc 419 thread->thread_handle_data()->thread_ = pthread_self();
427 pthread_create(&thread_handle_data()->thread_, NULL, ThreadEntry, this);
432 pthread_join(thread_handle_data()->thread_, NULL);
platform-openbsd.cc 390 thread->thread_handle_data()->thread_ = pthread_self();
398 pthread_create(&thread_handle_data()->thread_, NULL, ThreadEntry, this);
404 pthread_join(thread_handle_data()->thread_, NULL);
platform-solaris.cc 365 thread->thread_handle_data()->thread_ = pthread_self();
373 pthread_create(&thread_handle_data()->thread_, NULL, ThreadEntry, this);
379 pthread_join(thread_handle_data()->thread_, NULL);
platform-freebsd.cc 417 thread->thread_handle_data()->thread_ = pthread_self();
425 pthread_create(&thread_handle_data()->thread_, NULL, ThreadEntry, this);
431 pthread_join(thread_handle_data()->thread_, NULL);
platform-linux.cc 511 thread->thread_handle_data()->thread_ = pthread_self();
519 pthread_create(&thread_handle_data()->thread_, NULL, ThreadEntry, this);
525 pthread_join(thread_handle_data()->thread_, NULL);
platform.h 334 PlatformData* thread_handle_data() { return data_; } function in class:v8::internal::ThreadHandle
platform-win32.cc     [all...]

Completed in 329 milliseconds