Searched refs:atime (Results 1 – 8 of 8) sorted by relevance
/libuv/test/ |
H A D | test-fs.c | 64 double atime; member 839 ASSERT_DOUBLE_EQ(atime, (long) atime); in check_utime() 842 if (atime > 0 || (long) atime == atime) in check_utime() 2669 double atime; in TEST_IMPL() local 2696 checkme.atime = atime; in TEST_IMPL() 2716 double atime; in TEST_IMPL() local 2790 double atime; in TEST_IMPL() local 2832 checkme.atime = atime; in TEST_IMPL() 2855 double atime; in TEST_IMPL() local 2891 checkme.atime = atime; in TEST_IMPL() [all …]
|
/libuv/src/unix/ |
H A D | fs.c | 242 ts[0] = uv__fs_to_timespec(req->atime); in uv__fs_futime() 252 tv[0] = uv__fs_to_timeval(req->atime); in uv__fs_futime() 265 atr.att_atime = req->atime; in uv__fs_futime() 1168 buf.actime = req->atime; in uv__fs_utime() 1177 atr.att_atime = req->atime; in uv__fs_utime() 1928 double atime, in uv_fs_futime() argument 1933 req->atime = atime; in uv_fs_futime() 1941 double atime, in uv_fs_lutime() argument 1946 req->atime = atime; in uv_fs_lutime() 2210 double atime, in uv_fs_utime() argument [all …]
|
/libuv/src/win/ |
H A D | fs.c | 2393 INLINE static int fs__utime_handle(HANDLE handle, double atime, double mtime) { in fs__utime_handle() argument 2396 TIME_T_TO_FILETIME(atime, &filetime_a); in fs__utime_handle() 2407 double atime, in fs__utime_impl_from_path() argument 2430 if (fs__utime_handle(handle, atime, mtime) != 0) in fs__utime_impl_from_path() 2443 req->fs.time.atime, in fs__utime_impl() 2481 if (fs__utime_handle(handle, req->fs.time.atime, req->fs.time.mtime) != 0) { in fs__futime() 3509 int uv_fs_utime(uv_loop_t* loop, uv_fs_t* req, const char* path, double atime, in uv_fs_utime() argument 3520 req->fs.time.atime = atime; in uv_fs_utime() 3526 int uv_fs_futime(uv_loop_t* loop, uv_fs_t* req, uv_file fd, double atime, in uv_fs_futime() argument 3530 req->fs.time.atime = atime; in uv_fs_futime() [all …]
|
/libuv/include/uv/ |
H A D | unix.h | 371 double atime; \
|
H A D | win.h | 641 double atime; \
|
/libuv/docs/src/guide/ |
H A D | filesystem.rst | 151 …int uv_fs_utime(uv_loop_t* loop, uv_fs_t* req, const char* path, double atime, double mtime, uv_fs… 152 …int uv_fs_futime(uv_loop_t* loop, uv_fs_t* req, uv_file file, double atime, double mtime, uv_fs_cb… 153 …int uv_fs_lutime(uv_loop_t* loop, uv_fs_t* req, const char* path, double atime, double mtime, uv_f…
|
/libuv/include/ |
H A D | uv.h | 1584 double atime, 1590 double atime, 1596 double atime,
|
/libuv/docs/src/ |
H A D | fs.rst | 427 .. c:function:: int uv_fs_utime(uv_loop_t* loop, uv_fs_t* req, const char* path, double atime, doub… 428 .. c:function:: int uv_fs_futime(uv_loop_t* loop, uv_fs_t* req, uv_file file, double atime, double … 429 .. c:function:: int uv_fs_lutime(uv_loop_t* loop, uv_fs_t* req, const char* path, double atime, dou…
|
Completed in 43 milliseconds