Searched refs:_acceptedSocket (Results 1 - 25 of 26) sorted by relevance

12

/haiku/headers/os/net/
H A DAbstractSocket.h55 status_t AcceptNext(int& _acceptedSocket,
/haiku/src/add-ons/kernel/network/protocols/unix/
H A DUnixDatagramEndpoint.h33 status_t Accept(net_socket** _acceptedSocket) override;
H A DUnixEndpoint.h54 virtual status_t Accept(net_socket** _acceptedSocket) = 0;
H A DUnixStreamEndpoint.h49 status_t Accept(net_socket** _acceptedSocket) override;
H A Dunix.cpp125 unix_accept(net_protocol *_protocol, struct net_socket **_acceptedSocket) argument
127 return ((UnixEndpoint*)_protocol)->Accept(_acceptedSocket);
H A DUnixStreamEndpoint.cpp339 UnixStreamEndpoint::Accept(net_socket** _acceptedSocket) argument
362 error = gSocketModule->dequeue_connected(socket, _acceptedSocket);
H A DUnixDatagramEndpoint.cpp201 UnixDatagramEndpoint::Accept(net_socket** _acceptedSocket) argument
/haiku/src/add-ons/kernel/network/protocols/l2cap/
H A DL2capEndpoint.h51 status_t Accept(net_socket** _acceptedSocket);
H A DL2capEndpoint.cpp278 L2capEndpoint::Accept(net_socket** _acceptedSocket) argument
297 status = gSocketModule->dequeue_connected(socket, _acceptedSocket);
304 ((L2capEndpoint*)((*_acceptedSocket)->first_protocol))->fState = ESTABLISHED;
H A Dl2cap.cpp139 l2cap_accept(net_protocol* protocol, struct net_socket** _acceptedSocket) argument
142 return ((L2capEndpoint*)protocol)->Accept(_acceptedSocket);
/haiku/headers/private/net/
H A Dnet_stack_interface.h38 socklen_t* _addressLength, net_socket** _acceptedSocket);
H A Dnet_protocol.h69 status_t (*accept)(net_protocol* self, net_socket** _acceptedSocket);
H A Dnet_socket.h95 socklen_t* _addressLength, net_socket** _acceptedSocket);
/haiku/src/add-ons/kernel/network/stack/
H A Dstack_interface.cpp67 socklen_t* _addressLength, net_socket** _acceptedSocket)
70 _acceptedSocket);
66 stack_interface_accept(net_socket* socket, struct sockaddr* address, socklen_t* _addressLength, net_socket** _acceptedSocket) argument
H A Dlink.cpp347 link_accept(net_protocol* protocol, struct net_socket** _acceptedSocket) argument
H A Dnet_socket.cpp911 socklen_t* _addressLength, net_socket** _acceptedSocket)
928 *_acceptedSocket = accepted;
910 socket_accept(net_socket* socket, struct sockaddr* address, socklen_t* _addressLength, net_socket** _acceptedSocket) argument
/haiku/src/kits/network/libnetapi/
H A DAbstractSocket.cpp253 BAbstractSocket::AcceptNext(int& _acceptedSocket, BNetworkAddress& _peer) argument
263 _acceptedSocket = fd;
/haiku/src/add-ons/kernel/network/protocols/icmp6/
H A Dicmp6.cpp90 icmp6_accept(net_protocol *protocol, struct net_socket **_acceptedSocket) argument
/haiku/src/add-ons/kernel/network/protocols/tcp/
H A DTCPEndpoint.h40 status_t Accept(struct net_socket** _acceptedSocket);
H A Dtcp.cpp533 tcp_accept(net_protocol* protocol, struct net_socket** _acceptedSocket) argument
535 return ((TCPEndpoint*)protocol)->Accept(_acceptedSocket);
H A DTCPEndpoint.cpp684 TCPEndpoint::Accept(struct net_socket** _acceptedSocket) argument
711 status = gSocketModule->dequeue_connected(socket, _acceptedSocket);
714 TRACE(" Accept() returning %p", (*_acceptedSocket)->first_protocol);
/haiku/src/tests/system/network/tcp_shell/
H A Dtcp_shell.cpp333 socklen_t *_addressLength, net_socket **_acceptedSocket)
347 *_acceptedSocket = accepted;
848 domain_accept(net_protocol *protocol, struct net_socket **_acceptedSocket) argument
332 socket_accept(net_socket *socket, struct sockaddr *address, socklen_t *_addressLength, net_socket **_acceptedSocket) argument
/haiku/src/add-ons/kernel/network/protocols/icmp/
H A Dicmp.cpp301 icmp_accept(net_protocol* protocol, struct net_socket** _acceptedSocket) argument
/haiku/src/add-ons/kernel/network/protocols/udp/
H A Dudp.cpp1182 udp_accept(net_protocol *protocol, struct net_socket **_acceptedSocket) argument
/haiku/src/add-ons/kernel/network/protocols/ipv6/
H A Dipv6.cpp1067 ipv6_accept(net_protocol* protocol, struct net_socket** _acceptedSocket) argument

Completed in 502 milliseconds

12