Lines Matching defs:net
40 const net = require('net');
90 'net.Native': {
102 'net.Server': {
110 const server = new net.Server();
117 'net.Socket': {
122 // If the socket was created by net.Server
185 const socket = new net.Socket({
191 // If the socket was created by net.Server we will track the socket
329 return net.Socket({ handle: pipe, readable });
790 if (handle instanceof net.Socket) {
791 message.type = 'net.Socket';
792 } else if (handle instanceof net.Server) {
793 message.type = 'net.Server';
795 message.type = 'net.Native';