HomeSort by relevance Sort by last modified time
    Searched defs:profiler (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
profiler_finder.py 9 from telemetry.core.platform import profiler namespace
15 profiler.Profiler).values()
trace_profiler.py 7 from telemetry.core.platform import profiler namespace
10 class TraceProfiler(profiler.Profiler):
java_heap_profiler.py 11 from telemetry.core.platform import profiler namespace
13 class JavaHeapProfiler(profiler.Profiler):
sample_profiler.py 12 from telemetry.core.platform import profiler namespace
58 class SampleProfiler(profiler.Profiler):
iprofiler_profiler.py 11 from telemetry.core.platform import profiler namespace
68 class IprofilerProfiler(profiler.Profiler):
perf_profiler.py 13 from telemetry.core.platform import profiler namespace
62 class PerfProfiler(profiler.Profiler):
tcmalloc_heap_profiler.py 10 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."""
tcpdump_profiler.py 12 from telemetry.core.platform import profiler namespace
85 class TCPDumpProfiler(profiler.Profiler):
86 """A Factory to instantiate the platform-specific profiler."""
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
MalformedHprofException.java 17 package dalvik.system.profiler;
ThreadSampler.java 17 package dalvik.system.profiler;
22 * The {@code ThreadSampler} interfaces allows a profiler to choose
PortableThreadSampler.java 17 package dalvik.system.profiler;
DalvikThreadSampler.java 17 package dalvik.system.profiler;
AsciiHprofWriter.java 17 package dalvik.system.profiler;
HprofBinaryToAscii.java 17 package dalvik.system.profiler;
30 * adb shell dalvikvm 'dalvik.system.profiler.HprofBinaryToAscii'
BinaryHprof.java 17 package dalvik.system.profiler;
BinaryHprofWriter.java 17 package dalvik.system.profiler;
HprofData.java 17 package dalvik.system.profiler;
30 * Represents sampling profiler data. Can be converted to ASCII or
  /external/chromium_org/base/win/
sampling_profiler_unittest.cc 57 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/
ListenerLeakTest.cpp 39 #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/
heap-profiler.cc 30 #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->snapshots_->GetSnapshot(uid)
162 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); local
    [all...]
cpu-profiler.cc 30 #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->processor_->SharedFunctionInfoMoveEvent(from, to)
    [all...]
cpu-profiler.h 251 CpuProfiler* profiler = isolate->cpu_profiler(); local
252 return profiler != NULL && NoBarrier_Load(&profiler->is_profiling_);
  /libcore/dalvik/src/test/java/dalvik/system/profiler/
SamplingProfilerTest.java 17 package dalvik.system.profiler;
19 import dalvik.system.profiler.AsciiHprofWriter;
20 import dalvik.system.profiler.BinaryHprofReader;
21 import dalvik.system.profiler.BinaryHprofWriter;
22 import dalvik.system.profiler.HprofData.Sample;
23 import dalvik.system.profiler.HprofData.StackTrace;
24 import dalvik.system.profiler.HprofData.ThreadEvent;
25 import dalvik.system.profiler.HprofData;
26 import dalvik.system.profiler.SamplingProfiler.ThreadSet;
53 SamplingProfiler profiler = new SamplingProfiler(12, threadSet) local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptProfiler.cpp 44 #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->GetSnapshotCount(); i < l; ++i)
136 v8::HeapProfiler* profiler = isolate->GetHeapProfiler(); local
237 v8::HeapProfiler* profiler = isolate->GetHeapProfiler(); local
260 v8::HeapProfiler* profiler = isolate->GetHeapProfiler(); local
    [all...]
V8GCController.cpp 300 v8::HeapProfiler* profiler = m_isolate->GetHeapProfiler(); local
304 profiler->SetRetainedObjectInfo(v8::UniqueId(reinterpret_cast<intptr_t>(root)), new RetainedDOMInfo(root));

Completed in 508 milliseconds

1 2