Home
last modified time | relevance | path

Searched refs:doConnect (Results 1 – 3 of 3) sorted by relevance

/third_party/node/test/parallel/
Dtest-net-connect-options-port.js63 const hintOptBlocks = doConnect([{ hints }],
102 function doConnect(args, getCb) { function
139 const portArgFunctions = doConnect([port], () => common.mustNotCall());
145 const portHostArgFunctions = doConnect([port, 'localhost'],
152 const portOptFunctions = doConnect([{ port }], () => common.mustNotCall());
158 const portHostOptFunctions = doConnect([{ port: port, host: 'localhost' }],
171 const portArgFunctions = doConnect([port], noop);
177 const portHostArgFunctions = doConnect([port, 'localhost'], noop);
183 const portOptFunctions = doConnect([{ port }], noop);
189 const portHostOptFns = doConnect([{ port, host: 'localhost' }], noop);
[all …]
/third_party/node/lib/
Ddgram.js409 doConnect,
418 function doConnect(ex, self, ip, address, port, callback) { function
/third_party/python/Lib/test/
Dtest_socket.py4508 cli_thread = threading.Thread(target=self.doConnect)
4515 def doConnect(self): member in InterruptedSendTimeoutTest