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

  /external/chromium_org/tools/telemetry/telemetry/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
31 return self.thread_start is not None and self.thread_duration is not None
39 if self.thread_start == None or self.thread_duration == None:
41 return self.thread_start + self.thread_duration
50 "thread_start=%s, thread_duration=%s%s)") % (
55 self.thread_duration,
slice.py 18 thread_timestamp=None, thread_duration=None, args=None):
20 category, name, timestamp, duration, thread_timestamp, thread_duration,
55 have a thread_duration value.
57 if not self.thread_duration:
62 if e.thread_duration == None:
64 child_total += e.thread_duration
66 return self.thread_duration - child_total
slice_unittest.py 16 thread_duration=5)
18 thread_duration=1)
20 thread_duration=0.125)
22 thread_duration=None)
async_slice.py 15 thread_start=None, thread_duration=None):
17 category, name, timestamp, duration, thread_start, thread_duration,
thread.py 144 curr_slice.thread_duration = (end_thread_timestamp -
150 thread_timestamp, thread_duration, args=None):
158 new_slice.thread_duration = thread_duration
172 s.thread_duration = max_thread_timestamp - s.thread_start
173 assert s.thread_duration >= 0
trace_event_importer_unittest.py 67 self.assertAlmostEqual((310 - 280) / 1000.0, slice_event.thread_duration)
78 self.assertAlmostEqual((357 - 356) / 1000.0, slice_event.thread_duration)
88 self.assertEqual(None, slice_event.thread_duration)
157 self.assertAlmostEqual(0.003, slice_a.thread_duration)
164 self.assertAlmostEqual(0.001, slice_b.thread_duration)
196 self.assertAlmostEqual((3 - 1) / 1000.0, slice_event.thread_duration)
206 self.assertAlmostEqual((5 - 2) / 1000.0, slice_event.thread_duration)
225 self.assertAlmostEqual(0, slice_event.thread_duration)
281 self.assertAlmostEqual(0.003, slice_event.thread_duration)
293 self.assertAlmostEqual(0.001, slice2.thread_duration)
    [all...]
counter.py 41 def thread_duration(self): member in class:CounterSample
trace_event_importer.py 357 async_slice.thread_duration = ((event['tts'] / 1000.0)
381 sub_slice.thread_duration = \
  /external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/
v8_stats.py 10 self.thread_duration = 0.0
15 return self.thread_duration - self.thread_duration_inside_idle
54 event_stats.thread_duration += event.thread_duration
56 event_stats.thread_duration_inside_idle += event.thread_duration
60 return sum(x.thread_duration for x in self.all_event_stats)
fast_metric_unittest.py 17 def __init__(self, wall_start, wall_duration, thread_start, thread_duration):
24 thread_start + thread_duration)
38 thread_duration):
41 thread_start + thread_duration)
85 wall_start=5, wall_duration=35, thread_start=0, thread_duration=54)
87 wall_start=32, wall_duration=37, thread_start=51, thread_duration=33)
115 wall_start=5, wall_duration=35, thread_start=0, thread_duration=54)
117 wall_start=32, wall_duration=37) # no thread_start, no thread_duration
147 wall_start=2, wall_duration=45, thread_start=0, thread_duration=101)
150 wall_start=6, wall_duration=27, thread_start=51, thread_duration=33
    [all...]
mainthread_jank_stats_unittest.py 21 thread_duration=thread_end - thread_start)
fast_metric.py 84 event_stats.thread_duration,
rendering_stats_unittest.py 97 timestamp, duration=0.0, thread_timestamp=None, thread_duration=None,
137 timestamp, duration=0.0, thread_timestamp=None, thread_duration=None,
  /external/chromium_org/tools/telemetry/telemetry/web_perf/
timeline_interaction_record_unittest.py 29 timestamp=0, duration=200, thread_start=20, thread_duration=100)
35 thread_duration = thread_end - thread_start
37 duration, thread_start, thread_duration)
80 end_thread=renderer_main, thread_start=30, thread_duration=30)
112 end_thread=renderer_main, thread_start=30, thread_duration=30)
118 ' start=0.000000, duration=200, thread_start=30, thread_duration=30))')
130 # scheduled 75% of the time (hence thread_duration = 100ms*75% = 75ms).
134 end_thread=renderer_main, thread_start=55, thread_duration=75)
timeline_interaction_record.py 244 # record's async slice with their thread_duration/duration ratios.
251 timeline_slice.thread_duration / float(timeline_slice.duration))
253 self._async_event.thread_duration / float(self._async_event.duration))
timeline_based_measurement_unittest.py 87 thread_start=ts, thread_duration=duration))
  /external/chromium_org/tools/perf/metrics/
timeline.py 116 event.thread_duration):
117 return event.thread_duration
162 # A thread_duration of 0 is valid, so this only returns 0 if it is None.
163 if x.thread_duration == None:
169 cpu_duration += x.thread_duration
  /external/chromium_org/base/debug/
trace_event_impl.h 148 TimeDelta thread_duration() const { return thread_duration_; } function in class:base::debug::TraceEvent
trace_event_impl.cc 740 int64 thread_duration = thread_duration_.ToInternalValue();
741 if (thread_duration != -1)
742 StringAppendF(out, ",\"tdur\":%" PRId64, thread_duration);
    [all...]

Completed in 363 milliseconds