Lines Matching defs:hints
217 const hints = (dns.V4MAPPED | dns.ADDRCONFIG | dns.ALL) + 1; constant
225 dnsPromises.lookup('nodejs.org', { hints }); field
228 dns.lookup('nodejs.org', { hints }, common.mustNotCall()); field
242 dns.lookup('', { family: 4, hints: 0 }, common.mustCall()); property
246 hints: dns.ADDRCONFIG property
249 dns.lookup('', { hints: dns.V4MAPPED }, common.mustCall()); property
252 hints: dns.ADDRCONFIG | dns.V4MAPPED property
256 hints: dns.ALL property
260 hints: dns.V4MAPPED | dns.ALL property
264 hints: dns.ADDRCONFIG | dns.V4MAPPED | dns.ALL property
268 await dnsPromises.lookup('', { family: 4, hints: 0 }); property
269 await dnsPromises.lookup('', { family: 6, hints: dns.ADDRCONFIG }); property
270 await dnsPromises.lookup('', { hints: dns.V4MAPPED }); property
271 await dnsPromises.lookup('', { hints: dns.ADDRCONFIG | dns.V4MAPPED }); property
272 await dnsPromises.lookup('', { hints: dns.ALL }); property
273 await dnsPromises.lookup('', { hints: dns.V4MAPPED | dns.ALL }); property
275 hints: dns.ADDRCONFIG | dns.V4MAPPED | dns.ALL property