Home | History | Annotate | Download | only in utime

Lines Matching defs:times

25  *  and access times of a file to the time specified by times argument, if
26 * the times argument is not null, and the user ID of the process is "root".
30 * times of the file to that specified by the times argument.
58 * -i n : Execute test n times.
92 struct utimbuf times; /* struct. buffer for utime() */
114 * modification times to that specified by
115 * times argument.
117 TEST(utime(TEMP_FILE, &times));
123 * Get the modification and access times of
134 "modification times not set",
138 "utime(%s, &times) successful",
173 /* Initialize the modification and access time in the times arg */
174 times.actime = NEW_TIME;
175 times.modtime = NEW_TIME;