OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:time_now
(Results
1 - 9
of
9
) sorted by null
/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;
/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/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/openssh/
moduli.c
150
time_t
time_now
;
local
153
time(&
time_now
);
154
gtm = gmtime(&
time_now
);
/system/extras/tests/bionic/libc/common/
test_pthread_mutex.c
74
time_now
(void)
function
291
t1 =
time_now
();
312
t1 =
time_now
();
334
s->t0 =
time_now
();
test_pthread_rwlock.c
73
time_now
(void)
function
268
t1 =
time_now
();
289
t1 =
time_now
();
311
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/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 833 milliseconds