HomeSort by relevance Sort by last modified time
    Searched full:thread_duration (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/tools/telemetry/telemetry/core/timeline/
event.py 8 thread_start, thread_duration and thread_end are the start time, duration
16 thread_duration=None, args=None):
22 self.thread_duration = thread_duration
35 if self.thread_start == None or self.thread_duration == None:
37 return self.thread_start + self.thread_duration
46 "thread_start=%s, thread_duration=%s%s)") % (
51 self.thread_duration,
slice_unittest.py 15 thread_duration=5)
17 thread_duration=1)
19 thread_duration=0.125)
21 thread_duration=None)
slice.py 17 thread_timestamp=None, thread_duration=None, args=None):
19 category, name, timestamp, duration, thread_timestamp, thread_duration,
47 have a thread_duration value.
49 if not self.thread_duration:
54 if e.thread_duration == None:
56 child_total += e.thread_duration
58 return self.thread_duration - child_total
thread.py 135 curr_slice.thread_duration = (end_thread_timestamp -
141 thread_timestamp, thread_duration, args=None):
149 new_slice.thread_duration = thread_duration
163 s.thread_duration = max_thread_timestamp - s.thread_start
164 assert s.thread_duration >= 0
trace_event_importer_unittest.py 58 self.assertAlmostEqual((310 - 280) / 1000.0, slice_event.thread_duration)
69 self.assertAlmostEqual((357 - 356) / 1000.0, slice_event.thread_duration)
79 self.assertEqual(None, slice_event.thread_duration)
145 self.assertAlmostEqual(0.003, slice_a.thread_duration)
152 self.assertAlmostEqual(0.001, slice_b.thread_duration)
176 self.assertAlmostEqual((3 - 1) / 1000.0, slice_event.thread_duration)
194 self.assertAlmostEqual(0, slice_event.thread_duration)
245 self.assertAlmostEqual(0.003, slice_event.thread_duration)
254 self.assertAlmostEqual(0.001, slice2.thread_duration)
317 self.assertAlmostEqual((2 - 1) / 1000.0, slice_event.thread_duration)
    [all...]
counter.py 40 def thread_duration(self): member in class:CounterSample
  /external/chromium_org/tools/perf/metrics/
rendering_stats_unittest.py 63 timestamp, duration=0.0, thread_timestamp=None, thread_duration=None,
101 timestamp, duration=0.0, thread_timestamp=None, thread_duration=None,
timeline.py 149 cpu = sum([event.thread_duration for event in thread.toplevel_slices])
  /external/chromium_org/base/debug/
trace_event_impl.cc 708 int64 thread_duration = thread_duration_.ToInternalValue();
709 if (thread_duration != -1)
710 StringAppendF(out, ",\"tdur\":%" PRId64, thread_duration);
    [all...]
trace_event_impl.h 144 TimeDelta thread_duration() const { return thread_duration_; } function in class:base::debug::TraceEvent

Completed in 854 milliseconds