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

/art/test/927-timers/
H A Dtimers.cc46 jlong time; local
47 jvmtiError result = jvmti_env->GetTime(&time);
51 return time;
/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/tools/common/
H A Dcommon.py24 import time namespace
191 timeout: int, time out in seconds
295 timeout: int, seconds, time to wait for single test run to finish.
380 timeout: int, seconds, time to wait for single test run to finish.
456 time.sleep(0.5)
/art/runtime/interpreter/mterp/
H A Dgen_mterp.py22 import sys, string, re, time namespace
/art/test/testrunner/
H A Dtestrunner.py58 import time namespace
92 # The set contains all the variants of each time.
357 time.sleep(0.1)
467 time.sleep(0.1)
981 time.sleep(0.1)
/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.cc148 LOG(WARNING) << "Ignoring tracing request to use CPU time.";
182 // Compute an average time taken to measure clocks.
666 // Compute elapsed time.
683 os << StringPrintf("elapsed-time-usec=%" PRIu64 "\n", elapsed);
826 // First event, record the base time in the map.
827 uint64_t time = thread->GetCpuMicroTime(); local
828 thread->SetTraceClockBase(time);
/art/runtime/hprof/
H A Dhprof.cc32 #include <sys/time.h>
34 #include <time.h>
35 #include <time.h>
160 void StartNewRecord(uint8_t tag, uint32_t time) { argument
166 AddU4(time);
613 // first time to see this class
671 // The current time, in milliseconds since 0:00 GMT, 1/1/70.
676 // U4: high word of the 64-bit time.
678 // U4: low word of the 64-bit time.
816 // Hold the socket lock for the whole time sinc
[all...]
/art/runtime/gc/space/
H A Dimage_space.cc812 const uint64_t time = NanoTime() - start; local
814 VLOG(image) << "Decompressing image took " << PrettyDuration(time) << " ("
815 << PrettySize(static_cast<uint64_t>(map->Size()) * MsToNs(1000) / (time + 1))
1418 // for time-to-UI.

Completed in 326 milliseconds