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

1 2

  /bionic/libc/bionic/
utime.c 45 struct timeval tv[2], *tvp; local
51 tvp = tv;
53 tvp = NULL;
54 return (utimes(path, tvp));
  /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...]
  /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...]
  /prebuilt/linux-x86/toolchain/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...]
  /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/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/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);
  /external/qemu/distrib/sdl-1.2.12/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/elfutils/src/
strip.c 96 const char *fname, mode_t mode, struct timeval tvp[2]);
100 struct timeval tvp[2]);
362 mode_t mode, struct timeval tvp[2])
    [all...]
  /external/webkit/WebKit/mac/Plugins/
WebNetscapePluginPackage.mm 698 FunctionPointer functionPointerForTVector(TransitionVector tvp)
703 if (tvp != NULL) {
708 newGlue[0] |= ((uintptr_t)tvp >> 16);
709 newGlue[1] |= ((uintptr_t)tvp & 0xFFFF);
  /bionic/libc/netbsd/resolv/
res_send.c 1149 struct timeval tv, *tvp; local
1154 tvp = &tv;
1157 tvp = NULL;
1160 n = select(nfds, rfds, wfds, efds, tvp);
  /external/kernel-headers/original/linux/
compat.h 191 struct compat_timeval __user *tvp);
  /external/dhcpcd/
client.c 118 #define timernorm(tvp) \
120 while ((tvp)->tv_usec >= 1000000) { \
121 (tvp)->tv_sec++; \
122 (tvp)->tv_usec -= 1000000; \
126 #define timerneg(tvp) ((tvp)->tv_sec < 0 || (tvp)->tv_usec < 0)
    [all...]
  /bionic/libc/include/sys/
linux-unistd.h 139 int utimes (const char*, const struct timeval tvp[2]);
  /development/ndk/platforms/android-3/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);
  /development/ndk/platforms/android-9/include/sys/
linux-unistd.h 139 int utimes (const char*, const struct timeval tvp[2]);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);

Completed in 878 milliseconds

1 2