/packages/apps/Camera2/src/com/android/camera/stats/profiler/ |
Profiler.java | 17 package com.android.camera.stats.profiler; 23 public interface Profiler {
|
LoggingProfiler.java | 17 package com.android.camera.stats.profiler; 19 * A logging profiler creates profiles that will write all 22 public class LoggingProfiler implements Profiler {
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/ |
ProfilerRegistry.java | 25 package org.slf4j.profiler; 39 Map<String, Profiler> profilerMap = new HashMap<String, Profiler>(); 41 public void put(Profiler profiler) { 42 put(profiler.getName(), profiler); local 45 public void put(String name, Profiler profiler) { 46 profilerMap.put(name, profiler); [all...] |
Profiler.java | 25 package org.slf4j.profiler; 34 // + Profiler [BAS] 37 // |--+ Profiler Y 45 * A poor man's profiler to measure the time elapsed performing some lengthy 50 public class Profiler implements TimeInstrument { 52 final static String PROFILER_MARKER_NAME = "PROFILER"; 67 public Profiler(String name) { 106 public Profiler startNested(String name) { 108 Profiler nestedProfiler = new Profiler(name) 239 Profiler profiler = (Profiler) child; local [all...] |
/external/swiftshader/src/Main/ |
Config.cpp | 22 Profiler profiler; member in namespace:sw 24 Profiler::Profiler() 29 void Profiler::reset() 55 void Profiler::nextFrame()
|
Config.hpp | 50 struct Profiler 52 Profiler(); 78 extern Profiler profiler;
|
/external/webrtc/webrtc/base/ |
profiler.h | 11 // A simple wall-clock profiler for instrumented code. 59 rtc::Profiler::Instance()->ReportAllToLog(__FILE__, __LINE__, sev) 64 rtc::Profiler::Instance()->ReportToLog(__FILE__, __LINE__, sev, prefix) 67 #define PROFILE_START(msg) rtc::Profiler::Instance()->StartEvent(msg) 68 #define PROFILE_STOP(msg) rtc::Profiler::Instance()->StopEvent(msg) 88 // Tracks information for one profiler event. 115 // macros, defined above, rather than directly calling Profiler methods. 116 class Profiler { 118 ~Profiler(); 129 static Profiler* Instance() [all...] |
profiler_unittest.cc | 12 #include "webrtc/base/profiler.h" 32 ASSERT_TRUE(Profiler::Instance()->Clear()); 36 const ProfilerEvent* event = Profiler::Instance()->GetEvent(function_name); 58 ASSERT_TRUE(Profiler::Instance()->Clear()); 61 event1 = Profiler::Instance()->GetEvent(kEvent1Name); 74 event2 = Profiler::Instance()->GetEvent(kEvent2Name); 104 ASSERT_TRUE(Profiler::Instance()->Clear()); 106 EXPECT_FALSE(Profiler::Instance()->Clear()); 107 EXPECT_TRUE(Profiler::Instance()->GetEvent("event") != NULL); 109 EXPECT_TRUE(Profiler::Instance()->Clear()) [all...] |
profiler.cc | 11 #include "webrtc/base/profiler.h" 89 Profiler::~Profiler() = default; 91 Profiler* Profiler::Instance() { 92 RTC_DEFINE_STATIC_LOCAL(Profiler, instance, ()); 96 Profiler::Profiler() { 99 void Profiler::StartEvent(const std::string& event_name) { 115 void Profiler::StopEvent(const std::string& event_name) [all...] |
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/ |
BasicProfilerDemo.java | 25 package org.slf4j.profiler; 44 + Profiler [BASIC] 56 // create a profiler called "BASIC" 57 Profiler profiler = new Profiler("BASIC"); local 58 profiler.start("A"); 61 profiler.start("B"); 64 profiler.start("OTHER"); 66 profiler.stop().print() [all...] |
NestedProfilerDemo.java | 25 package org.slf4j.profiler; 43 + Profiler [DEMO] 45 |---+ Profiler [SORT_AND_PRUNE] 58 // create a profiler called "DEMO" 59 Profiler profiler = new Profiler("DEMO"); local 61 // register this profiler in the thread context's profiler registry 63 profiler.registerWith(profilerRegistry) [all...] |
ProfilerTest.java | 25 package org.slf4j.profiler; 41 Profiler profiler = new Profiler("SMOKE"); local 42 profiler.stop(); 43 StopWatch gSW = profiler.globalStopWatch; 46 profiler.sanityCheck(); 48 assertEquals(0, profiler.childTimeInstrumentList.size()); 49 assertNull(profiler.getLastTimeInstrument()); 53 Profiler profiler = new Profiler("BAS") local 85 Profiler profiler = new Profiler("BAS"); local [all...] |
NestedProfilerDemo2.java | 25 package org.slf4j.profiler; 44 Profiler profiler = new Profiler("DEMO"); local 45 // associate a logger with the profiler 46 profiler.setLogger(logger); 49 profiler.registerWith(profilerRegistry); 51 profiler.start("RANDOM"); 56 profiler.startNested(SortAndPruneComposites.NESTED_PROFILER_NAME); 62 profiler.stop().log() [all...] |
/external/v8/src/inspector/ |
v8-profiler-agent-impl.h | 12 #include "src/inspector/protocol/Profiler.h" 25 class V8ProfilerAgentImpl : public protocol::Profiler::Backend { 38 Response stop(std::unique_ptr<protocol::Profiler::Profile>*) override; 43 std::unique_ptr<protocol::Array<protocol::Profiler::ScriptCoverage>>* 46 std::unique_ptr<protocol::Array<protocol::Profiler::ScriptCoverage>>* 59 std::unique_ptr<protocol::Profiler::Profile> stopProfiling( 66 protocol::Profiler::Frontend m_frontend;
|
/packages/inputmethods/LatinIME/native/jni/src/utils/ |
profiler.h | 29 class Profiler final { 31 Profiler(const clockid_t clockId) 35 ~Profiler() { 57 DISALLOW_IMPLICIT_CONSTRUCTORS(Profiler); 74 #define PROF_INIT Profiler __LATINIME__PROFILER__(CLOCK_THREAD_CPUTIME_ID)
|
/system/extras/tests/icachetest/ |
Profiler.cpp | 17 #include "Profiler.h" 50 Profiler& Profiler::get() noexcept { 51 static Profiler sProfiler; 55 Profiler::Profiler() noexcept { 57 Profiler::resetEvents(EV_CPU_CYCLES | EV_L1D_RATES | EV_BPU_RATES); 60 Profiler::~Profiler() noexcept { 68 uint32_t Profiler::resetEvents(uint32_t eventMask) noexcept [all...] |
Profiler.h | 34 class Profiler { 65 static Profiler& get() noexcept; 68 Profiler(const Profiler& rhs) = delete; 69 Profiler(Profiler&& rhs) = delete; 70 Profiler& operator=(const Profiler& rhs) = delete; 71 Profiler& operator=(Profiler&& rhs) = delete [all...] |
Android.mk | 5 LOCAL_SRC_FILES:= icache_main.cpp Profiler.cpp icache.S
|
icache_main.cpp | 11 #include "Profiler.h" 87 Profiler& profiler = Profiler::get(); local 88 profiler.resetEvents(Profiler::EV_CPU_CYCLES | Profiler::EV_L1I_RATES); 90 if (!profiler.isValid()) { 102 Profiler::Counters counters; 105 profiler.reset() [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_cprofile.py | 20 obj = _lsprof.Profiler(lambda: int)
22 obj = _lsprof.Profiler(1)
59 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
87 {method 'disable' of '_lsprof.Profiler' objects} <-
119 {method 'disable' of '_lsprof.Profiler' objects} ->
|
/external/python/cpython2/Lib/test/ |
test_cprofile.py | 20 obj = _lsprof.Profiler(lambda: int) 22 obj = _lsprof.Profiler(1) 59 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects} 87 {method 'disable' of '_lsprof.Profiler' objects} <- 119 {method 'disable' of '_lsprof.Profiler' objects} ->
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_cprofile.py | 20 obj = _lsprof.Profiler(lambda: int) 22 obj = _lsprof.Profiler(1) 59 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects} 87 {method 'disable' of '_lsprof.Profiler' objects} <- 119 {method 'disable' of '_lsprof.Profiler' objects} ->
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_cprofile.py | 20 obj = _lsprof.Profiler(lambda: int) 22 obj = _lsprof.Profiler(1) 59 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects} 87 {method 'disable' of '_lsprof.Profiler' objects} <- 119 {method 'disable' of '_lsprof.Profiler' objects} ->
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_cprofile.py | 20 obj = _lsprof.Profiler(lambda: int) 22 obj = _lsprof.Profiler(1) 59 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects} 87 {method 'disable' of '_lsprof.Profiler' objects} <- 119 {method 'disable' of '_lsprof.Profiler' objects} ->
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_cprofile.py | 20 obj = _lsprof.Profiler(lambda: int) 22 obj = _lsprof.Profiler(1) 59 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects} 87 {method 'disable' of '_lsprof.Profiler' objects} <- 119 {method 'disable' of '_lsprof.Profiler' objects} ->
|