Home
last modified time | relevance | path

Searched refs:accept4 (Results 1 – 25 of 80) sorted by relevance

1234

/third_party/grpc/
Dbackport-Ignore-Connection-Aborted-errors-on-accept-29318.patch30 - 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
Dbackport-iomgr-EventEngine-Improve-server-handling-o.patch53 + // 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/
Daccept4.c70 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()
Dtest_src_functionalext_supplement_network.gni36 "accept4",
/third_party/musl/src/network/
Daccept4.c7 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/
D0034-add-accept4-and-epoll_create1.patch4 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/
DMakefile24 accept4 adjtimex cma confstr fcntl fmtmsg futex getcontext getcpu \
/third_party/nghttp2/src/
Dshrpx_accept_handler.cc67 accept4(faddr_->fd, &sockaddr.sa, &addrlen, SOCK_NONBLOCK | SOCK_CLOEXEC); in accept_connection()
/third_party/ltp/testcases/kernel/syscalls/accept4/
Daccept4_01.c110 TEST(accept4(listening_fd, (struct sockaddr *)accept_addr, in verify_accept4()
/third_party/ltp/include/lapi/syscalls/
Daarch64.in244 accept4 242
Darc.in244 accept4 242
Dmips_n32.in297 accept4 6297
Dmips_n64.in293 accept4 5293
Dsparc64.in306 accept4 323
Dia64.in305 accept4 1334
Ds390x.in309 accept4 364
Dx86_64.in289 accept4 288
Dsh.in330 accept4 358
Ds390.in342 accept4 364
Dmips_o32.in334 accept4 4334
Dsparc.in322 accept4 323
Dpowerpc.in344 accept4 344
Dpowerpc64.in344 accept4 344
/third_party/nghttp2/
Dcmakeconfig.h.in31 /* Define to 1 if you have the `accept4` function. */
/third_party/musl/libc-test/src/functionalext/supplement/network/network_gtest/
Dsocket_test.cpp135 int acceptFd = accept4(returnVal.fd, sockaddrPtr, &len, SOCK_CLOEXEC);
155 int err = accept4(-1, nullptr, nullptr, 0);

1234