Lines Matching refs:er
15 } catch (er) {}
96 fs$rename(from, to, function CB (er) { argument
97 if (er
98 && (er.code === "EACCES" || er.code === "EPERM")
105 cb(er)
112 if (cb) cb(er)
123 callback = function (er, _, __) { argument
124 if (er && er.code === 'EAGAIN' && eagCounter < 10) {
144 } catch (er) {
145 if (er.code === 'EAGAIN' && eagCounter < 10) {
149 throw er
188 } catch (er) {}
200 fs.open(path, constants.O_SYMLINK, function (er, fd) { argument
201 if (er) {
202 if (cb) cb(er)
205 fs.futimes(fd, at, mt, function (er) { argument
207 if (cb) cb(er || er2)
224 } catch (er) {}
241 return orig.call(fs, target, mode, function (er) { argument
242 if (chownErOk(er)) er = null
253 } catch (er) {
254 if (!chownErOk(er)) throw er
263 return orig.call(fs, target, uid, gid, function (er) { argument
264 if (chownErOk(er)) er = null
275 } catch (er) {
276 if (!chownErOk(er)) throw er
290 function callback (er, stats) { argument
327 function chownErOk (er) { argument
328 if (!er)
331 if (er.code === "ENOSYS")
336 if (er.code === "EINVAL" || er.code === "EPERM")