Lines Matching defs:address
125 address: addr,
208 callback, null, [{ address: hostname, family: matchedFamily }]);
241 { __proto__: null, value: ['address', 'family'], enumerable: false });
255 function lookupService(address, port, callback) {
257 throw new ERR_MISSING_ARGS('address', 'port', 'callback');
259 if (isIP(address) === 0)
260 throw new ERR_INVALID_ARG_VALUE('address', address);
270 req.hostname = address;
274 const err = cares.getnameinfo(req, address, port);
275 if (err) throw dnsException(err, 'getnameinfo', address);
281 host: address,