Home
last modified time | relevance | path

Searched refs:fdset (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/openssl/openssl/util/perl/TLSProxy/
DProxy.pm358 my $fdset = IO::Select->new($self->{proxy_sock});
359 if (!$fdset->can_read(60)) {
376 $fdset = IO::Select->new($server_sock, $client_sock);
381 while($fdset->count && $ctr < 10) {
388 if (!(@ready = $fdset->can_read(1))) {
400 $fdset->remove($server_sock);
410 $fdset->remove($client_sock);
/third_party/openssl/util/perl/TLSProxy/
DProxy.pm358 my $fdset = IO::Select->new($self->{proxy_sock});
359 if (!$fdset->can_read(60)) {
376 $fdset = IO::Select->new($server_sock, $client_sock);
381 while($fdset->count && $ctr < 10) {
388 if (!(@ready = $fdset->can_read(1))) {
400 $fdset->remove($server_sock);
410 $fdset->remove($client_sock);
/third_party/curl/lib/
Dwarnless.h82 int curlx_FD_ISSET(int fd, fd_set *fdset);
84 void curlx_FD_SET(int fd, fd_set *fdset);
86 void curlx_FD_ZERO(fd_set *fdset);
/third_party/skia/third_party/externals/tint/tools/src/cmd/remote-compile/
Dsocket.cc291 fd_set fdset; in Connect() local
292 FD_ZERO(&fdset); in Connect()
293 FD_SET(socket, &fdset); in Connect()
298 res = select(static_cast<int>(socket + 1), nullptr, &fdset, nullptr, &tv); in Connect()
/third_party/curl/tests/libtest/
Dlib582.c192 static void updateFdSet(struct Sockets *sockets, fd_set* fdset, in updateFdSet() argument
197 FD_SET(sockets->sockets[i], fdset); in updateFdSet()
218 static void checkFdSet(CURLM *curl, struct Sockets *sockets, fd_set *fdset, in checkFdSet() argument
223 if(FD_ISSET(sockets->sockets[i], fdset)) { in checkFdSet()
Dlib530.c218 static void updateFdSet(struct Sockets *sockets, fd_set* fdset, in updateFdSet() argument
223 FD_SET(sockets->sockets[i], fdset); in updateFdSet()
246 struct Sockets *sockets, fd_set *fdset, in checkFdSet() argument
252 if(FD_ISSET(sockets->sockets[i], fdset)) { in checkFdSet()
/third_party/rust/crates/nix/src/sys/
Dselect.rs30 let mut fdset = mem::MaybeUninit::uninit(); in new() localVariable
32 libc::FD_ZERO(fdset.as_mut_ptr()); in new()
33 FdSet(fdset.assume_init()) in new()
/third_party/mksh/
Dfuncs.c1736 fd_set fdset; in c_read() local
1738 FD_ZERO(&fdset); in c_read()
1739 FD_SET((unsigned int)fd, &fdset); in c_read()
1748 switch (select(fd + 1, &fdset, NULL, NULL, &tv)) { in c_read()
/third_party/lwip/src/api/
Dsockets.c1977 lwip_select_inc_sockets_used_set(int maxfdp, fd_set *fdset, fd_set *used_sockets) in lwip_select_inc_sockets_used_set() argument
1980 if (fdset) { in lwip_select_inc_sockets_used_set()
1984 if (FD_ISSET(i, fdset) && !FD_ISSET(i, used_sockets)) { in lwip_select_inc_sockets_used_set()