Home
last modified time | relevance | path

Searched refs:st (Results 1 – 4 of 4) sorted by relevance

/build/tools/atree/
Dfs.cpp22 struct stat st; in is_dir() local
23 err = stat(path.c_str(), &st); in is_dir()
24 return err != 0 || S_ISDIR(st.st_mode); in is_dir()
118 struct stat st; in mkdir_recursively() local
119 err = stat(p.c_str(), &st); in mkdir_recursively()
128 else if (!S_ISDIR(st.st_mode)) { in mkdir_recursively()
Dfiles.cpp301 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()
[all …]
/build/tools/
Dfileslist.py21 st = os.lstat(path)
22 return st.st_size;
/build/tools/soslim/
Dmain.c160 struct stat st; in main() local
161 FAILIF(fstat (elf_fd, &st) != 0, in main()
165 st.st_mode & ACCESSPERMS); in main()