OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:profiled_thread
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/v8/src/
sampler.cc
207
HANDLE
profiled_thread
() { return profiled_thread_; }
649
HANDLE
profiled_thread
= platform_data()->
profiled_thread
();
local
650
if (
profiled_thread
== NULL) return;
658
if (SuspendThread(
profiled_thread
) == kSuspendFailed) return;
664
if (GetThreadContext(
profiled_thread
, &context) != 0) {
681
ResumeThread(
profiled_thread
);
/external/v8/src/
platform-cygwin.cc
622
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
);
platform-macos.cc
738
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
);
platform-win32.cc
1957
HANDLE
profiled_thread
() { return
profiled_thread
_; }
function in class:v8::internal::Sampler::PlatformData
2034
HANDLE
profiled_thread
= sampler->platform_data()->
profiled_thread
();
local
[
all
...]
Completed in 169 milliseconds