Searched refs:outputPath (Results 1 – 12 of 12) sorted by relevance
/build/soong/java/ |
D | hiddenapi_singleton.go | 190 outputPath := hiddenAPISingletonPaths(ctx).stubFlags 191 tempPath := android.PathForOutput(ctx, outputPath.Rel()+".tmp") 205 commitChangeForRestat(rule, tempPath, outputPath) 241 outputPath := hiddenAPISingletonPaths(ctx).flags 242 tempPath := android.PathForOutput(ctx, outputPath.Rel()+".tmp") 265 commitChangeForRestat(rule, tempPath, outputPath) 269 return outputPath 277 outputPath := hiddenAPISingletonPaths(ctx).flags 279 rule.Command().Text("rm").Flag("-f").Output(outputPath) 280 rule.Command().Text("touch").Output(outputPath) [all …]
|
D | jdeps.go | 37 outputPath android.Path member 103 j.outputPath = jfpath 113 if j.outputPath == nil { 117 ctx.DistForGoal("general-tests", j.outputPath)
|
D | platform_compat_config.go | 90 outputPath := platformCompatConfigPath(ctx) 95 FlagWithOutput("--merged-config ", outputPath) 99 p.metadata = outputPath
|
D | lint.go | 467 zip := func(outputPath android.WritablePath, get func(*lintOutputs) android.Path) { 476 lintZip(ctx, paths, outputPath) 504 func lintZip(ctx android.BuilderContext, paths android.Paths, outputPath android.WritablePath) { 514 FlagWithOutput("-o ", outputPath). 518 rule.Build(pctx, ctx, outputPath.Base(), outputPath.Base())
|
D | dexpreopt_bootjars.go | 368 outputPath := outputDir.Join(ctx, image.stem+".oat") 369 oatLocation := dexpreopt.PathToLocation(outputPath, arch) 370 imagePath := outputPath.ReplaceExtension(ctx, "art") 396 invocationPath := outputPath.ReplaceExtension(ctx, "invocation") 431 FlagWithArg("--oat-file=", outputPath.String()).
|
D | app.go | 1386 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) { 1392 Output: outputPath, 1402 FlagWithOutput("-o ", outputPath). 1404 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath) 1423 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) { 1429 FlagWithOutput("-o ", outputPath). 1431 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
|
/build/soong/ui/metrics/ |
D | metrics.go | 139 func (m *Metrics) Dump(outputPath string) (err error) { 140 return writeMessageToFile(&m.metrics, outputPath) 162 func (c *CriticalUserJourneysMetrics) Dump(outputPath string) (err error) { 163 return writeMessageToFile(&c.cujs, outputPath) 166 func writeMessageToFile(pb proto.Message, outputPath string) (err error) { 171 tempPath := outputPath + ".tmp" 176 err = os.Rename(tempPath, outputPath)
|
/build/soong/cc/ |
D | ccdeps.go | 41 outputPath android.Path member 116 c.outputPath = ccfpath 126 if c.outputPath == nil { 130 ctx.DistForGoal("general-tests", c.outputPath)
|
D | cc_test.go | 566 outputPath := outputFiles[0].String() 569 if !strings.HasSuffix(outputPath, "/main_test") { 570 t.Errorf("expected test output file to be 'main_test', but was '%s'", outputPath) 614 outputPath := outputFiles[0].String() 616 if !strings.HasSuffix(outputPath, "/main_test") { 617 t.Errorf("expected test output file to be 'main_test', but was '%s'", outputPath) 3003 outputPath := outputFiles[0].String() 3005 if !strings.HasSuffix(outputPath, "/main_test") { 3006 t.Errorf("expected test output file to be 'main_test', but was '%s'", outputPath)
|
/build/soong/ui/status/ |
D | log.go | 254 func writeToFile(pb proto.Message, outputPath string) (err error) { 260 tempPath := outputPath + ".tmp" 266 err = os.Rename(tempPath, outputPath)
|
/build/soong/cmd/sbox/ |
D | sbox.go | 186 for _, outputPath := range outputsVarEntries { 187 tempOutPath := path.Join(tempDir, outputPath)
|
/build/soong/cmd/merge_zips/ |
D | merge_zips.go | 689 outputPath := args[0] 707 outputZip, err := os.Create(outputPath)
|