Searched defs:DurationReporter (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/cmds/dumpstate/
H A Ddumpstate.h219 * DurationReporter duration_reporter(title);
222 class DurationReporter { class
224 DurationReporter(const char *title);
225 DurationReporter(const char *title, FILE* out);
227 ~DurationReporter();
H A Dutils.cpp71 DurationReporter::DurationReporter(const char *title) : DurationReporter(title, stdout) {} function in class:DurationReporter
73 DurationReporter::DurationReporter(const char *title, FILE *out) { function in class:DurationReporter
76 started_ = DurationReporter::nanotime();
81 DurationReporter::~DurationReporter() {
83 uint64_t elapsed = DurationReporter::nanotime() - started_;
94 uint64_t DurationReporter
[all...]

Completed in 1047 milliseconds