Searched refs:accept (Results 1 - 25 of 182) sorted by relevance

12345678

/freebsd-11-stable/lib/libc/sys/
H A Daccept.c43 #pragma weak accept macro
45 accept(int s, struct sockaddr *addr, socklen_t *addrlen) function
H A Dinterposing_table.c42 SLOT(accept, __sys_accept),
/freebsd-11-stable/contrib/libxo/tests/
H A DMakefile.am22 accept:
25 $(MAKE) accept ; \
/freebsd-11-stable/share/doc/psd/20.ipctut/
H A Dstrchkread.c40 * before calling accept().
86 msgsock = accept(sock, (struct sockaddr *)0, (int *)0);
88 perror("accept");
H A Dstreamread.c78 msgsock = accept(sock, 0, 0);
80 perror("accept");
H A Dustreamread.c67 msgsock = accept(sock, 0, 0);
69 perror("accept");
/freebsd-11-stable/tools/test/net/
H A Dlisten.c88 while (((cli_sock = accept(srv_sock, NULL, NULL)) >= 0)
96 while (((cli_sock = accept(srv_sock, NULL, NULL)) >= 0)
102 if (accept(srv_sock, NULL, NULL) >= 0)
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dsocket_wrapper.h59 #ifdef accept
60 #undef accept macro
62 #define accept(s,addr,addrlen) swrap_accept(s,addr,addrlen) macro
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.h422 virtual void accept(SectionVisitor &Visitor) const = 0;
423 virtual void accept(MutableSectionVisitor &Visitor) = 0;
482 void accept(SectionVisitor &Visitor) const override;
483 void accept(MutableSectionVisitor &Visitor) override;
514 void accept(SectionVisitor &Sec) const override;
515 void accept(MutableSectionVisitor &Visitor) override;
535 void accept(SectionVisitor &Visitor) const override;
536 void accept(MutableSectionVisitor &Visitor) override;
557 void accept(SectionVisitor &Visitor) const override;
558 void accept(MutableSectionVisito
[all...]
/freebsd-11-stable/tools/tools/netrate/tcpreceive/
H A Dtcpreceive.c63 s = accept(accept_sock, NULL, NULL);
65 warn("accept");
/freebsd-11-stable/share/dtrace/
H A Dtcpconn40 tcp:kernel::accept-established
44 tcp:kernel::accept-refused
H A Dtcptrack37 tcp:kernel::accept-established
47 tcp:kernel::accept-refused
/freebsd-11-stable/contrib/netbsd-tests/net/mpls/
H A Dt_mpls_fw.sh75 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
89 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
104 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
119 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
H A Dt_rfc4182.sh77 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
91 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
106 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
121 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
H A Dt_mpls_fw64.sh72 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
87 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
104 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
122 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
H A Dt_mpls_fw6.sh76 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
91 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
108 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
125 atf_check -s exit:0 rump.sysctl -q -w net.mpls.accept=1
/freebsd-11-stable/tests/sys/file/
H A Dnewfileops_on_fork_test.c34 * another thread is blocked in accept(2), we prefer that the file descriptor
35 * to be returned by accept(2) not appear in the child process. Test this by
36 * creating a thread blocked in accept(2), then forking a child and seeing if
62 accept_fd = accept(listen_fd, NULL, NULL);
64 err(1, "accept");
/freebsd-11-stable/tests/sys/netinet/
H A Dtcp_user_cookie.c93 accepted = accept(sock, NULL, 0);
96 err(EX_OSERR, "accept failed");
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dmodorder.mk15 # support checking probabilistic output, so we accept that the test
/freebsd-11-stable/tools/regression/sockets/accept_fd_leak/
H A Daccept_fd_leak.c59 * following a failed non-blocking accept. It measures an available fd
124 if (accept(s, (struct sockaddr *)&sin, &size) != -1)
125 errx(-1, "accept succeeded\n");
127 errx(-1, "accept: %s", strerror(errno));
141 * Try failing accept's w/o non-blocking where the destination
192 if (accept(s, (struct sockaddr *)(uintptr_t)(0x100),
194 errx(-1, "accept succeeded\n");
196 errx(-1, "accept: %s", strerror(errno));
/freebsd-11-stable/contrib/serf/
H A Dincoming.c129 serf_accept_client_t accept,
139 l->accept_func = accept;
123 serf_listener_create( serf_listener_t **listener, serf_context_t *ctx, const char *host, apr_uint16_t port, void *accept_baton, serf_accept_client_t accept, apr_pool_t *pool) argument
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/mib/
H A Dtst.tcp.ksh96 next unless my \$raddr = accept(SESSION, S);
/freebsd-11-stable/tools/regression/netinet/tcpfullwindowrst/
H A Dtcpfullwindowrsttest.c93 u = accept(s, 0, 0);
/freebsd-11-stable/tools/regression/sockets/unix_close_race/
H A Dunix_close_race.c84 * accept() from, and that the parent will repeatedly connect() to.
134 if ((connfd = accept(listenfd,
136 err(1, "child: accept error");
/freebsd-11-stable/sys/ofed/include/rdma/
H A Diw_cm.h47 IW_CM_EVENT_ESTABLISHED, /* passive side accept successful */
121 int (*accept)(struct iw_cm_id *cm_id, member in struct:iw_cm_verbs
190 * iw_cm_accept - Called to accept an incoming connect request.

Completed in 310 milliseconds

12345678