times             258 lib/vfs/interface.c MC_NAMEOP (utime, (const vfs_path_t *vpath, mc_timesbuf_t * times), (vpath, times))
times             176 lib/vfs/vfs.h      int (*utime) (const vfs_path_t * vpath, mc_timesbuf_t * times);
times             307 lib/vfs/vfs.h  int mc_utime (const vfs_path_t * vpath, mc_timesbuf_t * times);
times             942 src/filemanager/file.c get_times (const struct stat *sb, mc_timesbuf_t * times)
times             945 src/filemanager/file.c     (*times)[0] = sb->st_atim;
times             946 src/filemanager/file.c     (*times)[1] = sb->st_mtim;
times             948 src/filemanager/file.c     times->actime = sb->st_atime;
times             949 src/filemanager/file.c     times->modtime = sb->st_mtime;
times            1307 src/filemanager/file.c                     mc_timesbuf_t times;
times            1309 src/filemanager/file.c                     get_times (&src_stat, &times);
times            1310 src/filemanager/file.c                     mc_utime (dst_vpath, &times);
times            2274 src/filemanager/file.c     mc_timesbuf_t times;
times            2355 src/filemanager/file.c     get_times (&src_stat, &times);
times            2382 src/filemanager/file.c                 mc_utime (dst_vpath, &times);
times            2439 src/filemanager/file.c             mc_utime (dst_vpath, &times);
times            2822 src/filemanager/file.c         mc_utime (dst_vpath, &times);
times            3097 src/filemanager/file.c         mc_timesbuf_t times;
times            3100 src/filemanager/file.c         get_times (&src_stat, &times);
times            3101 src/filemanager/file.c         mc_utime (dst_vpath, &times);
times             218 src/vfs/local/local.c local_utime (const vfs_path_t * vpath, mc_timesbuf_t * times)
times             225 src/vfs/local/local.c     ret = utimensat (AT_FDCWD, path, *times, AT_SYMLINK_NOFOLLOW);
times             227 src/vfs/local/local.c     ret = utime (path, times);
times             352 src/vfs/sfs/sfs.c sfs_utime (const vfs_path_t * vpath, mc_timesbuf_t * times)
times             355 src/vfs/sfs/sfs.c     return utimensat (AT_FDCWD, sfs_redirect (vpath), *times, 0);
times             357 src/vfs/sfs/sfs.c     return utime (sfs_redirect (vpath), times);
times             335 src/vfs/sftpfs/sftpfs.c sftpfs_cb_utime (const vfs_path_t * vpath, mc_timesbuf_t * times)
times             341 src/vfs/sftpfs/sftpfs.c     time_t atime = (*times)[0].tv_sec;
times             342 src/vfs/sftpfs/sftpfs.c     time_t mtime = (*times)[1].tv_sec;
times             344 src/vfs/sftpfs/sftpfs.c     time_t atime = times->actime;
times             345 src/vfs/sftpfs/sftpfs.c     time_t mtime = times->modtime;
times            1455 src/vfs/shell/shell.c shell_get_atime (mc_timesbuf_t * times, time_t * sec, long *nsec)
times            1458 src/vfs/shell/shell.c     *sec = (*times)[0].tv_sec;
times            1459 src/vfs/shell/shell.c     *nsec = (*times)[0].tv_nsec;
times            1461 src/vfs/shell/shell.c     *sec = times->actime;
times            1469 src/vfs/shell/shell.c shell_get_mtime (mc_timesbuf_t * times, time_t * sec, long *nsec)
times            1472 src/vfs/shell/shell.c     *sec = (*times)[1].tv_sec;
times            1473 src/vfs/shell/shell.c     *nsec = (*times)[1].tv_nsec;
times            1475 src/vfs/shell/shell.c     *sec = times->modtime;
times            1483 src/vfs/shell/shell.c shell_utime (const vfs_path_t * vpath, mc_timesbuf_t * times)
times            1502 src/vfs/shell/shell.c     shell_get_atime (times, &atime, &atime_nsec);
times            1511 src/vfs/shell/shell.c     shell_get_mtime (times, &mtime, &mtime_nsec);