Lines Matching refs:Socket
2030 Socket[2] pair;
2039 auto listener = new Socket(AddressFamily.UNIX, SocketType.STREAM);
2047 pair[0] = new Socket(AddressFamily.UNIX, SocketType.STREAM);
2298 void add(Socket s) pure nothrow
2328 void remove(Socket s) pure nothrow
2351 int isSet(Socket s) const pure nothrow @nogc
2431 Socket[2][PAIRS] pairs;
2468 auto n = Socket.select(readSet, writeSet, errorSet);
2480 n = Socket.select(readSet, null, null);
2574 class Socket
2826 protected Socket accepting() pure nothrow
2828 return new Socket;
2836 Socket accept() @trusted
2842 Socket newSocket;
3483 class TcpSocket: Socket
3509 class UdpSocket: Socket
3528 class TestSocket : Socket
3540 protected pure nothrow @safe Socket accepting() { assert(0); }
3541 @trusted Socket accept() { assert(0); }
3580 Socket[2] socketPair() @trusted
3588 Socket toSocket(size_t id)
3590 auto s = new Socket;
3602 Socket[2] result;