Searched refs:accept4 (Results 1 – 25 of 80) sorted by relevance
1234
/third_party/grpc/ |
D | backport-Ignore-Connection-Aborted-errors-on-accept-29318.patch | 30 - gpr_log(GPR_ERROR, "Failed accept4: %s", strerror(errno)); 32 - /* if we have shutdown listeners, accept4 could fail, and we 46 + gpr_log(GPR_ERROR, "Failed accept4: %s", strerror(errno)); 48 + /* if we have shutdown listeners, accept4 could fail, and we
|
D | backport-iomgr-EventEngine-Improve-server-handling-o.patch | 53 + // When the process runs out of fds, accept4() returns EMFILE. When this 74 + gpr_log(GPR_ERROR, "Failed accept4: %s", strerror(errno)); 78 - gpr_log(GPR_ERROR, "Failed accept4: %s", strerror(errno)); 80 - /* if we have shutdown listeners, accept4 could fail, and we 85 + // if we have shutdown listeners, accept4 could fail, and we 125 + // If an accept4() call fails, a timer is started to drain the accept queue in 137 +// Initialize (but don't start) the timer and callback to retry accept4() on a
|
/third_party/musl/libc-test/src/functionalext/supplement/network/ |
D | accept4.c | 70 sClient = accept4(sListen, (struct sockaddr *)&clnAddr, &clnAddrLen, 0); in ServerTaskOne() 111 sClient = accept4(sListen, (struct sockaddr *)&clnAddr, &clnAddrLen, SOCK_NONBLOCK); in ServerTaskTwo() 152 sClient = accept4(sListen, (struct sockaddr *)&clnAddr, &clnAddrLen, SOCK_CLOEXEC); in ServerTaskThree() 193 sClient = accept4(sListen, 0, &clnAddrLen, SOCK_CLOEXEC); in ServerTaskFive() 231 sClient = accept4(sListen, (struct sockaddr *)&clnAddr, 0, 0); in ServerTaskSix() 333 sClient = accept4(0, (struct sockaddr *)&clnAddr, &clnAddrLen, 0); in accept4_0400()
|
D | test_src_functionalext_supplement_network.gni | 36 "accept4",
|
/third_party/musl/src/network/ |
D | accept4.c | 7 int accept4(int fd, struct sockaddr *restrict addr, socklen_t *restrict len, int flg) in accept4() function 10 int ret = socketcall_cp(accept4, fd, addr, len, flg, 0, 0); in accept4()
|
/third_party/lwip/ |
D | 0034-add-accept4-and-epoll_create1.patch | 4 Subject: [PATCH] add epoll_create1 and accept4 129 +#define lwip_accept4 accept4 163 +#define accept4(s,addr,addrlen,flags) lwip_accept4(s,addr,addrlen,flags)
|
/third_party/ltp/testcases/kernel/syscalls/ |
D | Makefile | 24 accept4 adjtimex cma confstr fcntl fmtmsg futex getcontext getcpu \
|
/third_party/nghttp2/src/ |
D | shrpx_accept_handler.cc | 67 accept4(faddr_->fd, &sockaddr.sa, &addrlen, SOCK_NONBLOCK | SOCK_CLOEXEC); in accept_connection()
|
/third_party/ltp/testcases/kernel/syscalls/accept4/ |
D | accept4_01.c | 110 TEST(accept4(listening_fd, (struct sockaddr *)accept_addr, in verify_accept4()
|
/third_party/ltp/include/lapi/syscalls/ |
D | aarch64.in | 244 accept4 242
|
D | arc.in | 244 accept4 242
|
D | mips_n32.in | 297 accept4 6297
|
D | mips_n64.in | 293 accept4 5293
|
D | sparc64.in | 306 accept4 323
|
D | ia64.in | 305 accept4 1334
|
D | s390x.in | 309 accept4 364
|
D | x86_64.in | 289 accept4 288
|
D | sh.in | 330 accept4 358
|
D | s390.in | 342 accept4 364
|
D | mips_o32.in | 334 accept4 4334
|
D | sparc.in | 322 accept4 323
|
D | powerpc.in | 344 accept4 344
|
D | powerpc64.in | 344 accept4 344
|
/third_party/nghttp2/ |
D | cmakeconfig.h.in | 31 /* Define to 1 if you have the `accept4` function. */
|
/third_party/musl/libc-test/src/functionalext/supplement/network/network_gtest/ |
D | socket_test.cpp | 135 int acceptFd = accept4(returnVal.fd, sockaddrPtr, &len, SOCK_CLOEXEC); 155 int err = accept4(-1, nullptr, nullptr, 0);
|
1234