Lines Matching defs:atime
2490 const double atime = args[1].As<Number>()->Value();
2496 if (req_wrap_async != nullptr) { // utimes(path, atime, mtime, req)
2500 uv_fs_utime, *path, atime, mtime);
2501 } else { // utimes(path, atime, mtime, undefined, ctx)
2506 uv_fs_utime, *path, atime, mtime);
2521 const double atime = args[1].As<Number>()->Value();
2527 if (req_wrap_async != nullptr) { // futimes(fd, atime, mtime, req)
2530 uv_fs_futime, fd, atime, mtime);
2531 } else { // futimes(fd, atime, mtime, undefined, ctx)
2536 uv_fs_futime, fd, atime, mtime);
2551 const double atime = args[1].As<Number>()->Value();
2557 if (req_wrap_async != nullptr) { // lutimes(path, atime, mtime, req)
2561 uv_fs_lutime, *path, atime, mtime);
2562 } else { // lutimes(path, atime, mtime, undefined, ctx)
2567 uv_fs_lutime, *path, atime, mtime);