Searched defs:time (Results 1 - 6 of 6) sorted by relevance

/art/runtime/base/
H A Dtiming_logger.cc92 // Convert delta time to microseconds so that we don't overflow our counters.
174 uint64_t time = timings_[i].GetTime() - timings_[open_idx].GetTime(); local
175 ret.data_[open_idx].exclusive_time += time;
177 ret.data_[open_idx].total_time += time;
180 // If there is a parent node, subtract from the exclusive time.
183 // total time value later.
184 ret.data_[open_stack.back()].exclusive_time -= time;
208 os << name_ << " [Exclusive time] [Total time]\n";
H A Dtiming_logger.h84 Timing(uint64_t time, const char* name) : time_(time), name_(name) { argument
123 // Each begin split has a total time and exclusive time. Exclusive time is total time - total
124 // time of children nodes.
175 // Return the time points of when each start / end timings start and finish.
185 // Do we want to print the exactly recorded split (true) or round down to the time unit being
/art/runtime/interpreter/mterp/
H A Dgen_mterp.py22 import sys, string, re, time namespace
/art/tools/dmtracedump/
H A Dcreatetesttrace.cc29 #include <sys/time.h>
30 #include <time.h>
62 uint32_t time; member in struct:dataRecord
99 * where the first column is the time, the second column is the thread id,
103 * more space. In the example above, A is called at time 4, A calls B at
104 * time 6, B returns at time 8, and A returns at time 10. Thread 1 is the
113 * In this file format, the thread id is always 1, and the time starts at
154 uint32_t time local
[all...]
/art/runtime/
H A Dtrace.cc142 LOG(WARNING) << "Ignoring tracing request to use CPU time.";
176 // Compute an average time taken to measure clocks.
680 // Compute elapsed time.
697 os << StringPrintf("elapsed-time-usec=%" PRIu64 "\n", elapsed);
838 // First event, record the base time in the map.
839 uint64_t time = thread->GetCpuMicroTime(); local
840 thread->SetTraceClockBase(time);
/art/runtime/hprof/
H A Dhprof.cc32 #include <sys/time.h>
34 #include <time.h>
35 #include <time.h>
157 void StartNewRecord(uint8_t tag, uint32_t time) { argument
163 AddU4(time);
593 // first time to see this class
651 // The current time, in milliseconds since 0:00 GMT, 1/1/70.
656 // U4: high word of the 64-bit time.
658 // U4: low word of the 64-bit time.
795 // Hold the socket lock for the whole time sinc
[all...]

Completed in 381 milliseconds