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

  /external/chromium_org/build/android/pylib/host_driven/
test_runner.py 21 def __init__(self, test_name, start_date_ms, exc_info):
26 start_date_ms: the starting time for the test.
33 duration_ms = (int(time.time()) * 1000) - start_date_ms
38 start_date_ms,
84 start_date_ms = int(time.time()) * 1000
99 test.tagged_name, start_date_ms, exc_info))
113 test.tagged_name, start_date_ms, exc_info))
128 test.tagged_name, start_date_ms, exc_info))
  /external/chromium_org/build/android/pylib/instrumentation/
test_runner.py 345 start_date_ms = None
352 start_date_ms = int(time.time()) * 1000
354 duration_ms = int(time.time()) * 1000 - start_date_ms
368 test, result_type, start_date_ms, duration_ms, log=log)
371 test, base_test_result.ResultType.PASS, start_date_ms, duration_ms)
382 if start_date_ms:
383 duration_ms = int(time.time()) * 1000 - start_date_ms
385 start_date_ms = int(time.time()) * 1000
391 test, base_test_result.ResultType.CRASH, start_date_ms, duration_ms,

Completed in 466 milliseconds