/third_party/node/test/parallel/ |
H A D | test-env-newprotomethod-remove-unnecessary-prototypes.js | 12 internalBinding('tcp_wrap').TCP.prototype.bind6, 14 internalBinding('tcp_wrap').TCP.prototype.bind, 16 internalBinding('tcp_wrap').TCP.prototype.open,
|
H A D | test-tcp-wrap-connect.js | 7 TCP, 14 const client = new TCP(TCPConstants.SOCKET);
|
H A D | test-net-server-listen-handle.js | 10 const { TCP, constants: TCPConstants } = internalBinding('tcp_wrap'); 42 handle = new TCP(TCPConstants.SOCKET);
|
H A D | test-net-persistent-nodelay.js | 7 const TCPWrap = internalBinding('tcp_wrap').TCP;
|
H A D | test-net-persistent-ref-unref.js | 7 const TCPWrap = internalBinding('tcp_wrap').TCP;
|
H A D | test-cluster-message.js | 43 // 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 D | benchmark-pump.c | 106 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 D | echo-server.c | 179 case TCP: in on_connection() 258 serverType = TCP; in tcp4_echo_start() 292 serverType = TCP; in tcp6_echo_start()
|
H A D | task.h | 78 TCP = 0, enumerator
|
/third_party/node/benchmark/net/ |
H A D | tcp-raw-s2c.js | 22 TCP, 29 const serverHandle = new TCP(TCPConstants.SERVER); 104 const clientHandle = new TCP(TCPConstants.SOCKET);
|
H A D | tcp-raw-c2s.js | 22 TCP, 29 const serverHandle = new TCP(TCPConstants.SERVER); 88 const clientHandle = new TCP(TCPConstants.SOCKET);
|
H A D | tcp-raw-pipe.js | 22 TCP, 34 const serverHandle = new TCP(TCPConstants.SERVER); 85 const clientHandle = new TCP(TCPConstants.SOCKET);
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_base_events.py | 60 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 D | test-async-wrap-getasyncid.js | 244 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 D | radv_spm.c | 192 {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 D | net.js | 67 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 D | ac_perfcounter.h | 69 TCP = 0xA, enumerator
|
H A D | ac_perfcounter.c | 497 .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 D | child_process.js | 54 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 D | types.rs | 162 pub const TCP: Self = Self(c::IPPROTO_TCP as _); consts
|
/third_party/node/test/report/ |
H A D | test-report-uv-handles.js | 232 // 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 D | index.js | 478 const { TCP, constants: TCPConstants } = internalBinding('tcp_wrap'); 479 const t = new TCP(TCPConstants.SOCKET);
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_perfcounter.c | 892 {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 D | compat.sh | 761 proto=TCP
|
/third_party/rust/crates/rustix/src/backend/libc/net/ |
H A D | types.rs | 462 pub const TCP: Self = Self(c::IPPROTO_TCP as _); consts
|