Lines Matching refs:er
16 function newError (er) { argument
17 return er && er.syscall === 'realpath' && (
18 er.code === 'ELOOP' ||
19 er.code === 'ENOMEM' ||
20 er.code === 'ENAMETOOLONG'
33 origRealpath(p, cache, function (er, result) { argument
34 if (newError(er)) {
37 cb(er, result)
49 } catch (er) {
50 if (newError(er)) {
53 throw er