Home
last modified time | relevance | path

Searched refs:fdset (Results 1 - 11 of 11) sorted by relevance

/third_party/curl/lib/
H A 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/rust/crates/nix/src/sys/
H A Dselect.rs30 let mut fdset = mem::MaybeUninit::uninit(); in new() variables
32 libc::FD_ZERO(fdset.as_mut_ptr()); in new()
33 FdSet(fdset.assume_init()) in new()
/third_party/node/deps/openssl/openssl/util/perl/TLSProxy/
H A 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/
H A 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/skia/third_party/externals/tint/tools/src/cmd/remote-compile/
H A Dsocket.cc291 fd_set fdset; in Connect()
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/
H A 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()
H A 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()
252 if(FD_ISSET(sockets->sockets[i], fdset)) { in checkFdSet()
245 checkFdSet(CURLM *curl, struct Sockets *sockets, fd_set *fdset, int evBitmask, const char *name) checkFdSet() argument
/third_party/backends/backend/pixma/
H A Dpixma_bjnp.c672 fd_set fdset; in udp_command() local
698 FD_ZERO (&fdset); in udp_command()
699 FD_SET (sockfd, &fdset); in udp_command()
705 select (sockfd + 1, &fdset, NULL, NULL, &timeout)) <= 0) in udp_command()
2027 fd_set fdset; in sanei_bjnp_find_devices() local
2103 FD_ZERO (&fdset); in sanei_bjnp_find_devices()
2129 FD_SET (socket_fd[no_sockets], &fdset); in sanei_bjnp_find_devices()
2157 FD_SET (socket_fd[no_sockets], &fdset); in sanei_bjnp_find_devices()
2174 FD_SET (socket_fd[no_sockets], &fdset); in sanei_bjnp_find_devices()
2209 active_fdset = fdset; in sanei_bjnp_find_devices()
[all...]
/third_party/backends/backend/
H A Dmagicolor.c2081 fd_set fdset; in mc_network_discovery() local
2087 FD_ZERO (&fdset); in mc_network_discovery()
2088 snmp_select_info (&fds, &fdset, &timeout, &block); in mc_network_discovery()
2089 fds = select (fds, &fdset, NULL, NULL, /*block?NULL:*/&timeout); in mc_network_discovery()
2090 if (fds) snmp_read(&fdset); in mc_network_discovery()
/third_party/mksh/
H A 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/
H A 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()

Completed in 18 milliseconds