Home
last modified time | relevance | path

Searched refs:dnsException (Results 1 – 4 of 4) sorted by relevance

/third_party/node/lib/
Ddns.js65 const dnsException = errors.dnsException; constant
71 return this.callback(dnsException(err, 'getaddrinfo', this.hostname));
79 return this.callback(dnsException(err, 'getaddrinfo', this.hostname));
157 process.nextTick(callback, dnsException(err, 'getaddrinfo', hostname));
169 return this.callback(dnsException(err, 'getnameinfo', this.hostname));
196 if (err) throw dnsException(err, 'getnameinfo', address);
210 this.callback(dnsException(err, this.bindingName, this.hostname));
235 if (err) throw dnsException(err, bindingName, name);
/third_party/node/lib/internal/dns/
Dpromises.js19 const { codes, dnsException } = require('internal/errors');
43 this.reject(dnsException(err, 'getaddrinfo', this.hostname));
53 this.reject(dnsException(err, 'getaddrinfo', this.hostname));
98 reject(dnsException(err, 'getaddrinfo', hostname));
133 this.reject(dnsException(err, 'getnameinfo', this.host));
153 reject(dnsException(err, 'getnameinfo', hostname));
172 this.reject(dnsException(err, this.bindingName, this.hostname));
197 reject(dnsException(err, bindingName, hostname));
/third_party/node/test/parallel/
Dtest-dns-memory-error.js14 const memoryError = errors.dnsException(UV_EAI_MEMORY, 'fhqwhgads');
/third_party/node/lib/internal/
Derrors.js599 const dnsException = hideStackFrames(function(code, syscall, hostname) { constant
753 dnsException, property