OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:time_now
(Results
1 - 10
of
10
) sorted by null
/external/google-breakpad/src/client/windows/crash_generation/
client_info.cc
170
ULARGE_INTEGER
time_now
;
local
171
time_now
.HighPart = now.dwHighDateTime;
172
time_now
.LowPart = now.dwLowDateTime;
175
__int64 delay = (
time_now
.QuadPart - time_start.QuadPart) / 10 / 1000;
/external/boringssl/src/tool/
speed.cc
71
static uint64_t
time_now
() { return GetTickCount64() * 1000; }
function
73
static uint64_t
time_now
() {
function
84
static uint64_t
time_now
() {
function
99
uint64_t start =
time_now
(), now, delta;
105
now =
time_now
();
128
now =
time_now
();
/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);
/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/openssh/
moduli.c
158
time_t
time_now
;
local
161
time(&
time_now
);
162
gtm = gmtime(&
time_now
);
534
time_t
time_now
, elapsed;
local
539
time_now
= monotime();
541
time_start = time_prev =
time_now
;
545
if (
time_now
- time_prev < 5 * 60)
547
time_prev =
time_now
;
548
elapsed =
time_now
- time_start;
554
time(&
time_now
);
[
all
...]
/external/v8/src/
d8-posix.cc
90
struct timeval
time_now
;
local
91
gettimeofday(&
time_now
, NULL);
92
int seconds =
time_now
.tv_sec - start_time.tv_sec;
93
gone = seconds * 1000 + (
time_now
.tv_usec - start_time.tv_usec) / 1000;
125
struct timeval
time_now
;
local
126
gettimeofday(&
time_now
, NULL);
128
int seconds =
time_now
.tv_sec - start_time.tv_sec;
133
int useconds =
time_now
.tv_usec - start_time.tv_usec;
/external/v8/src/base/platform/
platform-win32.cc
335
TimeStamp
time_now
;
local
336
GetSystemTimeAsFileTime(&
time_now
.ft_);
343
needs_resync |= (
time_now
.t_ - init_time.t_) > kMaxClockElapsedTime;
346
needs_resync |=
time_now
.t_ < init_time.t_;
[
all
...]
/external/wpa_supplicant_8/src/p2p/
p2p.c
723
struct os_reltime
time_now
;
local
757
os_get_reltime(&
time_now
);
758
rx_time = &
time_now
;
[
all
...]
/system/vold/
cryptfs.c
2253
struct timespec
time_now
;
local
[
all
...]
Completed in 583 milliseconds