Home
last modified time | relevance | path

Searched refs:last_mtime (Results 1 – 7 of 7) sorted by relevance

/ndk/sources/host-tools/make-3.81/
Dfiledef.h37 FILE_TIMESTAMP last_mtime; /* File's modtime, if already known. */ member
170 ((f)->last_mtime == UNKNOWN_MTIME ? f_mtime ((f), v) : (f)->last_mtime)
Dfile.c312 if (from_file->last_mtime > to_file->last_mtime) in rehash_file()
314 to_file->last_mtime = from_file->last_mtime; in rehash_file()
676 f2->last_mtime = NONEXISTENT_MTIME; in snap_deps()
924 if (f->last_mtime == UNKNOWN_MTIME) in print_file()
926 else if (f->last_mtime == NONEXISTENT_MTIME) in print_file()
928 else if (f->last_mtime == OLD_MTIME) in print_file()
933 file_timestamp_sprintf (buf, f->last_mtime); in print_file()
Dremake.c848 file->mtime_before_update = file->last_mtime; in notice_finished_file()
870 file->last_mtime = i == 0 ? UNKNOWN_MTIME : NEW_MTIME; in notice_finished_file()
886 FILE_TIMESTAMP max_mtime = file->last_mtime; in notice_finished_file()
893 && (f->last_mtime == UNKNOWN_MTIME || f->last_mtime > max_mtime)) in notice_finished_file()
894 max_mtime = f->last_mtime; in notice_finished_file()
898 f->last_mtime = max_mtime; in notice_finished_file()
1241 file->last_mtime = mtime; in f_mtime()
1337 file->last_mtime = mtime; in f_mtime()
Dvpath.c483 && (f->last_mtime == OLD_MTIME || f->last_mtime == NEW_MTIME)) in selective_vpath_search()
485 *mtime_ptr = f->last_mtime; in selective_vpath_search()
Dcommands.c539 time_t file_date = (file->last_mtime == NONEXISTENT_MTIME in delete_target()
541 : (time_t) FILE_TIMESTAMP_S (file->last_mtime)); in delete_target()
558 && FILE_TIMESTAMP_STAT_MODTIME (file->name, st) != file->last_mtime) in delete_target()
Dmain.c1788 f->last_mtime = f->mtime_before_update = OLD_MTIME; in main()
1799 f->last_mtime = f->mtime_before_update = NEW_MTIME; in main()
2133 f->last_mtime = f->mtime_before_update = NEW_MTIME; in main()
DChangeLog2085 * remake.c (notice_finished_file): Update last_mtime on `prev' chain.