Home
last modified time | relevance | path

Searched refs:thread_start (Results 1 – 19 of 19) sorted by relevance

/external/chromium-trace/catapult/telemetry/telemetry/timeline/
Devent.py15 def __init__(self, category, name, start, duration, thread_start=None, argument
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
54 self.thread_start,
Dtrace_event_importer_unittest.py55 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 …]
Dasync_slice.py15 thread_start=None, thread_duration=None): argument
17 category, name, timestamp, duration, thread_start, thread_duration,
Dthread.py142 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
Dmodel.py203 if event.thread_start != None:
204 self._thread_time_bounds[thread].AddValue(event.thread_start)
Dcounter.py45 def thread_start(self): member in CounterSample
Dtrace_event_importer.py335 async_slice.thread_start = events[0]['event']['tts'] / 1000.0
/external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
Dv8_gc_latency_unittest.py37 def AddEvent(self, category, name, thread_start, thread_duration, argument
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 …]
Dmainthread_jank_stats_unittest.py15 def CreateTestRecord(self, name, start, end, thread_start, thread_end, argument
20 end_thread=parent_thread, thread_start=thread_start,
21 thread_duration=thread_end - thread_start)
Dv8_execution_unittest.py70 start, duration, thread_start=None, thread_duration=None): argument
74 start if thread_start is None else thread_start,
Dtrace_event_stats_unittest.py53 start, duration, thread_start, thread_duration): argument
58 start, duration, thread_start, thread_duration)
/external/chromium-trace/catapult/telemetry/telemetry/web_perf/
Dtimeline_interaction_record_unittest.py29 timestamp=0, duration=200, thread_start=20, thread_duration=100)
33 self, parent_thread, time_start, time_end, thread_start, thread_end): argument
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)
122 end_thread=renderer_main, thread_start=55, thread_duration=75)
Dtimeline_interaction_record.py206 timeline_slice.thread_start, timeline_slice.thread_end,
207 self._async_event.thread_start, self._async_event.thread_end)
Dtimeline_based_measurement_unittest.py95 thread_start=ts, thread_duration=duration))
/external/skia/src/utils/
DSkThreadUtils_win.cpp32 static DWORD WINAPI thread_start(LPVOID data) { in thread_start() function
55 thread_start, // thread function name (proxy) in SkThread()
DSkThreadUtils_pthread.cpp59 static void* thread_start(void* arg) { in thread_start() function
77 thread_start, in SkThread()
/external/valgrind/
Ddarwin10-drd.supp110 thread_start
113 fun:thread_start
Ddarwin9-drd.supp160 fun:thread_start
/external/compiler-rt/lib/safestack/
Dsafestack.cc137 static void *thread_start(void *arg) { in thread_start() function
203 return REAL(pthread_create)(thread, attr, thread_start, tinfo); in INTERCEPTOR()