HomeSort by relevance Sort by last modified time
    Searched full:thread_duration (Results 1 - 21 of 21) 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,
event_unittest.py 12 # No thread_start and no thread_duration
14 # Has thread_start but no thread_duration
16 # Has thread_duration but no thread_start
18 # Has thread_start and 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
async_slice.py 14 thread_start=None, thread_duration=None):
16 category, name, timestamp, duration, thread_start, thread_duration,
thread.py 154 curr_slice.thread_duration = (end_thread_timestamp -
160 thread_timestamp, thread_duration, args=None):
168 new_slice.thread_duration = thread_duration
182 s.thread_duration = max_thread_timestamp - s.thread_start
183 assert s.thread_duration >= 0
counter.py 40 def thread_duration(self): member in class:CounterSample
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)
280 self.assertAlmostEqual(0.003, slice_event.thread_duration)
291 self.assertAlmostEqual(0.001, slice2.thread_duration)
    [all...]
trace_event_importer.py 350 async_slice.thread_duration = ((event['tts'] / 1000.0)
374 sub_slice.thread_duration = \
  /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)
81 end_thread=renderer_main, thread_start=30, thread_duration=30)
113 end_thread=renderer_main, thread_start=30, thread_duration=30)
119 ' start=0.000000, duration=200, thread_start=30, thread_duration=30))')
131 # scheduled 75% of the time (hence thread_duration = 100ms*75% = 75ms).
135 end_thread=renderer_main, thread_start=55, thread_duration=75)
timeline_interaction_record.py 203 # record's async slice with their thread_duration/duration ratios.
210 timeline_slice.thread_duration / float(timeline_slice.duration))
212 self._async_event.thread_duration / float(self._async_event.duration))
timeline_based_measurement_unittest.py 39 thread_start=5, thread_duration=15))
44 thread_start=25, thread_duration=5))
  /external/chromium_org/tools/perf/metrics/
timeline.py 110 event.thread_duration):
111 return event.thread_duration
156 # A thread_duration of 0 is valid, so this only returns 0 if it is None.
157 if x.thread_duration == None:
163 cpu_duration += x.thread_duration
  /external/chromium_org/tools/telemetry/docs/
telemetry.core.timeline.event.html 39 thread_start,&nbsp;thread_duration&nbsp;and&nbsp;thread_end&nbsp;are&nbsp;the&nbsp;start&nbsp;time,&nbsp;duration<br>
47 <dl><dt><a name="TimelineEvent-__init__"><strong>__init__</strong></a>(self, category, name, start, duration, thread_start<font color="#909090">=None</font>, thread_duration<font color="#909090">=None</font>, args<font color="#909090">=None</font>)</dt></dl>
telemetry.core.timeline.slice.html 68 <dl><dt><a name="Slice-__init__"><strong>__init__</strong></a>(self, parent_thread, category, name, timestamp, duration<font color="#909090">=0</font>, thread_timestamp<font color="#909090">=None</font>, thread_duration<font color="#909090">=None</font>, args<font color="#909090">=None</font>)</dt></dl>
75 have&nbsp;a&nbsp;thread_duration&nbsp;value.</tt></dd>
telemetry.core.timeline.counter.html 112 <dl><dt><strong>thread_duration</strong></dt>
telemetry.core.timeline.thread.html 108 <dl><dt><a name="Thread-PushCompleteSlice"><strong>PushCompleteSlice</strong></a>(self, category, name, timestamp, duration, thread_timestamp, thread_duration, args<font color="#909090">=None</font>)</dt></dl>
  /external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/
mainthread_jank_stats_unittest.py 21 thread_duration=thread_end - thread_start)
rendering_stats_unittest.py 89 timestamp, duration=0.0, thread_timestamp=None, thread_duration=None,
129 timestamp, duration=0.0, thread_timestamp=None, thread_duration=None,
  /external/chromium_org/base/debug/
trace_event_impl.cc 728 int64 thread_duration = thread_duration_.ToInternalValue();
729 if (thread_duration != -1)
730 StringAppendF(out, ",\"tdur\":%" PRId64, thread_duration);
    [all...]
trace_event_impl.h 140 TimeDelta thread_duration() const { return thread_duration_; } function in class:base::debug::TraceEvent

Completed in 468 milliseconds