Searched defs:profiler (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dprofiler_finder.py9 from telemetry.core.platform import profiler namespace
15 profiler.Profiler).values()
H A Dtrace_profiler.py7 from telemetry.core.platform import profiler namespace
10 class TraceProfiler(profiler.Profiler):
H A Djava_heap_profiler.py11 from telemetry.core.platform import profiler namespace
13 class JavaHeapProfiler(profiler.Profiler):
H A Dsample_profiler.py12 from telemetry.core.platform import profiler namespace
58 class SampleProfiler(profiler.Profiler):
H A Diprofiler_profiler.py11 from telemetry.core.platform import profiler namespace
68 class IprofilerProfiler(profiler.Profiler):
H A Dperf_profiler.py13 from telemetry.core.platform import profiler namespace
62 class PerfProfiler(profiler.Profiler):
H A Dtcmalloc_heap_profiler.py10 from telemetry.core.platform import profiler namespace
36 # This profiler requires adb root to set properties.
99 class TCMallocHeapProfiler(profiler.Profiler):
100 """A Factory to instantiate the platform-specific profiler."""
H A Dtcpdump_profiler.py12 from telemetry.core.platform import profiler namespace
85 class TCPDumpProfiler(profiler.Profiler):
86 """A Factory to instantiate the platform-specific profiler."""
/external/chromium_org/base/win/
H A Dsampling_profiler_unittest.cc57 SamplingProfiler profiler; local
59 ASSERT_TRUE(profiler.Initialize(process.Get(), code_start, code_size, 8));
67 SamplingProfiler profiler; local
71 profiler.Initialize(process.Get(), code_start, code_size, 31));
73 ASSERT_EQ(1, profiler.buckets().size());
74 ASSERT_EQ(0, profiler.buckets()[0]);
93 // Start the profiler.
94 ASSERT_TRUE(profiler.Start());
98 volatile const ULONG* bucket_ptr = &profiler.buckets()[0];
109 // Stop the profiler
[all...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DListenerLeakTest.cpp39 #include <v8/include/v8-profiler.h>
63 v8::HeapProfiler* profiler = isolate->GetHeapProfiler(); local
64 const v8::HeapSnapshot* snapshot = profiler->TakeHeapSnapshot(v8::String::New(""));
/external/v8/src/
H A Dheap-profiler.cc30 #include "heap-profiler.h"
141 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); local
142 ASSERT(profiler != NULL);
143 return profiler->snapshots_->snapshots()->length();
148 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); local
149 ASSERT(profiler != NULL);
150 return profiler->snapshots_->snapshots()->at(index);
155 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); local
156 ASSERT(profiler != NULL);
157 return profiler
162 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); local
[all...]
H A Dcpu-profiler.h251 CpuProfiler* profiler = isolate->cpu_profiler(); local
252 return profiler != NULL && NoBarrier_Load(&profiler->is_profiling_);
H A Dcpu-profiler.cc30 #include "cpu-profiler-inl.h"
37 #include "../include/v8-profiler.h"
299 CpuProfiler* profiler = Isolate::Current()->cpu_profiler(); local
300 const int token = profiler->token_enumerator_->GetTokenId(security_token);
301 return profiler->profiles_->Profiles(token)->at(index);
307 CpuProfiler* profiler = Isolate::Current()->cpu_profiler(); local
308 const int token = profiler->token_enumerator_->GetTokenId(security_token);
309 return profiler->profiles_->GetProfile(token, uid);
423 CpuProfiler* profiler = Isolate::Current()->cpu_profiler(); local
424 profiler
[all...]
H A Dlog.cc39 #include "runtime-profiler.h"
134 // Tells whether profiler is engaged, that is, processing thread is stated.
185 // Ticker used to provide ticks to the profiler and the sliding state
212 void SetProfiler(Profiler* profiler) { argument
214 profiler_ = profiler;
292 // Start thread processing the profiler buffer.
319 LOG(ISOLATE, UncheckedStringEvent("profiler", "end"));
554 msg.Append("profiler,\"begin\",%d\n", kSamplingIntervalMs);
1287 LOG(ISOLATE, UncheckedStringEvent("profiler", "pause"));
1302 LOG(ISOLATE, UncheckedStringEvent("profiler", "resum
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DScriptProfiler.cpp44 #include <v8-profiler.h>
61 v8::CpuProfiler* profiler = isolate->GetCpuProfiler(); local
62 if (!profiler)
65 profiler->StartCpuProfiling(v8String(title, isolate), true);
71 v8::CpuProfiler* profiler = isolate->GetCpuProfiler(); local
72 if (!profiler)
75 const v8::CpuProfile* profile = profiler->StopCpuProfiling(v8String(title, isolate));
99 v8::HeapProfiler* profiler = isolate->GetHeapProfiler(); local
100 if (!profiler)
105 for (int i = 0, l = profiler
136 v8::HeapProfiler* profiler = isolate->GetHeapProfiler(); local
237 v8::HeapProfiler* profiler = isolate->GetHeapProfiler(); local
260 v8::HeapProfiler* profiler = isolate->GetHeapProfiler(); local
[all...]
H A DV8GCController.cpp300 v8::HeapProfiler* profiler = m_isolate->GetHeapProfiler(); local
304 profiler->SetRetainedObjectInfo(v8::UniqueId(reinterpret_cast<intptr_t>(root)), new RetainedDOMInfo(root));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DToolbar.js121 "cpu-profiler": true,
122 "heap-profiler": true,
/external/chromium_org/v8/test/cctest/
H A Dtest-profile-generator.cc33 #include "cpu-profiler.h"
34 #include "../include/v8-profiler.h"
592 ProfilerExtension() : v8::Extension("v8/profiler", kSource) { }
659 const char* extensions[] = { "v8/profiler" };
664 CpuProfiler* profiler = i::Isolate::Current()->cpu_profiler(); local
665 CHECK_EQ(0, profiler->GetProfilesCount());
672 CHECK_EQ(1, profiler->GetProfilesCount());
673 CpuProfile* profile = profiler->GetProfile(0);
737 const char* extensions[] = { "v8/profiler" };
742 v8::CpuProfiler* profiler local
796 CpuProfiler* profiler = i::Isolate::Current()->cpu_profiler(); local
820 CpuProfiler* profiler = isolate->cpu_profiler(); local
[all...]
H A Dtest-cpu-profiler.cc31 #include "cpu-profiler-inl.h"
35 #include "../include/v8-profiler.h"
144 CpuProfiler profiler(isolate, profiles, &generator, &processor);
150 profiler.CodeCreateEvent(i::Logger::FUNCTION_TAG, aaa_code, *aaa_name);
151 profiler.CodeCreateEvent(i::Logger::BUILTIN_TAG, comment_code, "comment");
152 profiler.CodeCreateEvent(i::Logger::STUB_TAG, args5_code, 5);
153 profiler.CodeCreateEvent(i::Logger::BUILTIN_TAG, comment2_code, "comment2");
154 profiler.CodeMoveEvent(comment2_code->address(), moved_code->address());
155 profiler.CodeCreateEvent(i::Logger::STUB_TAG, args3_code, 3);
156 profiler
252 CpuProfiler* profiler = i::Isolate::Current()->cpu_profiler(); local
306 CpuProfiler* profiler = i::Isolate::Current()->cpu_profiler(); local
333 FindCpuProfile(v8::CpuProfiler* profiler, unsigned uid) argument
[all...]
H A Dtest-heap-profiler.cc28 // Tests for heap profiler
36 #include "heap-profiler.h"
40 #include "../include/v8-profiler.h"
1349 static const v8::HeapSnapshot* FindHeapSnapshot(v8::HeapProfiler* profiler, argument
1351 int length = profiler->GetSnapshotCount();
1353 const v8::HeapSnapshot* snapshot = profiler->GetHeapSnapshot(i);
/external/chromium_org/v8/src/
H A Dlog.cc34 #include "cpu-profiler.h"
41 #include "runtime-profiler.h"
594 // Tells whether profiler is engaged, that is, processing thread is stated.
606 // Ticker used to provide ticks to the profiler and the sliding state
621 void SetProfiler(Profiler* profiler) { argument
623 profiler_ = profiler;
661 // Start thread processing the profiler buffer.
689 LOG(ISOLATE, UncheckedStringEvent("profiler", "end"));
748 msg.Append("profiler,\"begin\",%d\n", kSamplingIntervalMs);
1538 LOG(ISOLATE, UncheckedStringEvent("profiler", "paus
[all...]
H A Dapi.cc33 #include "../include/v8-profiler.h"
41 #include "cpu-profiler.h"
46 #include "heap-profiler.h"
60 #include "runtime-profiler.h"
7558 i::CpuProfiler* profiler = isolate->cpu_profiler(); local
7559 ASSERT(profiler != NULL);
7560 profiler->DeleteProfile(reinterpret_cast<i::CpuProfile*>(this));
7561 if (profiler->GetProfilesCount() == 0) {
7563 profiler->DeleteAllProfiles();
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...

Completed in 590 milliseconds