/external/mesa3d/src/gallium/auxiliary/os/ |
os_time.c | 149 int64_t start_time = os_time_get_nano(); local 150 int64_t end_time = start_time + timeout; 153 if (os_time_timeout(start_time, end_time, os_time_get_nano()))
|
/hardware/intel/common/libva/test/decode/ |
loadjpeg.c | 114 clock_t start_time, finish_time; local 126 start_time = clock(); 129 duration = finish_time - start_time;
|
/external/lisa/tools/analysis/ |
runtime.py | 16 self.start_time = -1 38 parser.add_argument('--start-time', dest='start_time', action='store', default=0, type=float, 88 rp.start_time = rp.last_start_time 118 kwargs = { 'window': (args.start_time, args.end_time) } 120 kwargs = { 'abs_window': (args.start_time, args.end_time) } 145 start = rd.start_time
|
/cts/common/host-side/util/src/com/android/compatibility/common/util/ |
MetricsStore.java | 39 * Note that key is generated in the form of start_time#class#method name. 62 * @return test key in the form of start_time#abi#class_name#method_name
|
/cts/hostsidetests/sustainedperf/shadertoy_android/jni/ |
shadertoy_renderer.cpp | 94 static double start_time = NowInMs();
local 113 float global_time = (float)(NowInMs() - start_time);
|
/external/autotest/client/site_tests/enterprise_KioskPerf/ |
enterprise_KioskPerf.py | 69 start_time = time.time() 74 while (time.time() - start_time) < TOTAL_TEST_DURATION:
|
/external/autotest/client/tests/wb_kupdate/ |
wb_kupdate.py | 75 def _needs_more_time(self, start_time, duration, _now=None): 79 @param start_time: a datetime object specifying the start time of the 89 time_diff = datetime.datetime.now() - start_time 91 time_diff = _now - start_time 139 def _wait_until_data_flushed(self, start_time, max_wait_time): 143 @param start_time: the time when data was actually written into the 163 if not self._needs_more_time(start_time, max_wait_time): 168 return datetime.datetime.now() - start_time
|
/external/autotest/site_utils/ |
cleanup_tko_db.py | 65 start_time = time.time() 71 duration = time.time() - start_time
|
/system/tools/aidl/tests/ |
aidl_test_sentinel_searcher.cpp | 84 const time_t start_time = time(nullptr); local 88 if (time(nullptr) - start_time > timeout_seconds) {
|
/tools/test/connectivity/acts/tests/google/bt/test_tools/ |
BtReconnectTest.py | 60 start_time = time.time() 64 while time.time() < start_time + 10 and len(
|
/developers/build/prebuilts/gradle/Timer/Wearable/src/main/java/com/example/android/wearable/timer/util/ |
Constants.java | 24 public static final String START_TIME = "timer_start_time";
|
/developers/samples/android/wearable/wear/Timer/Wearable/src/main/java/com/example/android/wearable/timer/util/ |
Constants.java | 24 public static final String START_TIME = "timer_start_time";
|
/development/samples/browseable/Timer/src/com.example.android.wearable.timer/util/ |
Constants.java | 24 public static final String START_TIME = "timer_start_time";
|
/external/chromium-trace/catapult/common/py_utils/py_utils/ |
__init__.py | 116 start_time = time.time() 117 last_output_time = start_time 118 elapsed_time = time.time() - start_time 124 elapsed_time = now - start_time
|
/external/libchrome/dbus/ |
exported_object.h | 127 void SendSignalInternal(base::TimeTicks start_time, 144 base::TimeTicks start_time); 149 void SendResponse(base::TimeTicks start_time, 157 base::TimeTicks start_time);
|
/external/linux-kselftest/tools/testing/selftests/timers/ |
set-timer-lat.c | 64 struct timespec start_time; variable in typeref:struct:timespec 114 delta_ns = timespec_sub(start_time, ts); 153 clock_gettime(clock_id, &start_time); 155 its1.it_value = start_time;
|
/external/webrtc/webrtc/base/ |
sharedexclusivelock_unittest.cc | 71 uint32_t start_time = Time(); local 74 waiting_time_in_ms_ = TimeDiff(Time(), start_time); 104 uint32_t start_time = Time(); local 107 waiting_time_in_ms_ = TimeDiff(Time(), start_time);
|
/tools/test/connectivity/acts/framework/acts/test_utils/bt/ |
BluetoothBaseTest.py | 36 start_time = 0 variable in class:BluetoothBaseTest 127 self.start_time = self._get_time_in_milliseconds() 130 total_time = self._get_time_in_milliseconds() - self.start_time 132 self.start_time = 0
|
/tools/test/connectivity/acts/tests/google/bt/ |
BtMetricsTest.py | 68 start_time = get_current_epoch_time() 78 time_bonds.append((start_time, end_time)) 102 asserts.assert_true(start_time <= t <= end_time, 104 (t, start_time, end_time))
|
/tools/test/connectivity/acts/tests/google/wifi/ |
WifiPreFlightTest.py | 93 start_time = time.time() 94 while(time.time() < start_time + SCAN_TIME): 121 start_time = time.time() 122 while(time.time() < start_time + SCAN_TIME):
|
/system/extras/simpleperf/ |
cpu_hotplug_test.cpp | 246 auto start_time = std::chrono::steady_clock::now(); local 247 auto cur_time = start_time; 256 std::chrono::steady_clock::now() - start_time); 302 auto start_time = std::chrono::steady_clock::now(); local 303 auto cur_time = start_time; 312 std::chrono::steady_clock::now() - start_time); 386 auto start_time = std::chrono::steady_clock::now(); local 387 auto cur_time = start_time; 388 auto end_time = start_time + test_duration_for_long_tests; 395 std::chrono::steady_clock::now() - start_time); [all...] |
/tools/loganalysis/src/com/android/loganalysis/item/ |
MonkeyLogItem.java | 43 public static final String START_TIME = "START_TIME"; 76 START_TIME, STOP_TIME, PACKAGES, CATEGORIES, THROTTLE, SEED, TARGET_COUNT, 104 return (Date) getAttribute(START_TIME); 111 setAttribute(START_TIME, time);
|
SmartMonkeyLogItem.java | 38 public static final String START_TIME = "START_TIME"; 71 START_TIME, STOP_TIME, PACKAGES, THROTTLE, TARGET_INVOCATIONS, ABORTED, 100 return (Date) getAttribute(START_TIME); 107 setAttribute(START_TIME, time);
|
/external/v8/src/ |
d8-posix.cc | 82 const struct timeval& start_time) { 89 time_t seconds = time_now.tv_sec - start_time.tv_sec; 91 (time_now.tv_usec - start_time.tv_usec) / 1000); 116 static bool TimeIsOut(const struct timeval& start_time, const int& total_time) { 121 int seconds = static_cast<int>(time_now.tv_sec - start_time.tv_sec); 126 int useconds = static_cast<int>(time_now.tv_usec - start_time.tv_usec); 303 const struct timeval& start_time, 326 start_time) || 327 (TimeIsOut(start_time, total_timeout))) { 377 const struct timeval& start_time, 490 struct timeval start_time; local [all...] |
/external/autotest/contrib/ |
compare_suite.py | 89 self.start_time = _get_timestamp(lines[0]) 93 if self.end_time < self.start_time: 95 self.time_used = self.end_time - self.start_time 101 else self.start_time) 125 self.start_time = self.tko_job.started_time 128 self.time_used = self.end_time - self.start_time 162 if task.time_started < self.start_time: 176 start = self.start_time 345 test_job_runtimes = [job_runtime(job, suite_job_runtime.start_time,
|