Home
last modified time | relevance | path

Searched refs:Socket (Results 1 – 25 of 213) sorted by relevance

123456789

/third_party/skia/third_party/externals/swiftshader/src/System/
DSocket.cpp28 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 …]
DSocket.hpp27 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/
DSocket.cpp28 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 …]
DSocket.hpp27 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/
DdeSocket.cpp78 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 …]
DdeSocket.hpp72 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/rust/crates/io-lifetimes/src/
Dimpls_socket2.rs17 impl AsFd for socket2::Socket { implementation
25 impl AsSocket for socket2::Socket { implementation
33 impl IntoFd for socket2::Socket { implementation
41 impl From<socket2::Socket> for OwnedFd {
43 fn from(owned: socket2::Socket) -> Self { in from()
49 impl IntoSocket for socket2::Socket { implementation
57 impl From<socket2::Socket> for OwnedSocket {
59 fn from(owned: socket2::Socket) -> Self { in from()
65 impl FromFd for socket2::Socket { implementation
73 impl From<OwnedFd> for socket2::Socket { implementation
[all …]
/third_party/node/test/parallel/
Dtest-ref-unref-return.js9 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);
Dtest-net-socket-setnodelay.js14 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);
Dtest-net-connect-call-socket-connect.js21 const Socket = net.Socket; constant
24 const orig = Socket.prototype.connect;
25 Socket.prototype.connect = common.mustCall(function() { class
Dtest-net-persistent-nodelay.js16 const Socket = net.Socket; constant
25 const sock1 = new Socket();
30 assert.ok(s instanceof net.Socket);
Dtest-net-connect-options-path.js42 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 })
Dtest-net-socket-constructor.js9 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/node/lib/
Ddgram.js104 function Socket(type, listener) { class
159 ObjectSetPrototypeOf(Socket.prototype, EventEmitter.prototype);
160 ObjectSetPrototypeOf(Socket, EventEmitter);
164 return new Socket(type, listener);
237 Socket.prototype.bind = function(port_, address_ /* , callback */) {
378 Socket.prototype.connect = function(port, address, callback) {
454 Socket.prototype.disconnect = function() {
468 Socket.prototype.sendto = function(buffer,
577 Socket.prototype.send = function(buffer,
733 Socket.prototype.close = function(callback) {
[all …]
Dnet.js238 const socket = new Socket(options);
366 function Socket(options) { class
367 if (!(this instanceof Socket)) return new Socket(options);
510 ObjectSetPrototypeOf(Socket.prototype, stream.Duplex.prototype);
511 ObjectSetPrototypeOf(Socket, stream.Duplex);
514 Socket.prototype._unrefTimer = function _unrefTimer() {
524 Socket.prototype._final = function(cb) {
581 Socket.prototype.setTimeout = setStreamTimeout;
584 Socket.prototype._onTimeout = function() {
602 Socket.prototype.setNoDelay = function(enable) {
[all …]
Dtty.js59 net.Socket.call(this, {
70 ObjectSetPrototypeOf(ReadStream.prototype, net.Socket.prototype);
71 ObjectSetPrototypeOf(ReadStream, net.Socket);
96 net.Socket.call(this, {
117 ObjectSetPrototypeOf(WriteStream.prototype, net.Socket.prototype);
118 ObjectSetPrototypeOf(WriteStream, net.Socket);
/third_party/node/test/message/
Dstdin_messages.out15 at Socket.<anonymous> (node:internal/process/execution:*:*)
16 at Socket.emit (node:events:*:*)
34 at Socket.<anonymous> (node:internal/process/execution:*:*)
35 at Socket.emit (node:events:*:*)
51 at Socket.<anonymous> (node:internal/process/execution:*:*)
52 at Socket.emit (node:events:*:*)
69 at Socket.<anonymous> (node:internal/process/execution:*:*)
70 at Socket.emit (node:events:*:*)
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/Test/
DUtils.pm172 require IO::Socket::IP;
173 my $s = IO::Socket::IP->new(
186 require IO::Socket::INET6;
187 my $s = IO::Socket::INET6->new(
200 require IO::Socket::INET;
201 my $s = IO::Socket::INET->new(
/third_party/openssl/util/perl/OpenSSL/Test/
DUtils.pm172 require IO::Socket::IP;
173 my $s = IO::Socket::IP->new(
186 require IO::Socket::INET6;
187 my $s = IO::Socket::INET6->new(
200 require IO::Socket::INET;
201 my $s = IO::Socket::INET->new(
/third_party/skia/third_party/externals/tint/tools/src/cmd/remote-compile/
Dsocket.h22 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;
Dsocket.cc87 class Impl : public Socket {
217 std::shared_ptr<Socket> Accept() override { in Accept()
237 std::shared_ptr<Socket> Socket::Listen(const char* address, const char* port) { in Listen()
256 std::shared_ptr<Socket> Socket::Connect(const char* address, in Connect()
264 std::shared_ptr<Socket> out; in Connect()
/third_party/vk-gl-cts/execserver/
DxsTcpServer.hpp44 …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/
DxeTcpIpLink.hpp74 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/node/deps/undici/src/types/
Ddiagnostics-channel.d.ts1 import { Socket } from "net";
50 socket: Socket;
57 socket: Socket;
63 socket: Socket;
Dconnector.d.ts2 import { IpcNetConnectOpts, Socket, TcpNetConnectOpts } from 'net'
25 httpSocket?: Socket
29 type CallbackArgs = [null, Socket | TLSSocket] | [Error, null]

123456789