Lines Matching defs:atime
64 double atime;
812 double atime,
838 ASSERT_DOUBLE_EQ(atime, (long) atime);
839 ASSERT_DOUBLE_EQ(mtime, (long) atime);
841 if (atime > 0 || (long) atime == atime)
842 ASSERT_EQ(s->st_atim.tv_sec, (long) atime);
845 ASSERT_GE(s->st_atim.tv_sec, (long) atime - 1);
847 ASSERT_LE(s->st_atim.tv_sec, (long) atime);
860 * Linux does not allow reading reliably the atime of a symlink
864 ASSERT_DOUBLE_EQ(st_atim, atime);
880 check_utime(c->path, c->atime, c->mtime, /* test_lutime */ 0);
895 check_utime(c->path, c->atime, c->mtime, /* test_lutime */ 0);
909 check_utime(c->path, c->atime, c->mtime, /* test_lutime */ 1);
2624 double atime;
2640 atime = mtime = 400497753.25; /* 1982-09-10 11:22:33.25 */
2642 r = uv_fs_utime(NULL, &req, path, atime, mtime, NULL);
2647 check_utime(path, atime, mtime, /* test_lutime */ 0);
2649 atime = mtime = 1291404900.25; /* 2010-12-03 20:35:00.25 - mees <3 */
2651 checkme.atime = atime;
2656 r = uv_fs_utime(loop, &utime_req, path, atime, mtime, utime_cb);
2671 double atime;
2686 atime = mtime = -14245440.25; /* 1969-07-20T02:56:00.25Z */
2688 r = uv_fs_utime(NULL, &req, path, atime, mtime, NULL);
2702 check_utime(path, atime, mtime, /* test_lutime */ 0);
2745 double atime;
2765 atime = mtime = 400497753.25; /* 1982-09-10 11:22:33.25 */
2773 r = uv_fs_futime(NULL, &req, file, atime, mtime, NULL);
2783 check_utime(path, atime, mtime, /* test_lutime */ 0);
2785 atime = mtime = 1291404900; /* 2010-12-03 20:35:00 - mees <3 */
2787 checkme.atime = atime;
2793 r = uv_fs_futime(loop, &futime_req, file, atime, mtime, futime_cb);
2810 double atime;
2844 atime = mtime = 400497753.25; /* 1982-09-10 11:22:33.25 */
2846 checkme.atime = atime;
2851 r = uv_fs_lutime(NULL, &req, symlink_path, atime, mtime, NULL);
2862 atime = mtime = 1291404900; /* 2010-12-03 20:35:00 */
2864 checkme.atime = atime;
2868 r = uv_fs_lutime(loop, &req, symlink_path, atime, mtime, lutime_cb);