Home
last modified time | relevance | path

Searched refs:Profiler (Results 1 – 4 of 4) sorted by relevance

/system/extras/tests/icachetest/
DProfiler.h34 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;
83 friend class Profiler; variable
90 } counters[Profiler::EVENT_COUNT];
219 Profiler() noexcept;
220 ~Profiler() noexcept;
DProfiler.cpp50 Profiler& Profiler::get() noexcept { in get()
51 static Profiler sProfiler; in get()
55 Profiler::Profiler() noexcept { in Profiler() function in utils::Profiler
57 Profiler::resetEvents(EV_CPU_CYCLES | EV_L1D_RATES | EV_BPU_RATES); in Profiler()
60 Profiler::~Profiler() noexcept { in ~Profiler()
68 uint32_t Profiler::resetEvents(uint32_t eventMask) noexcept { in resetEvents()
Dicache_main.cpp87 Profiler& profiler = Profiler::get(); in main()
88 profiler.resetEvents(Profiler::EV_CPU_CYCLES | Profiler::EV_L1I_RATES); in main()
102 Profiler::Counters counters; in main()
DAndroid.bp8 "Profiler.cpp",