Home
last modified time | relevance | path

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

/build/blueprint/bootstrap/
Dcommand.go150 f, err := os.Create(absolutePath(args.Cpuprofile))
160 f, err := os.Create(absolutePath(args.TraceFile))
191 …primaryBuilderNinjaGlobFile := absolutePath(filepath.Join(args.BuildDir, bootstrapSubDir, "build-g…
244 err := writeDocs(ctx, config, absolutePath(args.DocFile))
275 …if err := ioutil.WriteFile(absolutePath(args.OutFile), []byte(nil), outFilePermissions); err != ni…
281 …f, err = os.OpenFile(absolutePath(args.OutFile), os.O_WRONLY|os.O_CREATE|os.O_TRUNC, outFilePermis…
297 err = ioutil.WriteFile(absolutePath(args.GlobFile), buffer, outFilePermissions)
331 f, err := os.Create(absolutePath(args.Memprofile))
365 func absolutePath(path string) string { func
Dcleanup.go73 err = removeFileAndEmptyDirs(absolutePath(filePath))
Dglob.go194 err := pathtools.WriteFileIfChanged(absolutePath(fileListFile), globs.FileList(), 0666)
/build/soong/android/
Dwritedocs.go37 buildDir := absolutePath(ctx.Config().BuildDir())
38 binary := absolutePath(os.Args[0])
Dbazel_handler.go324 cmdFlags := []string{"--output_base=" + absolutePath(paths.outputBase), command.command}
349 bazelCmd.Dir = absolutePath(paths.syntheticWorkspaceDir())
353 "BUILD_DIR="+absolutePath(paths.buildDir),
588 soongInjectionPath := absolutePath(context.paths.injectedFilesDir())
617 absolutePath(cqueryFileRelpath),
628 "--starlark:file="+absolutePath(cqueryFileRelpath))
717 bazelBuildList := absolutePath(filepath.Join(
Dmetrics.go81 err = ioutil.WriteFile(absolutePath(metricsFile), buf, 0666)
Dandroidmk.go670 err := translateAndroidMk(ctx, absolutePath(transMk.String()), androidMkModulesList)
711 if _, err := os.Stat(absolutePath(mkFile)); !os.IsNotExist(err) {
712 if data, err := ioutil.ReadFile(absolutePath(mkFile)); err == nil {
730 return ioutil.WriteFile(absolutePath(mkFile), buf.Bytes(), 0666)
Dmakevars.go219 outFile := absolutePath(PathForOutput(ctx,
222 lateOutFile := absolutePath(PathForOutput(ctx,
Dpaths.go1984 return ioutil.WriteFile(absolutePath(path.String()), data, perm)
1988 return os.RemoveAll(absolutePath(path.String()))
1992 dir := absolutePath(path.String())
2000 func absolutePath(path string) string { func