Home
last modified time | relevance | path

Searched refs:trace_time (Results 1 – 14 of 14) sorted by relevance

/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
Dtrace_time_unittest.py11 from py_trace_event import trace_time
28 old_qpc = trace_time.IsQPCUsable
29 trace_time.IsQPCUsable = f
32 trace_time.IsQPCUsable = old_qpc
37 trace_time.InitializeNowFunction('invalid_platform')
40 if not (sys.platform.startswith(trace_time._PLATFORMS['windows'])
41 or sys.platform.startswith(trace_time._PLATFORMS['cygwin'])):
43 trace_time.InitializeNowFunction(sys.platform)
44 self.assertTrue(trace_time.GetClock() == trace_time._WIN_HIRES
45 or trace_time.GetClock() == trace_time._WIN_LORES)
[all …]
Dtrace_event.py4 from py_trace_event import trace_time
92 trace_event_impl.add_trace_event("B", trace_time.Now(), "python", name,
96 trace_event_impl.add_trace_event("E", trace_time.Now(), "python", name)
99 trace_event_impl.add_trace_event("M", trace_time.Now(), "__metadata",
Dtrace_event_unittest.py16 from py_trace_event import trace_time
210 trace_event.clock_sync('id', issue_ts=trace_time.Now())
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
Dlog.py14 from py_trace_event import trace_time
59 _telemetry_ts = trace_time.Now()
123 ts=trace_time.Now(),
130 ts=trace_time.Now(),
146 "ts": trace_time.Now(),
302 add_trace_event("B", trace_time.Now(), "python", name, args)
305 add_trace_event("E", trace_time.Now(), "python", name, args)
308 add_trace_event("M", trace_time.Now(), "__metadata", "thread_name",
424 time_stamp = trace_time.Now()
Ddecorators.py10 from py_trace_event import trace_time
16 start = trace_time.Now()
22 end = trace_time.Now()
72 start = trace_time.Now()
77 end = trace_time.Now()
/external/chromium-trace/catapult/systrace/profile_chrome/
Dchrome_startup_tracing_agent.py23 trace_time=None): argument
31 self._trace_time = trace_time
118 chrome_categories, trace_time): argument
126 self.trace_time = trace_time
132 config.cold, config.url, config.trace_time)
154 options.trace_time)
Dmain.py138 if not options.trace_time and not options.continuous:
151 options.trace_time if not options.continuous else 0,
/external/chromium-trace/catapult/systrace/systrace/
Drun_systrace.py94 if options.trace_time and options.trace_time < 0:
192 elif options.trace_time:
193 print('Starting tracing (%d seconds)' % options.trace_time)
194 time.sleep(options.trace_time)
Dtracing_controller.py282 def __init__(self, output_file, trace_time, write_json, argument
287 self.trace_time = trace_time
299 return TracingControllerConfig(options.output_file, options.trace_time,
307 return TracingControllerConfig(None, options.trace_time,
/external/chromium-trace/catapult/systrace/systrace/tracing_agents/
Datrace_agent.py16 from py_trace_event import trace_time as trace_time_module
139 if (config.trace_time is not None) and (config.trace_time > 0):
140 atrace_args.extend(['-t', str(config.trace_time)])
432 device_serial_number, trace_time, target): argument
444 self.trace_time = trace_time
475 options.trace_time, options.target)
Dwalt_agent.py13 from py_trace_event import trace_time as trace_time_module
Datrace_process_dump.py15 from py_trace_event import trace_time as trace_time_module
/external/pigweed/pw_trace_tokenized/
Dtrace.cc120 PW_TRACE_TIME_TYPE trace_time = pw_trace_GetTraceTime(); in HandleNextItemInQueue() local
124 : PW_TRACE_GET_TIME_DELTA(last_trace_time_, trace_time); in HandleNextItemInQueue()
128 last_trace_time_ = trace_time; in HandleNextItemInQueue()
/external/chromium-trace/catapult/systrace/bin/
Dadb_profile_chrome_startup106 options.trace_time,