Lines Matching refs:st
301 struct stat st; in locate() local
302 err = stat(full.c_str(), &st); in locate()
306 rec->sourceMod = st.st_mtime; in locate()
307 rec->sourceIsDir = S_ISDIR(st.st_mode); in locate()
323 struct stat st; in stat_out() local
324 err = stat(rec->outPath.c_str(), &st); in stat_out()
326 rec->outMod = st.st_mtime; in stat_out()
327 rec->outIsDir = S_ISDIR(st.st_mode); in stat_out()
353 struct stat st; in add_more() local
354 int err = stat(r.sourcePath.c_str(), &st); in add_more()
356 r.sourceMod = st.st_mtime; in add_more()