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

/frameworks/native/cmds/dumpstate/
H A Ddumpstate.h216 * DurationReporter duration_reporter(title);
219 class DurationReporter { class
221 DurationReporter(const char *title);
222 DurationReporter(const char *title, FILE* out);
224 ~DurationReporter();
H A Dutils.cpp69 DurationReporter::DurationReporter(const char *title) : DurationReporter(title, stdout) {} function in class:DurationReporter
71 DurationReporter::DurationReporter(const char *title, FILE *out) { function in class:DurationReporter
74 started_ = DurationReporter::nanotime();
79 DurationReporter::~DurationReporter() {
81 uint64_t elapsed = DurationReporter::nanotime() - started_;
92 uint64_t DurationReporter
[all...]

Completed in 158 milliseconds