Lines Matching refs:close
48 // Patch fs.close/closeSync to shared queue version, because we need
49 // to retry() whenever a close happens *anywhere* in the program.
52 fs.close = (function (fs$close) {
53 function close (fd, cb) {
54 return fs$close.call(fs, fd, function (err) {
65 Object.defineProperty(close, previousSymbol, {
66 value: fs$close
68 return close
69 })(fs.close)