Searched refs:dnsException (Results 1 – 5 of 5) sorted by relevance
/third_party/node/lib/internal/dns/ |
D | promises.js | 48 const { codes, dnsException } = require('internal/errors'); 83 this.reject(dnsException(err, 'getaddrinfo', this.hostname)); 96 this.reject(dnsException(err, 'getaddrinfo', this.hostname)); 144 reject(dnsException(err, 'getaddrinfo', hostname)); 200 this.reject(dnsException(err, 'getnameinfo', this.host)); 223 reject(dnsException(err, 'getnameinfo', hostname)); 252 this.reject(dnsException(err, this.bindingName, this.hostname)); 280 reject(dnsException(err, bindingName, hostname));
|
D | callback_resolver.js | 17 dnsException, 47 this.callback(dnsException(err, this.bindingName, this.hostname)); 74 if (err) throw dnsException(err, bindingName, name);
|
/third_party/node/lib/ |
D | dns.js | 102 const dnsException = errors.dnsException; constant 108 return this.callback(dnsException(err, 'getaddrinfo', this.hostname)); 119 return this.callback(dnsException(err, 'getaddrinfo', this.hostname)); 226 process.nextTick(callback, dnsException(err, 'getaddrinfo', hostname)); 247 return this.callback(dnsException(err, 'getnameinfo', this.hostname)); 276 if (err) throw dnsException(err, 'getnameinfo', address);
|
/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 | 680 const dnsException = hideStackFrames(function(code, syscall, hostname) { constant 915 dnsException, property
|