/third_party/node/deps/cares/src/tools/ |
H A D | ahost.c | 77 struct timeval *tvp; in main() local 194 tvp = ares_timeout(channel, NULL, &tv); in main() 195 if (tvp == NULL) { in main() 198 res = select(nfds, &read_fds, &write_fds, NULL, tvp); in main()
|
H A D | adig.c | 850 struct timeval *tvp; in event_loop() local 861 tvp = ares_timeout(channel, NULL, &tv); in event_loop() 862 if (tvp == NULL) { in event_loop() 865 count = select(nfds, &read_fds, &write_fds, NULL, tvp); in event_loop()
|
/third_party/skia/third_party/externals/microhttpd/doc/examples/ |
H A 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/ |
H A 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/ |
H A D | asyn-ares.c | 470 struct timeval *tvp, tv, store; in Curl_resolver_wait_resolv() local 483 tvp = ares_timeout((ares_channel)data->state.async.resolver, &store, &tv); in Curl_resolver_wait_resolv() 488 if(!tvp->tv_sec) in Curl_resolver_wait_resolv() 489 timeout_ms = (timediff_t)(tvp->tv_usec/1000); in Curl_resolver_wait_resolv()
|
/third_party/mksh/ |
H A D | sh.h | 324 #define timerclear(tvp) \ 326 (tvp)->tv_sec = (tvp)->tv_usec = 0; \ 330 #define timeradd(tvp,uvp,vvp) \ 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) \ 343 (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \ 344 (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \
|
H A 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/elfutils/src/ |
H A D | strip.c | 117 const char *fname, mode_t mode, struct timespec tvp[2]); 121 struct timespec tvp[2]) __attribute__ ((unused)); 982 mode_t mode, struct timespec tvp[2]) in handle_elf() 2679 if (tvp != NULL) in handle_elf() 2681 if (futimens (fd, tvp) != 0) in handle_elf() 2719 struct timespec tvp[2]) in handle_ar() 2755 if (tvp != NULL) in handle_ar() 2757 if (unlikely (futimens (fd, tvp) != 0)) in handle_ar() 981 handle_elf(int fd, Elf *elf, const char *prefix, const char *fname, mode_t mode, struct timespec tvp[2]) handle_elf() argument 2718 handle_ar(int fd, Elf *elf, const char *prefix, const char *fname, struct timespec tvp[2]) handle_ar() argument
|
/third_party/python/Modules/ |
H A D | selectmodule.c | 275 struct timeval tv, *tvp; in select_select_impl() local 281 tvp = (struct timeval *)NULL; in select_select_impl() 298 tvp = &tv; in select_select_impl() 331 if (tvp) { in select_select_impl() 343 tvp); in select_select_impl() 353 if (tvp) { in select_select_impl()
|
H A D | socketmodule.c | 737 struct timeval tv, *tvp; in internal_select() local 784 tvp = &tv; in internal_select() 787 tvp = NULL; in internal_select() 804 NULL, &fds, &efds, tvp); in internal_select() 807 &fds, NULL, &efds, tvp); in internal_select()
|
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
H A 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()
|