Symbol: Listen
headers/os/net/AbstractSocket.h
27
virtual status_t Listen(int backlog = 10);
headers/os/net/NetEndpoint.h
50
virtual status_t Listen(int backlog = 5);
src/add-ons/kernel/file_systems/netfs/server/ConnectionListener.h
21
virtual status_t Listen(Connection** connection) = 0;
src/add-ons/kernel/file_systems/netfs/server/InsecureConnectionListener.h
22
virtual status_t Listen(Connection** connection);
src/add-ons/kernel/file_systems/netfs/server/NetFSServer.cpp
1114
error = fConnectionListener->Listen(&connection);
src/add-ons/kernel/file_systems/netfs/server/PortConnectionListener.h
17
virtual status_t Listen(Connection** connection);
src/add-ons/kernel/file_systems/nfs4/Connection.h
136
static status_t Listen(ConnectionListener** listener, int networkFamily,
src/add-ons/kernel/file_systems/nfs4/RPCCallbackServer.cpp
159
status_t result = ConnectionListener::Listen(&fListener, fNetworkFamily);
src/add-ons/kernel/network/protocols/l2cap/L2capEndpoint.h
37
status_t Listen(int backlog);
src/add-ons/kernel/network/protocols/l2cap/l2cap.cpp
145
return ((L2capEndpoint*)protocol)->Listen(count);
src/add-ons/kernel/network/protocols/tcp/TCPEndpoint.h
43
status_t Listen(int count);
src/add-ons/kernel/network/protocols/tcp/tcp.cpp
617
return ((TCPEndpoint*)protocol)->Listen(count);
src/add-ons/kernel/network/protocols/unix/UnixDatagramEndpoint.h
31
status_t Listen(int backlog) override;
src/add-ons/kernel/network/protocols/unix/UnixEndpoint.h
52
virtual status_t Listen(int backlog) = 0;
src/add-ons/kernel/network/protocols/unix/UnixStreamEndpoint.h
47
status_t Listen(int backlog) override;
src/add-ons/kernel/network/protocols/unix/unix.cpp
216
return ((UnixEndpoint*)_protocol)->Listen(count);
src/add-ons/print/transports/ipp/Ipp.cpp
179
return ((IPPPrinterRoster*)cookie)->Listen();
src/add-ons/print/transports/ipp/Ipp.cpp
37
status_t Listen();
src/apps/codycam/FtpClient.cpp
654
fData->Listen();
src/servers/app/drawing/interface/remote/NetReceiver.cpp
65
status_t result = fListener->Listen();
src/tests/kits/net/NetEndpointTest.cpp
222
status = server.Listen();