(path, atime, mtime, cb)
| 1170 | }, cb); |
| 1171 | } |
| 1172 | utimes(path, atime, mtime, cb) { |
| 1173 | return this.setstat(path, { |
| 1174 | atime: toUnixTimestamp(atime), |
| 1175 | mtime: toUnixTimestamp(mtime) |
| 1176 | }, cb); |
| 1177 | } |
| 1178 | fchown(handle, uid, gid, cb) { |
| 1179 | return this.fsetstat(handle, { |
| 1180 | uid: uid, |
nothing calls this directly
no test coverage detected