Searched defs:profiled_thread (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/
H A Dplatform-cygwin.cc622 HANDLE profiled_thread() { return profiled_thread_; } function in class:v8::internal::Sampler::PlatformData
699 HANDLE profiled_thread = sampler->platform_data()->profiled_thread(); local
700 if (profiled_thread == NULL) return;
711 if (SuspendThread(profiled_thread) == kSuspendFailed) return;
715 if (GetThreadContext(profiled_thread, &context) != 0) {
728 ResumeThread(profiled_thread);
H A Dplatform-macos.cc738 thread_act_t profiled_thread() { return profiled_thread_; } function in class:v8::internal::Sampler::PlatformData
818 thread_act_t profiled_thread = sampler->platform_data()->profiled_thread(); local
823 if (KERN_SUCCESS != thread_suspend(profiled_thread)) return;
847 if (thread_get_state(profiled_thread,
858 thread_resume(profiled_thread);
H A Dplatform-win32.cc1957 HANDLE profiled_thread() { return profiled_thread_; } function in class:v8::internal::Sampler::PlatformData
2034 HANDLE profiled_thread = sampler->platform_data()->profiled_thread(); local
2035 if (profiled_thread == NULL) return;
2046 if (SuspendThread(profiled_thread) == kSuspendFailed) return;
2050 if (GetThreadContext(profiled_thread, &context) != 0) {
2063 ResumeThread(profiled_thread);

Completed in 71 milliseconds