/third_party/openssl/test/ |
H A D | asynctest.c | 257 size_t numfds, numdelfds; in test_ASYNC_WAIT_CTX_get_all_fds() local 264 || !ASYNC_WAIT_CTX_get_all_fds(waitctx, NULL, &numfds) in test_ASYNC_WAIT_CTX_get_all_fds() 265 || numfds != 0 in test_ASYNC_WAIT_CTX_get_all_fds() 266 || !ASYNC_WAIT_CTX_get_changed_fds(waitctx, NULL, &numfds, NULL, in test_ASYNC_WAIT_CTX_get_all_fds() 268 || numfds != 0 in test_ASYNC_WAIT_CTX_get_all_fds() 273 || !ASYNC_WAIT_CTX_get_all_fds(waitctx, NULL, &numfds) in test_ASYNC_WAIT_CTX_get_all_fds() 274 || numfds != 1 in test_ASYNC_WAIT_CTX_get_all_fds() 275 || !ASYNC_WAIT_CTX_get_all_fds(waitctx, &fd, &numfds) in test_ASYNC_WAIT_CTX_get_all_fds() 278 || !ASYNC_WAIT_CTX_get_changed_fds(waitctx, NULL, &numfds, NULL, in test_ASYNC_WAIT_CTX_get_all_fds() 280 || numfds ! in test_ASYNC_WAIT_CTX_get_all_fds() [all...] |
/third_party/curl/tests/libtest/ |
H A D | lib1564.c | 36 int numfds; in test() local 52 multi_poll(multi, NULL, 0, 1000, &numfds); in test() 69 multi_poll(multi, NULL, 0, 1000, &numfds); in test() 84 multi_poll(multi, NULL, 0, 1000, &numfds); in test() 102 multi_poll(multi, NULL, 0, 1000, &numfds); in test() 117 multi_poll(multi, NULL, 0, 1000, &numfds); in test()
|
/third_party/ffmpeg/libavformat/ |
H A D | os_support.c | 226 int ff_poll(struct pollfd *fds, nfds_t numfds, int timeout) in ff_poll() argument 236 if (numfds >= FD_SETSIZE) { in ff_poll() 247 for (i = 0; i < numfds; i++) { in ff_poll() 284 for (i = 0; i < numfds; i++) { in ff_poll()
|
H A D | os_support.h | 167 int ff_poll(struct pollfd *fds, nfds_t numfds, int timeout);
|
/third_party/node/deps/openssl/openssl/crypto/async/ |
H A D | async_wait.c | 89 size_t *numfds) in ASYNC_WAIT_CTX_get_all_fds() 94 *numfds = 0; in ASYNC_WAIT_CTX_get_all_fds() 105 (*numfds)++; in ASYNC_WAIT_CTX_get_all_fds() 88 ASYNC_WAIT_CTX_get_all_fds(ASYNC_WAIT_CTX *ctx, OSSL_ASYNC_FD *fd, size_t *numfds) ASYNC_WAIT_CTX_get_all_fds() argument
|
/third_party/openssl/crypto/async/ |
H A D | async_wait.c | 89 size_t *numfds) in ASYNC_WAIT_CTX_get_all_fds() 94 *numfds = 0; in ASYNC_WAIT_CTX_get_all_fds() 105 (*numfds)++; in ASYNC_WAIT_CTX_get_all_fds() 88 ASYNC_WAIT_CTX_get_all_fds(ASYNC_WAIT_CTX *ctx, OSSL_ASYNC_FD *fd, size_t *numfds) ASYNC_WAIT_CTX_get_all_fds() argument
|
/third_party/curl/tests/http/clients/ |
H A D | h2-upgrade-extreme.c | 149 int running_handles = 0, start_count, numfds; in main() local 205 mc = curl_multi_poll(multi, NULL, 0, 1000000, &numfds); in main()
|
H A D | tls-session-reuse.c | 184 int running_handles = 0, numfds; in main() local 250 mc = curl_multi_poll(multi, NULL, 0, 1000000, &numfds); in main()
|
H A D | h2-pausing.c | 179 int i, still_running = 1, msgs_left, numfds; in main() local 281 if(curl_multi_poll(multi_handle, NULL, 0, 100, &numfds) != CURLM_OK) in main()
|
/third_party/curl/docs/examples/ |
H A D | crawler.c | 191 int numfds; in main() local 192 curl_multi_wait(multi_handle, NULL, 0, 1000, &numfds); in main()
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | async.h | 54 size_t *numfds);
|
H A D | ssl.h | 1821 __owur int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds);
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | async.h | 66 size_t *numfds);
|
/third_party/openssl/include/openssl/ |
H A D | async.h | 66 size_t *numfds);
|
/third_party/curl/lib/ |
H A D | easy.c | 562 int numfds = 0; in wait_or_timeout() local 573 /* fprintf(stderr, "poll() %d check socket %d\n", numfds, f->fd); */ in wait_or_timeout() 575 numfds++; in wait_or_timeout() 582 pollrc = Curl_poll(fds, numfds, ev->ms); in wait_or_timeout() 601 for(i = 0; i< numfds; i++) { in wait_or_timeout()
|
/third_party/node/deps/openssl/openssl/apps/lib/ |
H A D | apps.c | 3149 size_t numfds; in wait_for_async() local 3152 if (!SSL_get_all_async_fds(s, NULL, &numfds)) in wait_for_async() 3154 if (numfds == 0) in wait_for_async() 3156 fds = app_malloc(sizeof(OSSL_ASYNC_FD) * numfds, "allocate async fds"); in wait_for_async() 3157 if (!SSL_get_all_async_fds(s, fds, &numfds)) { in wait_for_async() 3163 for (i = 0; i < numfds; i++) { in wait_for_async()
|
/third_party/openssl/apps/lib/ |
H A D | apps.c | 3142 size_t numfds; in wait_for_async() local 3145 if (!SSL_get_all_async_fds(s, NULL, &numfds)) in wait_for_async() 3147 if (numfds == 0) in wait_for_async() 3149 fds = app_malloc(sizeof(OSSL_ASYNC_FD) * numfds, "allocate async fds"); in wait_for_async() 3150 if (!SSL_get_all_async_fds(s, fds, &numfds)) { in wait_for_async() 3156 for (i = 0; i < numfds; i++) { in wait_for_async()
|
/third_party/python/Modules/ |
H A D | socketmodule.c | 3980 size_t numfds; in sock_recvmsg_guts() local 3983 numfds = cmsgdatalen / sizeof(int); in sock_recvmsg_guts() 3985 while (numfds-- > 0) in sock_recvmsg_guts()
|
/third_party/node/deps/openssl/openssl/ssl/ |
H A D | ssl_lib.c | 1774 int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds) in SSL_get_all_async_fds() argument 1780 return ASYNC_WAIT_CTX_get_all_fds(ctx, fds, numfds); in SSL_get_all_async_fds()
|
/third_party/openssl/ssl/ |
H A D | ssl_lib.c | 1692 int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds) in SSL_get_all_async_fds() argument 1698 return ASYNC_WAIT_CTX_get_all_fds(ctx, fds, numfds); in SSL_get_all_async_fds()
|
/third_party/rust/crates/libc/src/unix/haiku/ |
H A D | mod.rs | 1602 numfds: ::nfds_t, in ppoll()
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/ |
H A D | ssl.h | 1945 __owur int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds);
|
/third_party/node/deps/openssl/config/archs/linux-elf/asm/include/openssl/ |
H A D | ssl.h | 1945 __owur int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds);
|
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/ |
H A D | ssl.h | 1945 __owur int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds);
|
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/ |
H A D | ssl.h | 1945 __owur int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds);
|