/third_party/skia/third_party/externals/swiftshader/src/System/ |
D | Socket.cpp | 28 Socket::Socket(SOCKET socket) in Socket() function in sw::Socket 33 Socket::Socket(const char *address, const char *port) in Socket() function in sw::Socket 57 Socket::~Socket() in ~Socket() 66 void Socket::listen(int backlog) in listen() 71 bool Socket::select(int us) in select() 82 Socket *Socket::accept() in accept() 84 return new Socket(::accept(socket, 0, 0)); in accept() 87 int Socket::receive(char *buffer, int length) in receive() 92 void Socket::send(const char *buffer, int length) in send() 97 void Socket::startup() in startup() [all …]
|
D | Socket.hpp | 27 class Socket class 30 Socket(SOCKET socket); 31 Socket(const char *address, const char *port); 32 ~Socket(); 36 Socket *accept();
|
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
D | Socket.cpp | 28 Socket::Socket(SOCKET socket) : socket(socket) in Socket() function in sw::Socket 32 Socket::Socket(const char *address, const char *port) in Socket() function in sw::Socket 56 Socket::~Socket() in ~Socket() 65 void Socket::listen(int backlog) in listen() 70 bool Socket::select(int us) in select() 81 Socket *Socket::accept() in accept() 83 return new Socket(::accept(socket, 0, 0)); in accept() 86 int Socket::receive(char *buffer, int length) in receive() 91 void Socket::send(const char *buffer, int length) in send() 96 void Socket::startup() in startup() [all …]
|
D | Socket.hpp | 27 class Socket class 30 Socket(SOCKET socket); 31 Socket(const char *address, const char *port); 32 ~Socket(); 36 Socket *accept();
|
/third_party/vk-gl-cts/framework/delibs/decpp/ |
D | deSocket.cpp | 78 Socket::Socket (void) in Socket() function in de::Socket 85 Socket::~Socket (void) in ~Socket() 90 void Socket::setFlags (deUint32 flags) in setFlags() 96 void Socket::listen (const SocketAddress& address) in listen() 102 void Socket::connect (const SocketAddress& address) in connect() 108 void Socket::shutdown (void) in shutdown() 114 void Socket::shutdownSend (void) in shutdownSend() 120 void Socket::shutdownReceive (void) in shutdownReceive() 126 void Socket::close (void) in close() 132 Socket* Socket::accept (deSocketAddress* clientAddress) in accept() [all …]
|
D | deSocket.hpp | 72 class Socket class 75 Socket (void); 76 ~Socket (void); 84 Socket* accept (SocketAddress& clientAddress) { return accept(clientAddress.getPtr()); } in accept() 85 Socket* accept (void) { return accept(DE_NULL); } in accept() 102 Socket (deSocket* socket) : m_socket(socket) {} in Socket() function in de::Socket 103 Socket (const Socket& other); 104 Socket& operator= (const Socket& other); 106 Socket* accept (deSocketAddress* clientAddress);
|
/third_party/node/test/parallel/ |
D | test-ref-unref-return.js | 9 assert.ok((new net.Socket()).ref() instanceof net.Socket); 10 assert.ok((new net.Socket()).unref() instanceof net.Socket); 11 assert.ok((new dgram.Socket('udp4')).ref() instanceof dgram.Socket); 12 assert.ok((new dgram.Socket('udp6')).unref() instanceof dgram.Socket);
|
D | test-net-socket-setnodelay.js | 14 let socket = new net.Socket({ 22 socket = new net.Socket({ 30 socket = new net.Socket({ 38 socket = new net.Socket({ 49 socket = new net.Socket({ 56 assert.ok(returned instanceof net.Socket);
|
D | test-net-connect-call-socket-connect.js | 21 const Socket = net.Socket; constant 24 const orig = Socket.prototype.connect; 25 Socket.prototype.connect = common.mustCall(function() { class
|
D | test-net-persistent-nodelay.js | 16 const Socket = net.Socket; constant 25 const sock1 = new Socket(); 30 assert.ok(s instanceof net.Socket);
|
D | test-net-connect-options-path.js | 42 new net.Socket().connect(serverPath, getConnectCb()).resume(); 43 new net.Socket().connect(serverPath) 54 new net.Socket().connect({ path: serverPath }, getConnectCb()).resume(); 55 new net.Socket().connect({ path: serverPath })
|
D | test-net-socket-constructor.js | 9 new net.Socket({ fd: -1 }); 13 new net.Socket({ fd: 'foo' }); 18 if (sock instanceof net.Socket) { 21 socket = new net.Socket(sock);
|
/third_party/boost/libs/beast/test/beast/websocket/ |
D | ssl.cpp | 29 template<class Socket> 35 Socket ss(ioc, ctx); in testTeardown() 45 websocket::stream<Socket> ws(ioc, ctx); in testTeardown() 48 void(websocket::stream<Socket>::*)( in testTeardown() 50 &websocket::stream<Socket>::close)); in testTeardown() 53 void(websocket::stream<Socket>::*)( in testTeardown() 55 &websocket::stream<Socket>::close)); in testTeardown()
|
/third_party/node/lib/ |
D | dgram.js | 98 function Socket(type, listener) { class 148 ObjectSetPrototypeOf(Socket.prototype, EventEmitter.prototype); 149 ObjectSetPrototypeOf(Socket, EventEmitter); 153 return new Socket(type, listener); 226 Socket.prototype.bind = function(port_, address_ /* , callback */) { 371 Socket.prototype.connect = function(port, address, callback) { 447 Socket.prototype.disconnect = function() { 461 Socket.prototype.sendto = function(buffer, 573 Socket.prototype.send = function(buffer, 729 Socket.prototype.close = function(callback) { [all …]
|
D | net.js | 195 const socket = new Socket(options); 281 function Socket(options) { class 282 if (!(this instanceof Socket)) return new Socket(options); 401 ObjectSetPrototypeOf(Socket.prototype, stream.Duplex.prototype); 402 ObjectSetPrototypeOf(Socket, stream.Duplex); 405 Socket.prototype._unrefTimer = function _unrefTimer() { 415 Socket.prototype._final = function(cb) { 478 Socket.prototype.setTimeout = setStreamTimeout; 481 Socket.prototype._onTimeout = function() { 499 Socket.prototype.setNoDelay = function(enable) { [all …]
|
D | tty.js | 59 net.Socket.call(this, { 71 ObjectSetPrototypeOf(ReadStream.prototype, net.Socket.prototype); 72 ObjectSetPrototypeOf(ReadStream, net.Socket); 97 net.Socket.call(this, { 118 ObjectSetPrototypeOf(WriteStream.prototype, net.Socket.prototype); 119 ObjectSetPrototypeOf(WriteStream, net.Socket);
|
/third_party/boost/boost/beast/websocket/ |
D | teardown.hpp | 38 template<class Socket> 42 Socket& socket, in teardown() 54 static_assert(sizeof(Socket)==-1, in teardown() 88 class Socket, 93 Socket& socket, in async_teardown() 105 static_assert(sizeof(Socket)==-1, in async_teardown()
|
/third_party/boost/libs/beast/include/boost/beast/websocket/ |
D | teardown.hpp | 38 template<class Socket> 42 Socket& socket, in teardown() 54 static_assert(sizeof(Socket)==-1, in teardown() 88 class Socket, 93 Socket& socket, in async_teardown() 105 static_assert(sizeof(Socket)==-1, in async_teardown()
|
/third_party/openssl/util/perl/OpenSSL/Test/ |
D | Utils.pm | 170 require IO::Socket::IP; 171 my $s = IO::Socket::IP->new( 184 require IO::Socket::INET6; 185 my $s = IO::Socket::INET6->new( 198 require IO::Socket::INET; 199 my $s = IO::Socket::INET->new(
|
/third_party/node/test/message/ |
D | stdin_messages.out | 14 at Socket.<anonymous> (internal/process/execution.js:*:*) 15 at Socket.emit (events.js:*:*) 31 at Socket.<anonymous> (internal/process/execution.js:*:*) 32 at Socket.emit (events.js:*:*) 46 at Socket.<anonymous> (internal/process/execution.js:*:*) 47 at Socket.emit (events.js:*:*) 62 at Socket.<anonymous> (internal/process/execution.js:*:*) 63 at Socket.emit (events.js:*:*)
|
/third_party/skia/third_party/externals/tint/tools/src/cmd/remote-compile/ |
D | socket.h | 22 class Socket { 31 static std::shared_ptr<Socket> Connect(const char* address, 42 static std::shared_ptr<Socket> Listen(const char* address, const char* port); 68 virtual std::shared_ptr<Socket> Accept() = 0;
|
/third_party/vk-gl-cts/execserver/ |
D | xsTcpServer.hpp | 44 …virtual ConnectionHandler* createHandler (de::Socket* socket, const de::SocketAddress& clientAd… 52 de::Socket m_socket; 69 … ConnectionHandler (TcpServer* server, de::Socket* socket) : m_server(server), m_socket(socket) {} in ConnectionHandler() 79 de::Socket* m_socket;
|
/third_party/vk-gl-cts/executor/ |
D | xeTcpIpLink.hpp | 74 TcpIpSendThread (de::Socket& socket, TcpIpLinkState& state); 86 de::Socket& m_socket; 97 TcpIpRecvThread (de::Socket& socket, TcpIpLinkState& state); 109 de::Socket& m_socket; 144 de::Socket m_socket;
|
/third_party/boost/boost/asio/detail/ |
D | reactive_socket_accept_op.hpp | 35 template <typename Socket, typename Protocol> 40 socket_type socket, socket_ops::state_type state, Socket& peer, in reactive_socket_accept_op_base() 87 Socket& peer_; 93 template <typename Socket, typename Protocol, 96 public reactive_socket_accept_op_base<Socket, Protocol> 102 socket_type socket, socket_ops::state_type state, Socket& peer, in reactive_socket_accept_op() 105 : reactive_socket_accept_op_base<Socket, Protocol>( in reactive_socket_accept_op()
|
/third_party/boost/libs/asio/include/boost/asio/detail/ |
D | reactive_socket_accept_op.hpp | 35 template <typename Socket, typename Protocol> 40 socket_type socket, socket_ops::state_type state, Socket& peer, in reactive_socket_accept_op_base() 87 Socket& peer_; 93 template <typename Socket, typename Protocol, 96 public reactive_socket_accept_op_base<Socket, Protocol> 102 socket_type socket, socket_ops::state_type state, Socket& peer, in reactive_socket_accept_op() 105 : reactive_socket_accept_op_base<Socket, Protocol>( in reactive_socket_accept_op()
|