Searched defs:tvp (Results 1 - 11 of 11) sorted by relevance

/external/openssh/openbsd-compat/
H A Dbsd-poll.c46 struct timeval tv, *tvp = NULL; local
85 tvp = &tv;
88 ret = select(maxfd + 1, readfds, writefds, exceptfds, tvp);
H A Dbsd-misc.c107 int utimes(char *filename, struct timeval *tvp) argument
111 ub.actime = tvp[0].tv_sec;
112 ub.modtime = tvp[1].tv_sec;
/external/qemu/distrib/sdl-1.2.15/src/video/ggi/
H A DSDL_ggievents.c51 struct timeval *tvp, tv = { 0, 0 }; local
54 tvp = &tv;
58 while (ggiEventPoll(VIS, emAll, tvp))
59 /* while (ggiEventPoll(VIS, (emKeyboard | emPointer | emCommand), tvp)) */
/external/tcpdump/
H A Dutil.c145 ts_print(register const struct timeval *tvp) argument
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
[all...]
/external/webkit/Source/WebCore/manual-tests/NPN_Invoke/
H A Dmain.c235 FunctionPointer functionPointerForTVector(TransitionVector tvp) argument
240 if (tvp != NULL) {
245 newGlue[0] |= ((UInt32)tvp >> 16);
246 newGlue[1] |= ((UInt32)tvp & 0xFFFF);
/external/elfutils/src/
H A Dstrip.c113 const char *fname, mode_t mode, struct timeval tvp[2]);
117 struct timeval tvp[2]);
377 mode_t mode, struct timeval tvp[2])
1746 if (tvp != NULL)
1748 if (futimes (fd, tvp) != 0)
1767 struct timeval tvp[2])
1803 if (tvp != NULL)
1805 if (unlikely (futimes (fd, tvp) != 0))
376 handle_elf(int fd, Elf *elf, const char *prefix, const char *fname, mode_t mode, struct timeval tvp[2]) argument
1766 handle_ar(int fd, Elf *elf, const char *prefix, const char *fname, struct timeval tvp[2]) argument
/external/openssh/
H A Dserverloop.c282 struct timeval tv, *tvp; local
354 tvp = NULL;
358 tvp = &tv;
362 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
H A Dssh-agent.c1143 struct timeval *tvp = NULL; local
1359 prepare_select(&readsetp, &writesetp, &max_fd, &nalloc, &tvp);
1360 result = select(max_fd + 1, readsetp, writesetp, NULL, tvp);
H A Dclientloop.c564 struct timeval tv, *tvp; local
623 tvp = NULL;
627 tvp = &tv;
630 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);
/external/libxml2/
H A Dxmllint.c415 my_gettimeofday(struct timeval *tvp, void *tzp) argument
420 if (tvp) {
421 tvp->tv_sec = timebuffer.time;
422 tvp->tv_usec = timebuffer.millitm * 1000L;
/external/mksh/src/
H A Dfuncs.c845 struct tbl *tvp; local
851 for (tvp = vp; tvp; tvp = tvp->u.array)
852 if (tvp->flag & ISSET) {

Completed in 271 milliseconds