OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tsnow
(Results
1 - 5
of
5
) sorted by null
/external/c-ares/
ares__timeval.c
47
struct timespec
tsnow
;
local
48
if(0 == clock_gettime(CLOCK_MONOTONIC, &
tsnow
)) {
49
now.tv_sec =
tsnow
.tv_sec;
50
now.tv_usec =
tsnow
.tv_nsec / 1000;
/external/curl/lib/
timeval.c
61
struct timespec
tsnow
;
local
62
if(0 == clock_gettime(CLOCK_MONOTONIC, &
tsnow
)) {
63
now.tv_sec =
tsnow
.tv_sec;
64
now.tv_usec =
tsnow
.tv_nsec / 1000;
/external/curl/src/
tool_util.c
65
struct timespec
tsnow
;
local
66
if(0 == clock_gettime(CLOCK_MONOTONIC, &
tsnow
)) {
67
now.tv_sec =
tsnow
.tv_sec;
68
now.tv_usec =
tsnow
.tv_nsec / 1000;
/external/curl/tests/libtest/
testutil.c
55
struct timespec
tsnow
;
local
56
if(0 == clock_gettime(CLOCK_MONOTONIC, &
tsnow
)) {
57
now.tv_sec =
tsnow
.tv_sec;
58
now.tv_usec =
tsnow
.tv_nsec / 1000;
/bionic/libc/upstream-netbsd/lib/libc/isc/
ev_timers.c
127
struct timespec
tsnow
;
local
136
if (clock_gettime(m, &
tsnow
) == 0)
137
return (
tsnow
);
148
struct timespec
tsnow
;
local
149
if (clock_gettime(CLOCK_REALTIME, &
tsnow
) == 0)
150
return (
tsnow
);
Completed in 1103 milliseconds