Lines Matching defs:close
144 // Monkey-patch the close() method so we can keep track of when it's
146 const close = handle.close;
148 handle.close = function() {
149 send({ act: 'close', key });
152 return ReflectApply(close, handle, arguments);
188 function close() {
189 // lib/net.js treats server._handle.close() as effectively synchronous.
190 // That means there is a time window between the call to close() and
199 // So it is ok if the close message get lost.
201 send({ act: 'close', key });
216 const handle = { close, listen, ref, unref };
245 handle.close();
276 handle[owner_symbol].close(checkWaitingCount);
278 handle.close(checkWaitingCount);