Home
last modified time | relevance | path

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

/build/soong/ui/status/
Dkati.go32 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 …]
Dkati_test.go51 st: status.StartTool(),
118 st: status.StartTool(),
164 st: status.StartTool(),
/build/make/target/product/
Dmemtag-common.mk24 hardware/st/nfc \
25 hardware/st/secure_element \
26 hardware/st/secure_element2 \
/build/make/tools/
Dbuild-runfiles.cc192 struct stat st; in SetupOutputBase() local
193 if (stat(output_base_.c_str(), &st) != 0) { in SetupOutputBase()
294 struct stat st; in DentryToFileType() local
295 LStatOrDie(path, &st); in DentryToFileType()
296 if (S_ISDIR(st.st_mode)) { in DentryToFileType()
298 } else if (S_ISLNK(st.st_mode)) { in DentryToFileType()
306 void LStatOrDie(const std::string &path, struct stat *st) { in LStatOrDie() argument
307 if (lstat(path.c_str(), st) != 0) { in LStatOrDie()
312 void StatOrDie(const std::string &path, struct stat *st) { in StatOrDie() argument
313 if (stat(path.c_str(), st) != 0) { in StatOrDie()
[all …]
Dfindleaves.py60 st = os.stat(os.path.join(root, dirs[i]))
61 key = (st.st_dev, st.st_ino)
Dcompare_builds.py454 st = os.stat(filename, follow_symlinks=False)
455 return st.st_mtime
/build/soong/ui/build/
Dexec.go163 st := c.ctx.Status.StartTool()
166 st.Error(string(ret))
168 st.Print(string(ret))
171 st.Finish()
184 st := c.ctx.Status.StartTool()
193 st.Print(strings.TrimSuffix(line, "\n"))
202 st.Finish()
/build/make/tools/atree/
Dfs.cpp24 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()
Dfiles.cpp346 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 …]
/build/bazel/tests/products/
Daosp_x86_64.variables.bzl76 …/iptables","external/mtpd","external/ppp","hardware/st/nfc","hardware/st/secure_element","hardware…
Daosp_x86.variables.bzl76 …/iptables","external/mtpd","external/ppp","hardware/st/nfc","hardware/st/secure_element","hardware…
Daosp_arm64.variables.bzl76 …/iptables","external/mtpd","external/ppp","hardware/st/nfc","hardware/st/secure_element","hardware…
Daosp_arm.variables.bzl76 …/iptables","external/mtpd","external/ppp","hardware/st/nfc","hardware/st/secure_element","hardware…
/build/make/tools/finalization/
DREADME.md7 …SDK release. SDK contains Android Java APIs and other stable APIs. Commonly referred as a 1st step.
/build/soong/tests/
Dlib.sh12 mock=$(mktemp -t -d st.XXXXX)
/build/soong/java/
Ddroidstubs.go296 for st := Everything; st <= Exportable; st++ {
297 if strings.HasPrefix(tag, "."+st.String()) {
298 stubsType = st