Home
last modified time | relevance | path

Searched refs:tvp (Results 1 – 18 of 18) sorted by relevance

/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_os_userspace.h301 #define timeradd(tvp, uvp, vvp) \ argument
303 (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \
304 (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \
311 #define timersub(tvp, uvp, vvp) \ argument
313 (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \
314 (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \
1127 #define timercmp(tvp, uvp, cmp) \ argument
1128 (((tvp)->tv_sec == (uvp)->tv_sec) ? \
1129 ((tvp)->tv_usec cmp (uvp)->tv_usec) : \
1130 ((tvp)->tv_sec cmp (uvp)->tv_sec))
/third_party/node/deps/cares/src/tools/
Dahost.c61 struct timeval *tvp, tv; in main() local
158 tvp = ares_timeout(channel, NULL, &tv); in main()
159 res = select(nfds, &read_fds, &write_fds, NULL, tvp); in main()
Dacountry.c203 struct timeval *tvp, tv; in wait_ares() local
212 tvp = ares_timeout(channel, NULL, &tv); in wait_ares()
213 nfds = select(nfds, &read_fds, &write_fds, NULL, tvp); in wait_ares()
Dadig.c167 struct timeval *tvp, tv; in main() local
365 tvp = ares_timeout(channel, NULL, &tv); in main()
366 count = select(nfds, &read_fds, &write_fds, NULL, tvp); in main()
/third_party/skia/third_party/externals/microhttpd/doc/examples/
Dsessions.c721 struct timeval *tvp; in main() local
757 tvp = &tv; in main()
760 tvp = NULL; in main()
761 if (-1 == select (max + 1, &rs, &ws, &es, tvp)) in main()
/third_party/skia/third_party/externals/microhttpd/src/examples/
Dpost_example.c704 struct timeval *tvp; in main() local
740 tvp = &tv; in main()
743 tvp = NULL; in main()
744 select (max + 1, &rs, &ws, &es, tvp); in main()
/third_party/curl/lib/
Dasyn-ares.c431 struct timeval *tvp, tv, store; in Curl_resolver_wait_resolv() local
444 tvp = ares_timeout((ares_channel)data->state.async.resolver, &store, &tv); in Curl_resolver_wait_resolv()
449 if(!tvp->tv_sec) in Curl_resolver_wait_resolv()
450 timeout_ms = (timediff_t)(tvp->tv_usec/1000); in Curl_resolver_wait_resolv()
Dopenldap.c265 struct timeval tv = {0, 1}, *tvp; in oldap_connecting() local
292 tvp = &tv; in oldap_connecting()
314 if(tvp) in oldap_connecting()
318 rc = ldap_result(li->ld, li->msgid, LDAP_MSG_ONE, tvp, &msg); in oldap_connecting()
/third_party/libxml2/
DtestSAX.c80 my_gettimeofday(struct timeval *tvp, void *tzp) in my_gettimeofday() argument
85 if (tvp) { in my_gettimeofday()
86 tvp->tv_sec = timebuffer.time; in my_gettimeofday()
87 tvp->tv_usec = timebuffer.millitm * 1000L; in my_gettimeofday()
Dxmllint.c401 my_gettimeofday(struct timeval *tvp, void *tzp) in my_gettimeofday() argument
406 if (tvp) { in my_gettimeofday()
407 tvp->tv_sec = timebuffer.time; in my_gettimeofday()
408 tvp->tv_usec = timebuffer.millitm * 1000L; in my_gettimeofday()
/third_party/mksh/
Dsh.h324 #define timerclear(tvp) \ argument
326 (tvp)->tv_sec = (tvp)->tv_usec = 0; \
330 #define timeradd(tvp,uvp,vvp) \ argument
332 (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \
333 (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \
341 #define timersub(tvp,uvp,vvp) \ argument
343 (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \
344 (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \
Dvar.c2143 struct tbl *tvp; in c_typeset_vardump() local
2153 for (tvp = vp; tvp; tvp = tvp->u.array) in c_typeset_vardump()
2154 if (tvp->flag & ISSET) { in c_typeset_vardump()
/third_party/python/Modules/
Dselectmodule.c265 struct timeval tv, *tvp; in select_select_impl() local
271 tvp = (struct timeval *)NULL; in select_select_impl()
288 tvp = &tv; in select_select_impl()
321 if (tvp) in select_select_impl()
327 n = select(max, &ifdset, &ofdset, &efdset, tvp); in select_select_impl()
337 if (tvp) { in select_select_impl()
Dsocketmodule.c715 struct timeval tv, *tvp; in internal_select() local
762 tvp = &tv; in internal_select()
765 tvp = NULL; in internal_select()
782 NULL, &fds, &efds, tvp); in internal_select()
785 &fds, NULL, &efds, tvp); in internal_select()
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
Ddaemon.c792 struct timeval *tvp; in MHD_handle_connection() local
813 tvp = NULL; in MHD_handle_connection()
822 tvp = &tv; in MHD_handle_connection()
830 tvp = &tv; in MHD_handle_connection()
863 tvp = &tv; in MHD_handle_connection()
886 num_ready = MHD_SYS_select_ (max + 1, &rs, &ws, NULL, tvp); in MHD_handle_connection()
938 tvp = &tv; in MHD_handle_connection()
960 (NULL == tvp) ? -1 : tv.tv_sec * 1000) < 0) in MHD_handle_connection()
/third_party/quickjs/
Dquickjs-libc.c2221 struct timeval tv, *tvp; in js_os_poll() local
2267 tvp = &tv; in js_os_poll()
2269 tvp = NULL; in js_os_poll()
2293 ret = select(fd_max + 1, &rfds, &wfds, NULL, tvp); in js_os_poll()
/third_party/skia/third_party/externals/microhttpd/doc/
Dlibmicrohttpd-tutorial.info3874 struct timeval *tvp;
3910 tvp = &tv;
3913 tvp = NULL;
3914 if (-1 == select (max + 1, &rs, &ws, &es, tvp))
/third_party/chromium/patch/
D0001-cve.patch127888 -my_gettimeofday(struct timeval *tvp, void *tzp)
127893 - if (tvp) {
127894 - tvp->tv_sec = timebuffer.time;
127895 - tvp->tv_usec = timebuffer.millitm * 1000L;