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

  /external/bluetooth/glib/gio/
gfilemonitor.c 462 guint32 time_now)
470 limiter->last_sent_change_time = time_now;
476 guint32 time_now; member in struct:__anon2363
483 guint32 time_now,
496 if (time_difference (time_now, expire_at) > 0)
500 time_difference (time_now, expire_at));
508 time_difference (time_now, limiter->send_delayed_change_at));
515 time_difference (time_now, limiter->send_virtual_changes_done_at));
530 time_difference (data->time_now, limiter->send_delayed_change_at) == 0)
531 rate_limiter_send_delayed_change_now (data->monitor, limiter, data->time_now);
646 guint32 time_now, since_last; local
    [all...]
  /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/dbus/dbus/
dbus-sysdeps-pthread.c 266 struct timeval time_now; local
279 time_now.tv_sec = monotonic_timer.tv_sec;
280 time_now.tv_usec = monotonic_timer.tv_nsec / 1000;
285 gettimeofday (&time_now, NULL);
287 end_time.tv_sec = time_now.tv_sec + timeout_milliseconds / 1000;
288 end_time.tv_nsec = (time_now.tv_usec + (timeout_milliseconds % 1000) * 1000) * 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);

Completed in 314 milliseconds