Home
last modified time | relevance | path

Searched refs:absolutePath (Results 1 – 9 of 9) sorted by relevance

/build/blueprint/bootstrap/
Dcommand.go84 f, err := os.Create(absolutePath(cpuprofile))
94 f, err := os.Create(absolutePath(traceFile))
163 err := writeDocs(ctx, absolutePath(docFile))
188 if err := ioutil.WriteFile(absolutePath(outFile), []byte(nil), outFilePermissions); err != nil {
194 …f, err = os.OpenFile(absolutePath(outFile), os.O_WRONLY|os.O_CREATE|os.O_TRUNC, outFilePermissions)
210 err = ioutil.WriteFile(absolutePath(globFile), buffer, outFilePermissions)
217 err := deptools.WriteDepFile(absolutePath(depFile), outFile, deps)
251 f, err := os.Create(absolutePath(memprofile))
283 func absolutePath(path string) string { func
Dglob.go140 err := pathtools.WriteFileIfChanged(absolutePath(fileListFile), []byte(fileList), 0666)
Dcleanup.go73 err = removeFileAndEmptyDirs(absolutePath(filePath))
Dbootstrap.go710 …primaryBuilderNinjaGlobFile := absolutePath(filepath.Join(BuildDir, bootstrapSubDir, "build-globs.…
/build/soong/android/
Dmetrics.go81 err = ioutil.WriteFile(absolutePath(metricsFile), buf, 0666)
Dandroidmk.go429 err := translateAndroidMk(ctx, absolutePath(transMk.String()), androidMkModulesList)
470 if _, err := os.Stat(absolutePath(mkFile)); !os.IsNotExist(err) {
471 if data, err := ioutil.ReadFile(absolutePath(mkFile)); err == nil {
489 return ioutil.WriteFile(absolutePath(mkFile), buf.Bytes(), 0666)
Dmakevars.go186 outFile := absolutePath(PathForOutput(ctx,
189 lateOutFile := absolutePath(PathForOutput(ctx,
Dconfig.go132 err := loadFromConfigFile(&config.FileConfigurableOptions, absolutePath(config.ConfigFileName))
137 return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName))
363 if _, err := os.Stat(absolutePath(inMakeFile)); err == nil {
948 path := absolutePath(*c.productVariables.DexpreoptGlobalConfig)
Dpaths.go1549 return ioutil.WriteFile(absolutePath(path.String()), data, perm)
1552 func absolutePath(path string) string { func