/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/ |
D | sctp_os_userspace.h | 301 #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/ |
D | ahost.c | 61 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()
|
D | acountry.c | 203 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()
|
D | adig.c | 167 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/ |
D | sessions.c | 721 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/ |
D | post_example.c | 704 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/ |
D | asyn-ares.c | 431 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()
|
D | openldap.c | 265 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/ |
D | testSAX.c | 80 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()
|
D | xmllint.c | 401 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/ |
D | sh.h | 324 #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; \
|
D | var.c | 2143 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/ |
D | selectmodule.c | 265 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()
|
D | socketmodule.c | 715 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/ |
D | daemon.c | 792 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/ |
D | quickjs-libc.c | 2221 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/ |
D | libmicrohttpd-tutorial.info | 3874 struct timeval *tvp; 3910 tvp = &tv; 3913 tvp = NULL; 3914 if (-1 == select (max + 1, &rs, &ws, &es, tvp))
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 127888 -my_gettimeofday(struct timeval *tvp, void *tzp) 127893 - if (tvp) { 127894 - tvp->tv_sec = timebuffer.time; 127895 - tvp->tv_usec = timebuffer.millitm * 1000L;
|