Searched refs:st (Results 1 – 6 of 6) sorted by relevance
/build/soong/ui/status/ |
D | kati.go | 32 st ToolStatus member 53 k.st.FinishAction(ActionResult{ 66 k.st.Verbose(line) 80 k.st.SetTotalActions(k.total + k.extra) 84 k.st.SetTotalActions(k.total + k.extra) 92 k.st.SetTotalActions(k.total + k.extra) 99 k.st.StartAction(k.action) 109 k.st.Status(line) 111 k.st.Print(line) 118 func KatiReader(st ToolStatus, pipe io.ReadCloser) { [all …]
|
D | kati_test.go | 51 st: status.StartTool(), 118 st: status.StartTool(), 164 st: status.StartTool(),
|
/build/soong/ui/build/ |
D | exec.go | 160 st := c.ctx.Status.StartTool() 163 st.Error(string(ret)) 165 st.Print(string(ret)) 168 st.Finish() 181 st := c.ctx.Status.StartTool() 190 st.Print(strings.TrimSuffix(line, "\n")) 199 st.Finish()
|
/build/make/tools/atree/ |
D | files.cpp | 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() [all …]
|
D | fs.cpp | 24 struct stat st; in is_dir() local 25 err = stat(path.c_str(), &st); in is_dir() 26 return err != 0 || S_ISDIR(st.st_mode); in is_dir() 113 struct stat st; in mkdir_recursively() local 114 err = stat(p.c_str(), &st); in mkdir_recursively() 123 else if (!S_ISDIR(st.st_mode)) { in mkdir_recursively()
|
/build/make/tools/ |
D | findleaves.py | 60 st = os.stat(os.path.join(root, dirs[i])) 61 key = (st.st_dev, st.st_ino)
|