times             253 lib/vfs/interface.c MC_NAMEOP (utime, (const vfs_path_t *vpath, mc_timesbuf_t * times), (vpath, times))
times             172 lib/vfs/vfs.h      int (*utime) (const vfs_path_t * vpath, mc_timesbuf_t * times);
times             303 lib/vfs/vfs.h  int mc_utime (const vfs_path_t * vpath, mc_timesbuf_t * times);
times             939 src/filemanager/file.c get_times (const struct stat *sb, mc_timesbuf_t * times)
times             942 src/filemanager/file.c     (*times)[0] = sb->st_atim;
times             943 src/filemanager/file.c     (*times)[1] = sb->st_mtim;
times             945 src/filemanager/file.c     times->actime = sb->st_atime;
times             946 src/filemanager/file.c     times->modtime = sb->st_mtime;
times            1304 src/filemanager/file.c                     mc_timesbuf_t times;
times            1306 src/filemanager/file.c                     get_times (&src_stat, &times);
times            1307 src/filemanager/file.c                     mc_utime (dst_vpath, &times);
times            2272 src/filemanager/file.c     mc_timesbuf_t times;
times            2353 src/filemanager/file.c     get_times (&src_stat, &times);
times            2380 src/filemanager/file.c                 mc_utime (dst_vpath, &times);
times            2437 src/filemanager/file.c             mc_utime (dst_vpath, &times);
times            2814 src/filemanager/file.c         mc_utime (dst_vpath, &times);
times            3090 src/filemanager/file.c         mc_timesbuf_t times;
times            3093 src/filemanager/file.c         get_times (&src_stat, &times);
times            3094 src/filemanager/file.c         mc_utime (dst_vpath, &times);
times            1459 src/vfs/fish/fish.c fish_get_atime (mc_timesbuf_t * times, time_t * sec, long *nsec)
times            1462 src/vfs/fish/fish.c     *sec = (*times)[0].tv_sec;
times            1463 src/vfs/fish/fish.c     *nsec = (*times)[0].tv_nsec;
times            1465 src/vfs/fish/fish.c     *sec = times->actime;
times            1473 src/vfs/fish/fish.c fish_get_mtime (mc_timesbuf_t * times, time_t * sec, long *nsec)
times            1476 src/vfs/fish/fish.c     *sec = (*times)[1].tv_sec;
times            1477 src/vfs/fish/fish.c     *nsec = (*times)[1].tv_nsec;
times            1479 src/vfs/fish/fish.c     *sec = times->modtime;
times            1487 src/vfs/fish/fish.c fish_utime (const vfs_path_t * vpath, mc_timesbuf_t * times)
times            1508 src/vfs/fish/fish.c     fish_get_atime (times, &atime, &atime_nsec);
times            1517 src/vfs/fish/fish.c     fish_get_mtime (times, &mtime, &mtime_nsec);
times             196 src/vfs/local/local.c local_utime (const vfs_path_t * vpath, mc_timesbuf_t * times)
times             203 src/vfs/local/local.c     ret = utimensat (AT_FDCWD, path_element->path, *times, AT_SYMLINK_NOFOLLOW);
times             205 src/vfs/local/local.c     ret = utime (path_element->path, times);
times             351 src/vfs/sfs/sfs.c sfs_utime (const vfs_path_t * vpath, mc_timesbuf_t * times)
times             354 src/vfs/sfs/sfs.c     return utimensat (AT_FDCWD, sfs_redirect (vpath), *times, 0);
times             356 src/vfs/sfs/sfs.c     return utime (sfs_redirect (vpath), times);
times             333 src/vfs/sftpfs/sftpfs.c sftpfs_cb_utime (const vfs_path_t * vpath, mc_timesbuf_t * times)
times             339 src/vfs/sftpfs/sftpfs.c     time_t atime = (*times)[0].tv_sec;
times             340 src/vfs/sftpfs/sftpfs.c     time_t mtime = (*times)[1].tv_sec;
times             342 src/vfs/sftpfs/sftpfs.c     time_t atime = times->actime;
times             343 src/vfs/sftpfs/sftpfs.c     time_t mtime = times->modtime;