Home | History | Annotate | Download | only in make-3.81

Lines Matching refs:mtime

88 #define	MTIME(file) (rebuilding_makefiles ? file_mtime_no_search (file) \
184 FILE_TIMESTAMP mtime = MTIME (file);
188 mtime != file->mtime_before_update)
476 FILE_TIMESTAMP mtime;
482 mtime = file_mtime (d->file);
543 d->changed = ((file_mtime (d->file) != mtime)
544 /* || (mtime == NONEXISTENT_MTIME) */);
560 FILE_TIMESTAMP mtime = file_mtime (d->file);
598 || file_mtime (d->file) != mtime);
793 /* Set FILE's `updated' flag and re-check its mtime and the mtime's of all
859 really check the target's mtime again. Otherwise, assume the target
930 /* Check whether another file (whose mtime is THIS_MTIME)
951 FILE_TIMESTAMP mtime;
954 mtime = file_mtime (file);
956 if (mtime == NONEXISTENT_MTIME || mtime > this_mtime)
962 FILE_TIMESTAMP mtime;
982 mtime = file_mtime (file);
984 if (mtime != NONEXISTENT_MTIME && mtime > this_mtime)
1143 /* Return the mtime of a file, given a `struct file'.
1154 FILE_TIMESTAMP mtime;
1156 /* File's mtime is not known; must get it from the system. */
1179 mtime = f_mtime (arfile, search);
1223 if (mtime == NONEXISTENT_MTIME)
1228 mtime = (member_date == (time_t) -1
1235 mtime = name_mtime (file->name);
1237 if (mtime == NONEXISTENT_MTIME && search && !file->ignore_vpath)
1241 if (vpath_search (&name, &mtime)
1244 && library_search (&name, &mtime)))
1246 if (mtime != UNKNOWN_MTIME)
1249 file->last_mtime = mtime;
1264 Otherwise, find the mtime of the resulting file. */
1265 if (mtime != OLD_MTIME && mtime != NEW_MTIME)
1266 mtime = name_mtime (name);
1278 && mtime != NONEXISTENT_MTIME && mtime != NEW_MTIME
1283 FILE_TIMESTAMP adjusted_mtime = mtime;
1318 (FILE_TIMESTAMP_S (mtime) - FILE_TIMESTAMP_S (now)
1319 + ((FILE_TIMESTAMP_NS (mtime) - FILE_TIMESTAMP_NS (now))
1329 /* Store the mtime into all the entries for this file. */
1340 if (mtime != NONEXISTENT_MTIME && file->command_state == cs_not_started
1345 file->last_mtime = mtime;
1350 return mtime;
1354 /* Return the mtime of the file or archive-member reference NAME. */
1358 examine each indirection of the symlink and find the newest mtime.
1365 FILE_TIMESTAMP mtime;
1371 mtime = FILE_TIMESTAMP_STAT_MODTIME (name, st);
1373 mtime = NONEXISTENT_MTIME;
1381 If it doesn't exist see if we can use a symlink mtime instead. */
1391 /* Check each symbolic link segment (if any). Find the latest mtime
1396 and use whatever mtime we've already computed at that point. */
1415 file's mtime so we don't need to test it again). */
1419 /* If this mtime is newer than what we had, keep the new one. */
1421 if (ltime > mtime)
1422 mtime = ltime;
1449 return mtime;
1480 FILE_TIMESTAMP mtime;
1532 mtime = name_mtime (libbuf);
1533 if (mtime != NONEXISTENT_MTIME)
1537 *mtime_ptr = mtime;
1572 mtime = name_mtime (buf);
1573 if (mtime != NONEXISTENT_MTIME)
1577 *mtime_ptr = mtime;