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

1 2 3

  /external/chromium/third_party/libevent/
evutil.h 123 #define evutil_timeradd(tvp, uvp, vvp) timeradd((tvp), (uvp), (vvp))
124 #define evutil_timersub(tvp, uvp, vvp) timersub((tvp), (uvp), (vvp))
126 #define evutil_timeradd(tvp, uvp, vvp) \
128 (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \
129 (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \
135 #define evutil_timersub(tvp, uvp, vvp) \
137 (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \
138 (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec;
    [all...]
  /bionic/libc/upstream-netbsd/libc/gen/
utime.c 52 struct timeval tv[2], *tvp; local
57 tvp = NULL;
62 tvp = tv;
64 return (utimes(path, tvp));
  /external/chromium/third_party/libevent/compat/sys/
_libevent_time.h 79 #define timerclear(tvp) (tvp)->tv_sec = (tvp)->tv_usec = 0
80 #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
81 #define timercmp(tvp, uvp, cmp) \
82 (((tvp)->tv_sec == (uvp)->tv_sec) ? \
83 ((tvp)->tv_usec cmp (uvp)->tv_usec) : \
84 ((tvp)->tv_sec cmp (uvp)->tv_sec)
    [all...]
_time.h 79 #define timerclear(tvp) (tvp)->tv_sec = (tvp)->tv_usec = 0
80 #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
81 #define timercmp(tvp, uvp, cmp) \
82 (((tvp)->tv_sec == (uvp)->tv_sec) ? \
83 ((tvp)->tv_usec cmp (uvp)->tv_usec) : \
84 ((tvp)->tv_sec cmp (uvp)->tv_sec)
    [all...]
  /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/i686-linux-glibc2.7-4.4.3/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/i686-linux-glibc2.7-4.6/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.7-4.6/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...]
  /external/tcpdump/
util.c 145 ts_print(register const struct timeval *tvp)
156 s = (tvp->tv_sec + thiszone) % 86400;
159 (unsigned)tvp->tv_usec);
167 (unsigned)tvp->tv_sec,
168 (unsigned)tvp->tv_usec);
175 int d_usec = tvp->tv_usec - b_usec;
176 int d_sec = tvp->tv_sec - b_sec;
186 b_sec = tvp->tv_sec;
187 b_usec = tvp->tv_usec;
191 s = (tvp->tv_sec + thiszone) % 86400
    [all...]
  /external/openssh/openbsd-compat/
bsd-poll.c 46 struct timeval tv, *tvp = NULL; local
85 tvp = &tv;
88 ret = select(maxfd + 1, readfds, writefds, exceptfds, tvp);
bsd-misc.c 107 int utimes(char *filename, struct timeval *tvp)
111 ub.actime = tvp[0].tv_sec;
112 ub.modtime = tvp[1].tv_sec;
  /external/quake/quake/src/WinQuake/
mpdosock.h 100 #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
101 #define timercmp(tvp, uvp, cmp) \
102 ((tvp)->tv_sec cmp (uvp)->tv_sec || \
103 (tvp)->tv_sec == (uvp)->tv_sec && (tvp)->tv_usec cmp (uvp)->tv_usec)
104 #define timerclear(tvp) (tvp)->tv_sec = (tvp)->tv_usec = 0
    [all...]
  /external/webkit/Source/WebCore/manual-tests/NPN_Invoke/
main.c 235 FunctionPointer functionPointerForTVector(TransitionVector tvp)
240 if (tvp != NULL) {
245 newGlue[0] |= ((UInt32)tvp >> 16);
246 newGlue[1] |= ((UInt32)tvp & 0xFFFF);
  /device/generic/goldfish/camera/
EmulatedCameraDevice.cpp 350 struct timeval tv, *tvp = NULL; local
362 tvp = &tv;
364 int res = TEMP_FAILURE_RETRY(select(fd_num, fds, NULL, NULL, tvp));
  /external/qemu/distrib/sdl-1.2.15/src/video/ggi/
SDL_ggievents.c 51 struct timeval *tvp, tv = { 0, 0 }; local
54 tvp = &tv;
58 while (ggiEventPoll(VIS, emAll, tvp))
59 /* while (ggiEventPoll(VIS, (emKeyboard | emPointer | emCommand), 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/mksh/src/
sh.h 268 #define timerclear(tvp) \
270 (tvp)->tv_sec = (tvp)->tv_usec = 0; \
274 #define timeradd(tvp, uvp, vvp) \
276 (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \
277 (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \
285 #define timersub(tvp, uvp, vvp) \
287 (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \
288 (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \
    [all...]
  /external/elfutils/src/
strip.c 113 const char *fname, mode_t mode, struct timeval tvp[2]);
117 struct timeval tvp[2]);
377 mode_t mode, struct timeval tvp[2])
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginPackage.mm 717 FunctionPointer functionPointerForTVector(TransitionVector tvp)
722 if (tvp != NULL) {
727 newGlue[0] |= ((uintptr_t)tvp >> 16);
728 newGlue[1] |= ((uintptr_t)tvp & 0xFFFF);
  /bionic/libc/netbsd/resolv/
res_send.c 1317 struct timeval tv, *tvp; local
    [all...]
  /external/kernel-headers/original/linux/
compat.h 191 struct compat_timeval __user *tvp);
  /external/openssh/
serverloop.c 282 struct timeval tv, *tvp; local
354 tvp = NULL;
358 tvp = &tv;
362 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]);

Completed in 456 milliseconds

1 2 3