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

  /external/qemu/
iolooper-select.c 226 struct timeval time_now; local
227 return gettimeofday(&time_now, NULL) ? -1 : (int64_t)time_now.tv_sec * 1000LL +
228 time_now.tv_usec / 1000;
  /external/chromium/chrome/browser/extensions/
extension_idle_api.cc 105 double time_now = base::Time::Now().ToDoubleT(); local
106 double delta = time_now - polling_data.timestamp;
  /sdk/emulator/opengl/tests/event_injector/
iolooper-select.c 257 struct timeval time_now;
258 return gettimeofday(&time_now, NULL) ? -1 : (int64_t)time_now.tv_sec * 1000LL +
259 time_now.tv_usec / 1000;
  /system/extras/tests/bionic/libc/common/
test_pthread_rwlock.c 73 time_now(void) function
268 t1 = time_now();
289 t1 = time_now();
311 s->t0 = time_now();
test_pthread_mutex.c 74 time_now(void) function
291 t1 = time_now();
312 t1 = time_now();
334 s->t0 = time_now();
  /external/v8/src/
d8-posix.cc 114 struct timeval time_now; local
115 gettimeofday(&time_now, NULL);
116 int seconds = time_now.tv_sec - start_time.tv_sec;
117 gone = seconds * 1000 + (time_now.tv_usec - start_time.tv_usec) / 1000;
144 struct timeval time_now; local
145 gettimeofday(&time_now, NULL);
147 int seconds = time_now.tv_sec - start_time.tv_sec;
152 int useconds = time_now.tv_usec - start_time.tv_usec;
platform-win32.cc 470 TimeStamp time_now; local
471 GetSystemTimeAsFileTime(&time_now.ft_);
478 needs_resync |= (time_now.t_ - init_time.t_) > kMaxClockElapsedTime;
    [all...]
  /external/dnsmasq/src/
log.c 263 time_t time_now; local
337 time(&time_now);
342 p += sprintf(p, "%.15s dnsmasq%s[%d]: ", ctime(&time_now) + 4, func, (int)pid);
  /external/chromium/net/url_request/
url_request_throttler_unittest.cc 85 void ResetToBlank(const TimeTicks& time_now) {
86 fake_time_now_ = time_now;
87 mock_backoff_entry_.SetFakeNow(time_now);
90 GetBackoffEntry()->SetCustomReleaseTime(time_now);
91 set_sliding_window_release_time(time_now);
  /external/openssh/
moduli.c 150 time_t time_now; local
153 time(&time_now);
154 gtm = gmtime(&time_now);
  /external/wpa_supplicant_8/src/p2p/
p2p.c 664 struct os_time time_now; local
702 os_get_time(&time_now);
703 rx_time = &time_now;
    [all...]

Completed in 209 milliseconds