rerere_path       108 builtin/rerere.c 			if (diff_two(rerere_path(name, "preimage"), path, path, path))
rerere_path        31 rerere.c       	return !stat(rerere_path(hex, "postimage"), &st);
rerere_path       441 rerere.c       	if (handle_file(path, NULL, rerere_path(name, "thisimage")) < 0)
rerere_path       444 rerere.c       	if (read_mmfile(&cur, rerere_path(name, "thisimage")) ||
rerere_path       445 rerere.c       			read_mmfile(&base, rerere_path(name, "preimage")) ||
rerere_path       446 rerere.c       			read_mmfile(&other, rerere_path(name, "postimage"))) {
rerere_path       454 rerere.c       		if (utime(rerere_path(name, "postimage"), NULL) < 0)
rerere_path       456 rerere.c       					rerere_path(name, "postimage"),
rerere_path       527 rerere.c       			handle_file(path, NULL, rerere_path(hex, "preimage"));
rerere_path       562 rerere.c       		copy_file(rerere_path(name, "postimage"), path, 0666);
rerere_path       639 rerere.c       	filename = rerere_path(hex, "postimage");
rerere_path       645 rerere.c       	handle_cache(path, sha1, rerere_path(hex, "preimage"));
rerere_path       682 rerere.c       	return stat(rerere_path(name, "preimage"), &st) ? (time_t) 0 : st.st_mtime;
rerere_path       688 rerere.c       	return stat(rerere_path(name, "postimage"), &st) ? (time_t) 0 : st.st_mtime;
rerere_path       693 rerere.c       	unlink(rerere_path(name, "thisimage"));
rerere_path       694 rerere.c       	unlink(rerere_path(name, "preimage"));
rerere_path       695 rerere.c       	unlink(rerere_path(name, "postimage"));
rerere_path        21 rerere.h       extern const char *rerere_path(const char *hex, const char *file);