(handle, atime, mtime, cb)
| 1164 | ); |
| 1165 | } |
| 1166 | futimes(handle, atime, mtime, cb) { |
| 1167 | return this.fsetstat(handle, { |
| 1168 | atime: toUnixTimestamp(atime), |
| 1169 | mtime: toUnixTimestamp(mtime) |
| 1170 | }, cb); |
| 1171 | } |
| 1172 | utimes(path, atime, mtime, cb) { |
| 1173 | return this.setstat(path, { |
| 1174 | atime: toUnixTimestamp(atime), |
nothing calls this directly
no test coverage detected