Lines Matching defs:date
1396 file->date = ntfs2timespec(si->last_data_change_time).tv_sec;
1574 strftime(buffer, sizeof(buffer), "%F %R", localtime(&file->date));
1673 * the percentage of the file that is recoverable, the last modification date,
1697 strftime(buffer, sizeof(buffer), "%F %R", localtime(&file->date));
1919 * set_date - Set the file's date and time
1921 * @date: Date and time to set
1923 * Give a file a particular date and time.
1925 * Return: 1 Success, set the file's date and time
1926 * 0 Error, failed to change the file's date and time
1928 static int set_date(const char *pathname, time_t date)
1935 ut.actime = date;
1936 ut.modtime = date;
1938 ntfs_log_error("ERROR: Couldn't set the file's date and time\n");
2189 set_date(pathname, file->date);
2212 * The list can be filtered by name, size and date, using command line options.
2290 if ((opts.since > 0) && (file->date <= opts.since))