Home
last modified time | relevance | path

Searched refs:outputPath (Results 1 – 12 of 12) sorted by relevance

/build/soong/java/
Dhiddenapi_singleton.go190 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 …]
Djdeps.go37 outputPath android.Path member
103 j.outputPath = jfpath
113 if j.outputPath == nil {
117 ctx.DistForGoal("general-tests", j.outputPath)
Dplatform_compat_config.go90 outputPath := platformCompatConfigPath(ctx)
95 FlagWithOutput("--merged-config ", outputPath)
99 p.metadata = outputPath
Dlint.go467 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())
Ddexpreopt_bootjars.go368 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()).
Dapp.go1386 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/
Dmetrics.go139 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/
Dccdeps.go41 outputPath android.Path member
116 c.outputPath = ccfpath
126 if c.outputPath == nil {
130 ctx.DistForGoal("general-tests", c.outputPath)
Dcc_test.go566 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/
Dlog.go254 func writeToFile(pb proto.Message, outputPath string) (err error) {
260 tempPath := outputPath + ".tmp"
266 err = os.Rename(tempPath, outputPath)
/build/soong/cmd/sbox/
Dsbox.go186 for _, outputPath := range outputsVarEntries {
187 tempOutPath := path.Join(tempDir, outputPath)
/build/soong/cmd/merge_zips/
Dmerge_zips.go689 outputPath := args[0]
707 outputZip, err := os.Create(outputPath)