Home
last modified time | relevance | path

Searched refs:fd_set (Results 26 - 50 of 304) sorted by relevance

12345678910>>...13

/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);
H A Dselect.c125 fd_set *fds_read, /* sockets ready for reading */ in our_select()
126 fd_set *fds_write, /* sockets ready for writing */ in our_select()
127 fd_set *fds_err, /* sockets with errors */ in our_select()
146 /* WinSock select() must not be called with an fd_set that contains zero in our_select()
156 many bits are set on an fd_set. So, let's just check it beforehand. in our_select()
277 fd_set fds_read; in Curl_poll()
278 fd_set fds_write; in Curl_poll()
279 fd_set fds_err; in Curl_poll()
/third_party/musl/porting/liteos_a/user/src/select/
H A Dselect.c10 int select(int n, fd_set *restrict rfds, fd_set *restrict wfds, fd_set *restrict efds, struct timeval *restrict tv) in select()
/third_party/musl/src/select/
H A Dpselect.c10 int pselect(int n, fd_set *restrict rfds, fd_set *restrict wfds, fd_set *restrict efds, const struct timespec *restrict ts, const sigset_t *restrict mask) in pselect()
H A Dselect.c10 int select(int n, fd_set *restrict rfds, fd_set *restrict wfds, fd_set *restrict efds, struct timeval *restrict tv) in select()
/third_party/lwip/src/include/lwip/priv/
H A Dsockets_priv.h154 fd_set *readset;
156 fd_set *writeset;
158 fd_set *exceptset;
/foundation/communication/dsoftbus/adapter/common/kernel/posix/
H A Dsoftbus_adapter_socket.c259 FD_ZERO((fd_set *)set->fdsBits); in SoftBusSocketFdZero()
273 FD_SET(socketFd, (fd_set *)set->fdsBits); in SoftBusSocketFdSet()
283 FD_CLR(socketFd, (fd_set *)set->fdsBits); in SoftBusSocketFdClr()
297 if (FD_ISSET(socketFd, (fd_set *)set->fdsBits) == true) { in SoftBusSocketFdIsset()
307 fd_set *tempReadSet = NULL; in SoftBusSocketSelect()
308 fd_set *tempWriteSet = NULL; in SoftBusSocketSelect()
309 fd_set *tempExceptSet = NULL; in SoftBusSocketSelect()
312 tempReadSet = (fd_set *)readFds->fdsBits; in SoftBusSocketSelect()
315 tempWriteSet = (fd_set *)writeFds->fdsBits; in SoftBusSocketSelect()
318 tempExceptSet = (fd_set *)exceptFd in SoftBusSocketSelect()
[all...]
/third_party/skia/third_party/externals/microhttpd/src/include/
H A Dmicrohttpd.h63 * includes to define the `uint64_t`, `size_t`, `fd_set`, `socklen_t`
126 #error Cygwin with winsock fd_set is not supported
1563 * daemon FDs in fd_sets, call FD_ZERO for each fd_set
1576 * fit fd_set.
1581 fd_set *read_fd_set,
1582 fd_set *write_fd_set,
1583 fd_set *except_fd_set,
1590 * daemon FDs in fd_sets, call FD_ZERO for each fd_set
1605 * fit fd_set.
1610 fd_set *read_fd_se
[all...]
/base/telephony/ril_adapter/services/hril/include/
H A Dhril_event.h59 void ProcessEvents(fd_set *rfds, int32_t number);
61 void CopyReadFds(fd_set *rfds);
67 fd_set readFds_;
/foundation/communication/dhcp/test/unittest/services/dhcp_client/
H A Dmock_system_func.h43 MOCK_METHOD5(select, int(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout));
/foundation/communication/dhcp/test/unittest/services/dhcp_server/unittest/
H A Dsystem_func_mock.h42 MOCK_METHOD5(select, int(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout));
H A Dsystem_func_mock.cpp126 int __real_select(int __nfds, fd_set *__readfds, fd_set *__writefds, fd_set *__exceptfds, struct timeval *__timeout);
127 int __wrap_select(int __nfds, fd_set *__readfds, fd_set *__writefds, fd_set *__exceptfds, struct timeval *__timeout) in __wrap_select()
/third_party/curl/tests/libtest/
H A Dlib1507.c91 fd_set fdread; in test()
92 fd_set fdwrite; in test()
93 fd_set fdexcep; in test()
H A Dlib1502.c100 fd_set fdread; in test()
101 fd_set fdwrite; in test()
102 fd_set fdexcep; in test()
H A Dlib1531.c74 fd_set fdread; in test()
75 fd_set fdwrite; in test()
76 fd_set fdexcep; in test()
H A Dlib591.c91 fd_set fdread; in test()
92 fd_set fdwrite; in test()
93 fd_set fdexcep; in test()
H A Dlib597.c72 fd_set fdread; in test()
73 fd_set fdwrite; in test()
74 fd_set fdexcep; in test()
H A Dfirst.c45 int select_wrapper(int nfds, fd_set *rd, fd_set *wr, fd_set *exc, in select_wrapper()
54 * Winsock select() requires that at least one of the three fd_set in select_wrapper()
56 * select() can not be used to sleep without a single fd_set. in select_wrapper()
/third_party/ltp/testcases/kernel/syscalls/select/
H A Dselect04.c24 static fd_set readfds_pipe, writefds_pipe;
29 fd_set *readfds;
30 fd_set *writefds;
/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/
H A Drs_profiler_socket.cpp74 static fd_set GetFdSet(int32_t socket) in GetFdSet()
76 fd_set set; in GetFdSet()
82 static bool IsFdSet(int32_t socket, const fd_set& set) in IsFdSet()
262 fd_set send = GetFdSet(client_); in GetStatus()
263 fd_set receive = GetFdSet(client_); in GetStatus()
/third_party/musl/Benchmark/musl/
H A Dlibc_select.cpp28 fd_set readfds; in Bm_function_Select()
29 fd_set writefds; in Bm_function_Select()
/third_party/skia/third_party/externals/microhttpd/src/microspdy/
H A Ddaemon.c433 fd_set *read_fd_set, in SPDYF_get_fdset()
434 fd_set *write_fd_set, in SPDYF_get_fdset()
435 fd_set *except_fd_set, in SPDYF_get_fdset()
479 fd_set rs; in SPDYF_run()
480 fd_set ws; in SPDYF_run()
481 fd_set es; in SPDYF_run()
/third_party/NuttX/fs/inode/
H A Dfs_files.c684 (void)memcpy_s(new_fdt->proc_fds, sizeof(fd_set), old_fdt->proc_fds, sizeof(fd_set)); in copy_fds()
685 (void)memcpy_s(new_fdt->cloexec_fds, sizeof(fd_set), old_fdt->cloexec_fds, sizeof(fd_set)); in copy_fds()
755 data = LOS_MemAlloc(m_aucSysMem0, 2 * sizeof(fd_set)); /* 2: proc_fds, cloexec_fds */ in alloc_fd_table()
760 (VOID)memset_s(data, 2 * sizeof(fd_set), 0, 2 * sizeof(fd_set)); in alloc_fd_table()
761 fdt->proc_fds = (fd_set *)data; in alloc_fd_table()
762 fdt->cloexec_fds = (fd_set *)((uintptr_t)data + sizeof(fd_set)); in alloc_fd_table()
[all...]
/third_party/node/deps/cares/src/lib/
H A Dares_fds.c33 int ares_fds(ares_channel_t *channel, fd_set *read_fds, fd_set *write_fds) in ares_fds()
/third_party/ltp/testcases/kernel/syscalls/pselect/
H A Dpselect02.c19 static fd_set read_fds;
24 fd_set *readfds;

Completed in 11 milliseconds

12345678910>>...13