HomeSort by relevance Sort by last modified time
    Searched refs:tvp (Results 1 - 25 of 54) sorted by null

1 2 3

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
_timeval.h 16 #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
17 #define timercmp(tvp,uvp,cmp) \
18 ((tvp)->tv_sec cmp (uvp)->tv_sec || \
19 ((tvp)->tv_sec == (uvp)->tv_sec && (tvp)->tv_usec cmp (uvp)->tv_usec))
20 #define timerclear(tvp) (tvp)->tv_sec = (tvp)->tv_usec =
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/gen/
utime.c 52 struct timeval tv[2], *tvp; local
57 tvp = NULL;
62 tvp = tv;
64 return (utimes(path, tvp));
  /external/clang/test/CodeGenCXX/
debug-info-alias.cpp 35 tv<int> *tvp;
  /external/dhcpcd/
common.h 40 #define timernorm(tvp) \
42 while ((tvp)->tv_usec >= 1000000) { \
43 (tvp)->tv_sec++; \
44 (tvp)->tv_usec -= 1000000; \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
time.h 137 /* Change the access time of FILE to TVP[0] and the modification time of
138 FILE to TVP[1]. If TVP is a null pointer, use the current time instead.
153 /* Change the access time of FILE relative to FD to TVP[0] and the
154 modification time of FILE to TVP[1]. If TVP is a null pointer, use
164 # define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
165 # define timerclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
time.h 137 /* Change the access time of FILE to TVP[0] and the modification time of
138 FILE to TVP[1]. If TVP is a null pointer, use the current time instead.
153 /* Change the access time of FILE relative to FD to TVP[0] and the
154 modification time of FILE to TVP[1]. If TVP is a null pointer, use
164 # define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
165 # define timerclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
time.h 137 /* Change the access time of FILE to TVP[0] and the modification time of
138 FILE to TVP[1]. If TVP is a null pointer, use the current time instead.
153 /* Change the access time of FILE relative to FD to TVP[0] and the
154 modification time of FILE to TVP[1]. If TVP is a null pointer, use
164 # define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
165 # define timerclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0
    [all...]
  /external/tcpdump/
util.c 160 ts_print(register const struct timeval *tvp)
173 s = (tvp->tv_sec + thiszone) % 86400;
174 (void)printf("%s ", ts_format(s, tvp->tv_usec));
182 (unsigned)tvp->tv_sec,
183 (unsigned)tvp->tv_usec);
190 b_usec = tvp->tv_usec;
191 b_sec = tvp->tv_sec;
194 d_usec = tvp->tv_usec - b_usec;
195 d_sec = tvp->tv_sec - b_sec;
205 b_sec = tvp->tv_sec
    [all...]
  /external/openssh/openbsd-compat/
bsd-poll.c 49 struct timeval tv, *tvp = NULL; local
88 tvp = &tv;
91 ret = select(maxfd + 1, readfds, writefds, exceptfds, tvp);
bsd-misc.c 108 int utimes(char *filename, struct timeval *tvp)
112 ub.actime = tvp[0].tv_sec;
113 ub.modtime = tvp[1].tv_sec;
  /external/chromium-trace/trace-viewer/tracing/build/
update_gypi.py 123 tvp = tracing_project.TracingProject()
125 os.path.join(tvp.tracing_root_path, 'trace_viewer.gypi'), GypiFile)
  /device/generic/goldfish/camera/
EmulatedCameraDevice.cpp 366 struct timeval tv, *tvp = NULL; local
378 tvp = &tv;
380 int res = TEMP_FAILURE_RETRY(select(fd_num, fds, NULL, NULL, tvp));
  /hardware/ril/libril/
ril_event.cpp 38 #define timeradd(tvp, uvp, vvp) \
40 (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \
41 (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \
  /external/ppp/pppd/
main.c     [all...]
  /external/libxml2/
testSAX.c 80 my_gettimeofday(struct timeval *tvp, void *tzp)
85 if (tvp) {
86 tvp->tv_sec = timebuffer.time;
87 tvp->tv_usec = timebuffer.millitm * 1000L;
  /external/mksh/src/
sh.h 273 #define timerclear(tvp) \
275 (tvp)->tv_sec = (tvp)->tv_usec = 0; \
279 #define timeradd(tvp, uvp, vvp) \
281 (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \
282 (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \
290 #define timersub(tvp, uvp, vvp) \
292 (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \
293 (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \
    [all...]
  /external/elfutils/src/src/
strip.c 113 const char *fname, mode_t mode, struct timeval tvp[2]);
117 struct timeval tvp[2]);
395 mode_t mode, struct timeval tvp[2])
    [all...]
  /bionic/libc/dns/resolv/
res_send.c 1335 struct timeval tv, *tvp; local
    [all...]
  /external/openssh/
serverloop.c 282 struct timeval tv, *tvp; local
361 tvp = NULL;
365 tvp = &tv;
369 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);

Completed in 1245 milliseconds

1 2 3