Searched refs:CpuProfiler (Results 1 - 21 of 21) sorted by relevance

/external/v8/test/cctest/
H A Dtest-cpu-profiler.cc12 using i::CpuProfiler;
219 CpuProfiler::SetUp();
220 CpuProfiler::StartProfiling("1");
221 CpuProfiler::StopProfiling("2");
222 CpuProfiler::StartProfiling("1");
223 CpuProfiler::StopProfiling("");
224 CpuProfiler::TearDown();
271 CpuProfiler::SetUp();
272 CHECK_EQ(0, CpuProfiler::GetProfilesCount());
273 CpuProfiler
[all...]
H A Dtest-profile-generator.cc13 using i::CpuProfiler;
725 v8::CpuProfiler::StartProfiling(args[0].As<v8::String>());
727 v8::CpuProfiler::StartProfiling(v8::String::New(""));
735 v8::CpuProfiler::StopProfiling(args[0].As<v8::String>());
737 v8::CpuProfiler::StopProfiling(v8::String::New(""));
770 CHECK_EQ(0, CpuProfiler::GetProfilesCount());
777 CHECK_EQ(1, CpuProfiler::GetProfilesCount());
779 CpuProfiler::GetProfile(NULL, 0);
/external/v8/src/
H A Dcpu-profiler.cc262 void CpuProfiler::StartProfiling(const char* title) {
268 void CpuProfiler::StartProfiling(String* title) {
274 CpuProfile* CpuProfiler::StopProfiling(const char* title) {
281 CpuProfile* CpuProfiler::StopProfiling(Object* security_token, String* title) {
289 int CpuProfiler::GetProfilesCount() {
297 CpuProfile* CpuProfiler::GetProfile(Object* security_token, int index) {
299 CpuProfiler* profiler = Isolate::Current()->cpu_profiler();
305 CpuProfile* CpuProfiler::FindProfile(Object* security_token, unsigned uid) {
307 CpuProfiler* profiler = Isolate::Current()->cpu_profiler();
313 TickSample* CpuProfiler
450 CpuProfiler::CpuProfiler() function in class:v8::internal::CpuProfiler
[all...]
H A Dcpu-profiler.h193 if (v8::internal::CpuProfiler::is_profiling(isolate)) { \
194 v8::internal::CpuProfiler::Call; \
204 class CpuProfiler { class in namespace:v8::internal
251 CpuProfiler* profiler = isolate->cpu_profiler();
256 CpuProfiler();
257 ~CpuProfiler();
277 DISALLOW_COPY_AND_ASSIGN(CpuProfiler);
H A Dcodegen.cc156 if (!isolate->logger()->is_logging() && !CpuProfiler::is_profiling(isolate)) {
H A Dlog.h427 friend class CpuProfiler;
H A Disolate.h60 class CpuProfiler;
353 V(CpuProfiler*, cpu_profiler, NULL) \
H A Dapi.cc5859 i::CpuProfiler::DeleteProfile(reinterpret_cast<i::CpuProfile*>(this));
5860 if (i::CpuProfiler::GetProfilesCount() == 0 &&
5861 !i::CpuProfiler::HasDetachedProfiles()) {
5863 i::CpuProfiler::DeleteAllProfiles();
5900 int CpuProfiler::GetProfilesCount() {
5902 IsDeadCheck(isolate, "v8::CpuProfiler::GetProfilesCount");
5903 return i::CpuProfiler::GetProfilesCount();
5907 const CpuProfile* CpuProfiler::GetProfile(int index,
5910 IsDeadCheck(isolate, "v8::CpuProfiler::GetProfile");
5912 i::CpuProfiler
[all...]
H A Dplatform-cygwin.cc707 TickSample* sample = CpuProfiler::TickSampleEvent(sampler->isolate());
H A Dplatform-freebsd.cc695 TickSample* sample = CpuProfiler::TickSampleEvent(isolate);
H A Dplatform-macos.cc820 TickSample* sample = CpuProfiler::TickSampleEvent(sampler->isolate());
H A Dplatform-solaris.cc687 TickSample* sample = CpuProfiler::TickSampleEvent(isolate);
H A Disolate.cc1573 CpuProfiler::TearDown();
1779 CpuProfiler::SetUp();
H A Dcompiler.cc797 CpuProfiler::is_profiling(info->isolate())) {
H A Dplatform-linux.cc1045 TickSample* sample = CpuProfiler::TickSampleEvent(isolate);
H A Dplatform-openbsd.cc748 TickSample* sample = CpuProfiler::TickSampleEvent(isolate);
H A Dplatform-win32.cc2042 TickSample* sample = CpuProfiler::TickSampleEvent(sampler->isolate());
H A Dheap.cc1601 CpuProfiler::is_profiling(isolate)) {
1827 CpuProfiler::is_profiling(isolate()) ||
H A Druntime.cc2216 if (isolate->logger()->is_logging() || CpuProfiler::is_profiling(isolate)) {
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptProfiler.cpp47 v8::CpuProfiler::StartProfiling(v8String(title));
54 v8::CpuProfiler::StopProfiling(v8String(title), state->context()->GetSecurityToken()) :
55 v8::CpuProfiler::StopProfiling(v8String(title));
/external/v8/include/
H A Dv8-profiler.h136 * Deletes the profile and removes it from CpuProfiler's list.
150 class V8EXPORT CpuProfiler { class in namespace:v8

Completed in 242 milliseconds