Searched refs:trace_time (Results 1 – 13 of 13) sorted by relevance
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/ |
D | trace_time_unittest.py | 11 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 …]
|
D | trace_event.py | 4 from py_trace_event import trace_time 87 trace_event_impl.add_trace_event("B", trace_time.Now(), "python", name, 91 trace_event_impl.add_trace_event("E", trace_time.Now(), "python", name) 94 trace_event_impl.add_trace_event("M", trace_time.Now(), "__metadata", 113 time_stamp = trace_time.Now()
|
D | trace_event_unittest.py | 16 from py_trace_event import trace_time 209 trace_event.clock_sync('id', issue_ts=trace_time.Now())
|
/external/chromium-trace/catapult/systrace/profile_chrome/ |
D | chrome_startup_tracing_agent.py | 23 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)
|
D | main.py | 138 if not options.trace_time and not options.continuous: 151 options.trace_time if not options.continuous else 0,
|
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/ |
D | decorators.py | 10 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()
|
D | log.py | 11 from py_trace_event import trace_time 92 "ts": trace_time.Now(), 169 add_trace_event("B", trace_time.Now(), "python", name, args) 172 add_trace_event("E", trace_time.Now(), "python", name, args) 175 add_trace_event("M", trace_time.Now(), "__metadata", "thread_name",
|
/external/chromium-trace/catapult/systrace/systrace/tracing_agents/ |
D | atrace_agent.py | 16 from py_trace_event import trace_time as trace_time_module 137 if (config.trace_time is not None) and (config.trace_time > 0): 138 atrace_args.extend(['-t', str(config.trace_time)]) 420 device_serial_number, trace_time, target): argument 432 self.trace_time = trace_time 463 options.trace_time, options.target)
|
D | walt_agent.py | 13 from py_trace_event import trace_time as trace_time_module
|
D | atrace_process_dump.py | 15 from py_trace_event import trace_time as trace_time_module
|
/external/chromium-trace/catapult/systrace/systrace/ |
D | run_systrace.py | 94 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)
|
D | tracing_controller.py | 282 def __init__(self, output_file, trace_time, write_json, argument 287 self.trace_time = trace_time 298 return TracingControllerConfig(options.output_file, options.trace_time, 305 return TracingControllerConfig(None, options.trace_time,
|
/external/chromium-trace/catapult/systrace/bin/ |
D | adb_profile_chrome_startup | 101 options.trace_time,
|