Home
last modified time | relevance | path

Searched refs:TCP (Results 1 - 25 of 32) sorted by relevance

12

/third_party/node/test/parallel/
H A Dtest-env-newprotomethod-remove-unnecessary-prototypes.js12 internalBinding('tcp_wrap').TCP.prototype.bind6,
14 internalBinding('tcp_wrap').TCP.prototype.bind,
16 internalBinding('tcp_wrap').TCP.prototype.open,
H A Dtest-tcp-wrap-connect.js7 TCP,
14 const client = new TCP(TCPConstants.SOCKET);
H A Dtest-net-server-listen-handle.js10 const { TCP, constants: TCPConstants } = internalBinding('tcp_wrap');
42 handle = new TCP(TCPConstants.SOCKET);
H A Dtest-net-persistent-nodelay.js7 const TCPWrap = internalBinding('tcp_wrap').TCP;
H A Dtest-net-persistent-ref-unref.js7 const TCPWrap = internalBinding('tcp_wrap').TCP;
H A Dtest-cluster-message.js43 // Tell primary using TCP socket that a message is received.
111 // When a TCP server is listening in the worker connect to it
126 throw new Error(`wrong TCP message received: ${data}`);
/third_party/libuv/test/
H A Dbenchmark-pump.c106 type == TCP ? "tcp" : "pipe", in show_stats()
112 if (type == TCP) in show_stats()
134 type == TCP ? "tcp" : "pipe", in read_show_stats()
235 if (type == TCP) in connect_cb()
252 if (type == TCP) { in maybe_connect_some()
284 if (type == TCP) { in connection_cb()
379 type = TCP; in HELPER_IMPL()
426 type = TCP; in tcp_pump()
H A Decho-server.c179 case TCP: in on_connection()
258 serverType = TCP; in tcp4_echo_start()
292 serverType = TCP; in tcp6_echo_start()
H A Dtask.h78 TCP = 0, enumerator
/third_party/node/benchmark/net/
H A Dtcp-raw-s2c.js22 TCP,
29 const serverHandle = new TCP(TCPConstants.SERVER);
104 const clientHandle = new TCP(TCPConstants.SOCKET);
H A Dtcp-raw-c2s.js22 TCP,
29 const serverHandle = new TCP(TCPConstants.SERVER);
88 const clientHandle = new TCP(TCPConstants.SOCKET);
H A Dtcp-raw-pipe.js22 TCP,
34 const serverHandle = new TCP(TCPConstants.SERVER);
85 const clientHandle = new TCP(TCPConstants.SOCKET);
/third_party/python/Lib/test/test_asyncio/
H A Dtest_base_events.py60 TCP = socket.IPPROTO_TCP
64 (INET, STREAM, TCP, '', ('1.2.3.4', 1)),
65 base_events._ipaddr_info('1.2.3.4', 1, INET, STREAM, TCP))
68 (INET, STREAM, TCP, '', ('1.2.3.4', 1)),
69 base_events._ipaddr_info(b'1.2.3.4', 1, INET, STREAM, TCP))
72 (INET, STREAM, TCP, '', ('1.2.3.4', 1)),
73 base_events._ipaddr_info('1.2.3.4', 1, UNSPEC, STREAM, TCP))
79 # Socket type STREAM implies TCP protocol.
81 (INET, STREAM, TCP, '', ('1.2.3.4', 1)),
96 base_events._ipaddr_info('1.2.3.4', 1, INET6, STREAM, TCP))
[all...]
/third_party/node/test/sequential/
H A Dtest-async-wrap-getasyncid.js244 const handle = new tcp_wrap.TCP(tcp_wrap.constants.SOCKET);
247 testInitialized(handle, 'TCP');
284 const { TCP, constants: TCPConstants } = internalBinding('tcp_wrap');
285 const tcp = new TCP(TCPConstants.SOCKET);
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_spm.c192 {TCP, 0, 0x9}, /* Number of L2 requests. */ in radv_spm_init()
193 {TCP, 0, 0x12}, /* Number of L2 misses. */ in radv_spm_init()
/third_party/node/lib/
H A Dnet.js67 TCP,
187 if (type === 'TCP') {
188 return new TCP(
208 * Creates a new TCP or IPC server
431 // a valid `PIPE` or `TCP` descriptor
739 if (!(this._handle instanceof TCP))
1121 const handle = current === 0 ? self._handle : new TCP(TCPConstants.SOCKET);
1219 new TCP(TCPConstants.SOCKET);
1741 handle = new TCP(TCPConstants.SERVER);
1918 if (options instanceof TCP) {
[all...]
/third_party/mesa3d/src/amd/common/
H A Dac_perfcounter.h69 TCP = 0xA, enumerator
H A Dac_perfcounter.c497 .gpu_block = TCP,
498 .name = "TCP",
930 .gpu_block = TCP,
931 .name = "TCP",
1205 !strcmp(block->b->b->name, "TCP") || in ac_init_perfcounters()
/third_party/node/lib/internal/
H A Dchild_process.js54 const { TCP } = internalBinding('tcp_wrap');
87 // This object contain function to convert TCP objects to native handle objects
336 if (stream instanceof TCP) return 'tcp';
794 } else if (handle instanceof TCP || handle instanceof Pipe) {
817 // convert TCP object to native handle object
/third_party/rust/crates/rustix/src/backend/linux_raw/net/
H A Dtypes.rs162 pub const TCP: Self = Self(c::IPPROTO_TCP as _); consts
/third_party/node/test/report/
H A Dtest-report-uv-handles.js232 // TCP handles. The report should contain three sockets:
272 assert(found_tcp.includes(socket), `${socket} TCP socket was not found`);
/third_party/node/test/common/
H A Dindex.js478 const { TCP, constants: TCPConstants } = internalBinding('tcp_wrap');
479 const t = new TCP(TCPConstants.SOCKET);
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_perfcounter.c892 {TCP, 0, 0x9}, /* Number of L2 requests. */ in si_spm_init()
893 {TCP, 0, 0x12}, /* Number of L2 misses. */ in si_spm_init()
/third_party/mbedtls/tests/
H A Dcompat.sh761 proto=TCP
/third_party/rust/crates/rustix/src/backend/libc/net/
H A Dtypes.rs462 pub const TCP: Self = Self(c::IPPROTO_TCP as _); consts

Completed in 17 milliseconds

12