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

  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
event.py 8 thread_start, thread_duration and thread_end are the start time, duration
15 def __init__(self, category, name, start, duration, thread_start=None,
21 self.thread_start = thread_start
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)") % (
54 self.thread_start,
async_slice.py 15 thread_start=None, thread_duration=None):
17 category, name, timestamp, duration, thread_start, thread_duration,
trace_event_importer_unittest.py 55 self.assertAlmostEqual(280 / 1000.0, slice_event.thread_start)
66 self.assertAlmostEqual(356 / 1000.0, slice_event.thread_start)
76 self.assertEqual(None, slice_event.thread_start)
144 self.assertAlmostEqual(0.002, slice_a.thread_start)
151 self.assertAlmostEqual(0.003, slice_b.thread_start)
183 self.assertAlmostEqual(1 / 1000.0, slice_event.thread_start)
193 self.assertAlmostEqual(2 / 1000.0, slice_event.thread_start)
212 self.assertAlmostEqual(1 / 1000.0, slice_event.thread_start)
267 self.assertAlmostEqual(0, slice_event.thread_start)
280 self.assertAlmostEqual(0.001, slice2.thread_start)
    [all...]
thread.py 140 # but not for |curr_slice.thread_start|, because it takes some time to
142 if curr_slice.thread_start != None and end_thread_timestamp != None:
144 curr_slice.thread_start)
178 if s.thread_start != None:
179 s.thread_duration = max_thread_timestamp - s.thread_start
counter.py 45 def thread_start(self): member in class:CounterSample
model.py 203 if event.thread_start != None:
204 self._thread_time_bounds[thread].AddValue(event.thread_start)
trace_event_importer.py 335 async_slice.thread_start = events[0]['event']['tts'] / 1000.0
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
mainthread_jank_stats_unittest.py 15 def CreateTestRecord(self, name, start, end, thread_start, thread_end,
20 end_thread=parent_thread, thread_start=thread_start,
21 thread_duration=thread_end - thread_start)
30 # (thread_start) (thread_end)
v8_gc_latency_unittest.py 37 def AddEvent(self, category, name, thread_start, thread_duration,
39 wall_start = wall_start or thread_start
41 self._renderer_thread.BeginSlice(category, name, wall_start, thread_start,
44 thread_start + thread_duration)
103 thread_start=0, thread_duration=14, wall_start=5, wall_duration=35)
116 thread_start=0, thread_duration=77, wall_start=5, wall_duration=88)
167 thread_start=0, thread_duration=57, wall_start=5, wall_duration=68)
217 thread_start=0, thread_duration=80, wall_start=5, wall_duration=92)
268 thread_start=0, thread_duration=80, wall_start=5, wall_duration=92)
273 thread_start=15, thread_duration=4, wall_start=15, wall_duration=14
    [all...]
trace_event_stats_unittest.py 53 start, duration, thread_start, thread_duration):
58 start, duration, thread_start, thread_duration)
v8_execution_unittest.py 70 start, duration, thread_start=None, thread_duration=None):
74 start if thread_start is None else thread_start,
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/
timeline_interaction_record_unittest.py 29 timestamp=0, duration=200, thread_start=20, thread_duration=100)
33 self, parent_thread, time_start, time_end, thread_start, thread_end):
35 thread_duration = thread_end - thread_start
37 duration, thread_start, thread_duration)
68 end_thread=renderer_main, thread_start=30, thread_duration=30)
100 end_thread=renderer_main, thread_start=30, thread_duration=30)
106 ' start=0.000000, duration=200, thread_start=30, thread_duration=30))')
122 end_thread=renderer_main, thread_start=55, thread_duration=75)
timeline_interaction_record.py 206 timeline_slice.thread_start, timeline_slice.thread_end,
207 self._async_event.thread_start, self._async_event.thread_end)
timeline_based_measurement_unittest.py 95 thread_start=ts, thread_duration=duration))
  /external/skia/src/utils/
SkThreadUtils_win.cpp 32 static DWORD WINAPI thread_start(LPVOID data) { function
55 thread_start, // thread function name (proxy)
SkThreadUtils_pthread.cpp 59 static void* thread_start(void* arg) { function
77 thread_start,
  /external/compiler-rt/lib/safestack/
safestack.cc 125 /// Safe stack per-thread information passed to the thread_start function
137 static void *thread_start(void *arg) { function
203 return REAL(pthread_create)(thread, attr, thread_start, tinfo);
  /frameworks/wilhelm/tests/sandbox/
multithread.c 42 void *thread_start(void *param) function
155 ok = pthread_create(&threads[i], (const pthread_attr_t *) NULL, thread_start,

Completed in 748 milliseconds