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

  /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;
  /external/curl/lib/
timeval.c 62 struct timespec tsnow; local
63 if(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow)) {
64 cnow.tv_sec = tsnow.tv_sec;
65 cnow.tv_usec = (unsigned int)(tsnow.tv_nsec / 1000);
  /external/curl/tests/server/
util.c 440 struct timespec tsnow; local
441 if(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow)) {
442 now.tv_sec = tsnow.tv_sec;
443 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 110 milliseconds