Searched refs:dnsException (Results 1 – 4 of 4) sorted by relevance
/third_party/node/lib/ |
D | dns.js | 65 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/ |
D | promises.js | 19 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/ |
D | test-dns-memory-error.js | 14 const memoryError = errors.dnsException(UV_EAI_MEMORY, 'fhqwhgads');
|
/third_party/node/lib/internal/ |
D | errors.js | 599 const dnsException = hideStackFrames(function(code, syscall, hostname) { constant 753 dnsException, property
|