Lines Matching refs:st
346 struct stat st; in locate() local
347 err = stat(full.c_str(), &st); in locate()
351 rec->sourceMod = st.st_mtime; in locate()
352 rec->sourceSize = st.st_size; in locate()
353 rec->sourceIsDir = S_ISDIR(st.st_mode); in locate()
369 struct stat st; in stat_out() local
370 err = stat(rec->outPath.c_str(), &st); in stat_out()
372 rec->outMod = st.st_mtime; in stat_out()
373 rec->outSize = st.st_size; in stat_out()
374 rec->outIsDir = S_ISDIR(st.st_mode); in stat_out()
401 struct stat st; in add_more() local
402 int err = stat(r.sourcePath.c_str(), &st); in add_more()
404 r.sourceMod = st.st_mtime; in add_more()