Searched defs:sampler (Results 1 - 4 of 4) sorted by relevance

/external/webkit/JavaScriptCore/interpreter/
H A DInterpreter.h108 SamplingTool* sampler() { return m_sampler.get(); } function in class:JSC::Interpreter
/external/v8/src/
H A Dplatform-macos.cc537 explicit PlatformData(Sampler* sampler) argument
538 : sampler_(sampler),
554 // Loop until the sampler is disengaged.
609 // Entry point for sampler thread.
636 // Create sampler thread with high priority.
653 // Seting active to false triggers termination of the sampler
657 // Wait for sampler thread to terminate.
H A Dplatform-win32.cc1786 // On win32 we use a sampler thread with high priority to sample the program
1791 explicit PlatformData(Sampler* sampler) { argument
1792 sampler_ = sampler;
1806 // Loop until the sampler is disengaged.
1841 // Entry point for sampler thread.
1850 // Initialize a profile sampler.
1869 // going to use it in the sampler thread. Using GetThreadHandle() will
1881 // Start sampler thread.
1893 // Seting active to false triggers termination of the sampler
1897 // Wait for sampler threa
[all...]
/external/v8/test/cctest/
H A Dtest-log.cc470 TestSampler sampler; local
471 sampler.Start();
472 CHECK(!sampler.WasSampleStackCalled());
475 CHECK(sampler.WaitForTick());
476 CHECK(sampler.WasSampleStackCalled());
477 sampler.Reset();
478 CHECK(!sampler.WasSampleStackCalled());
481 CHECK(sampler.WaitForTick());
482 CHECK(!sampler.WasSampleStackCalled());
483 sampler
[all...]

Completed in 81 milliseconds