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

1 2 3 4 5 6

  /external/chromium_org/third_party/tcmalloc/chromium/src/google/
heap-profiler.h 34 #include <gperftools/heap-profiler.h>
profiler.h 34 #include <gperftools/profiler.h>
  /external/chromium_org/third_party/tcmalloc/vendor/src/google/
heap-profiler.h 34 #include <gperftools/heap-profiler.h>
profiler.h 34 #include <gperftools/profiler.h>
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_node_profiler.h 23 #define PROF_SPACE_SUBSTITUTION(profiler) profiler.profSpaceSubstitution()
24 #define PROF_SPACE_OMISSION(profiler) profiler.profSpaceOmission()
25 #define PROF_ADDITIONAL_PROXIMITY(profiler) profiler.profAdditionalProximity()
26 #define PROF_SUBSTITUTION(profiler) profiler.profSubstitution()
27 #define PROF_OMISSION(profiler) profiler.profOmission(
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
RetainedObjectInfo.h 34 #include <v8-profiler.h>
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...]
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
ThreadSampler.java 17 package dalvik.system.profiler;
22 * The {@code ThreadSampler} interfaces allows a profiler to choose
MalformedHprofException.java 17 package dalvik.system.profiler;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/profile/
base.h 42 #include <profile/impl/profiler.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/profile/
base.h 42 #include <profile/impl/profiler.h>
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/profile/
base.h 42 #include <profile/impl/profiler.h>
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/profile/
base.h 35 #include <profile/impl/profiler.h>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/profile/
base.h 42 #include <profile/impl/profiler.h>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/profile/
base.h 35 #include <profile/impl/profiler.h>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/profile/
base.h 35 #include <profile/impl/profiler.h>
  /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/Tools/Scripts/webkitpy/common/system/
profiler_unittest.py 34 from .profiler import ProfilerFactory, GooglePProf
53 profiler = ProfilerFactory.create_profiler(host, '/bin/executable', '/tmp/output')
55 self.assertEqual(profiler._output_path, "/tmp/output/test.dtps")
59 profiler = ProfilerFactory.create_profiler(host, '/bin/executable', '/tmp/output')
60 self.assertEqual(profiler._output_path, "/tmp/output/test.data")
102 profiler = GooglePProf(host, '/bin/executable', '/tmp/output')
103 self.assertEqual(profiler._first_ten_lines_of_profile(pprof_output), expected_first_ten_lines)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_hotshot.py 65 def run_test(self, callable, events, profiler=None):
66 if profiler is None:
67 profiler = self.new_profiler()
68 self.assertTrue(not profiler._prof.closed)
69 profiler.runcall(callable)
70 self.assertTrue(not profiler._prof.closed)
71 profiler.close()
72 self.assertTrue(profiler._prof.closed)
78 profiler = self.new_profiler()
79 profiler.runcall(f, profiler
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_hotshot.py 65 def run_test(self, callable, events, profiler=None):
66 if profiler is None:
67 profiler = self.new_profiler()
68 self.assertTrue(not profiler._prof.closed)
69 profiler.runcall(callable)
70 self.assertTrue(not profiler._prof.closed)
71 profiler.close()
72 self.assertTrue(profiler._prof.closed)
78 profiler = self.new_profiler()
79 profiler.runcall(f, profiler
    [all...]
  /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...]
heap-profiler.h 41 v8::internal::HeapProfiler* profiler = heap->isolate()->heap_profiler(); \
42 if (profiler != NULL && profiler->is_profiling()) { \
43 profiler->call; \
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
profiler_finder.py 9 from telemetry.core.platform import profiler namespace
15 profiler.Profiler).values()
  /external/chromium_org/v8/src/
heap-profiler.h 42 v8::internal::HeapProfiler* profiler = heap->isolate()->heap_profiler(); \
43 if (profiler != NULL && profiler->is_profiling()) { \
44 profiler->call; \
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
simple_compat_test.cc 41 #include <google/heap-profiler.h>
46 #include <google/profiler.h>
51 // any function calls that require the cpu-profiler code. The
52 // heap-profiler is ok.

Completed in 362 milliseconds

1 2 3 4 5 6