Home
last modified time | relevance | path

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

/build/soong/testing/
Dall_test_specs.go17 outputPath android.OutputPath member
30 this.outputPath = android.PathForOutput(ctx, ownershipDirectory, allTestSpecsFile)
37 cmd.FlagWithOutput("-outputFile ", this.outputPath)
39 ctx.Phony("all_test_specs", this.outputPath)
43 ctx.DistForGoal("test_specs", this.outputPath)
Dall_code_metadata.go16 outputPath android.OutputPath member
31 this.outputPath = android.PathForOutput(ctx, ownershipDirectory, allCodeMetadataFile)
38 cmd.FlagWithOutput("-outputFile ", this.outputPath)
41 ctx.Phony("all_code_metadata", this.outputPath)
45 ctx.DistForGoal("code_metadata", this.outputPath)
/build/soong/aconfig/build_flags/
Dbuild_flags.go38 outputPath android.OutputPath member
51 m.outputPath = android.PathForModuleOut(ctx, outJsonFileName).OutputPath
59 Output: m.outputPath,
63 ctx.InstallFile(installPath, outJsonFileName, m.outputPath)
69 OutputFile: android.OptionalPathForPath(m.outputPath),
/build/soong/java/
Dhiddenapi_singleton.go187 outputPath := hiddenAPISingletonPaths(ctx).flags
192 Output: outputPath,
198 outputPath := hiddenAPISingletonPaths(ctx).index
203 Output: outputPath,
221 func commitChangeForRestat(rule *android.RuleBuilder, tempPath, outputPath android.WritablePath) {
227 Text("cmp -s").Input(tempPath).Output(outputPath).Text(";").
231 Text("mv").Input(tempPath).Output(outputPath).Text(";").
Djdeps.go37 outputPath android.Path member
105 j.outputPath = jfpath
115 if j.outputPath == nil {
119 ctx.DistForGoal("general-tests", j.outputPath)
Dplatform_compat_config.go255 outputPath := platformCompatConfigPath(ctx)
260 FlagWithOutput("--merged-config ", outputPath)
264 p.metadata = outputPath
Dlint.go668 zip := func(outputPath android.WritablePath, get func(*lintOutputs) android.Path) {
677 lintZip(ctx, paths, outputPath)
716 func lintZip(ctx android.BuilderContext, paths android.Paths, outputPath android.WritablePath) {
726 FlagWithOutput("-o ", outputPath).
728 FlagWithRspFileInputList("-r ", outputPath.ReplaceExtension(ctx, "rsp"), paths)
730 rule.Build(outputPath.Base(), outputPath.Base())
Dhiddenapi_modular.go332 …eHiddenAPIStubFlagsFile(ctx android.BuilderContext, name, desc string, outputPath android.Writable…
336 tempPath := tempPathForRestat(ctx, outputPath)
378 validFile := buildRuleValidateOverlappingCsvFiles(ctx, name, desc, outputPath, stubFlagSubsets,
388 commitChangeForRestat(rule, tempPath, outputPath)
990 outputPath android.WritablePath, baseFlagsPath android.Path, annotationFlagPaths android.Paths,
994 tempPath := tempPathForRestat(ctx, outputPath)
1016 commitChangeForRestat(rule, tempPath, outputPath)
1021 validFile := buildRuleValidateOverlappingCsvFiles(ctx, name, desc, outputPath, flagSubsets,
Dhiddenapi.go187 …xt, desc string, classesJars android.Paths, stubFlagsCSV android.Path, outputPath android.Writable…
192 Output: outputPath,
Dplatform_bootclasspath.go418 …eCSV(ctx android.ModuleContext, desc string, inputPaths android.Paths, outputPath android.Writable…
423 FlagWithOutput("--output=", outputPath).
Dapp_import.go243 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
249 Output: outputPath,
258 Output: outputPath,
Ddexpreopt_bootjars.go975 outputPath := outputDir.Join(ctx, image.stem+".oat")
976 oatLocation := dexpreopt.PathToLocation(outputPath, arch)
977 imagePath := outputPath.ReplaceExtension(ctx, "art")
1004 invocationPath := outputPath.ReplaceExtension(ctx, "invocation")
1077 FlagWithArg("--oat-file=", outputPath.String()).
Dbase.go1526 } else if outputPath, ok := jars[0].(android.OutputPath); ok && !stub {
1528 outputFile = outputPath
/build/soong/rust/
Dtest_test.go122 outputPath := outputFiles[0].String()
126 if !strings.HasSuffix(outputPath, "/main_test") {
127 t.Errorf("expected test output file to be 'main_test', but was '%s'", outputPath)
184 outputPath := outputFiles[0].String()
186 if !strings.HasSuffix(outputPath, "/main_test") {
187 t.Errorf("expected test output file to be 'main_test', but was '%s'", outputPath)
/build/soong/android/
Dall_teams.go42 outputPath OutputPath member
127 t.outputPath = PathForOutput(ctx, ownershipDirectory, allTeamsFile)
133 WriteFileRuleVerbatim(ctx, t.outputPath, string(data))
134 ctx.Phony("all_teams", t.outputPath)
138 ctx.DistForGoal("all_teams", t.outputPath)
Dsoong_config_modules_test.go39 outputPath ModuleOutPath member
55 t.outputPath = PathForModuleOut(ctx, "test")
/build/soong/cc/
Dccdeps.go41 outputPath android.Path member
111 c.outputPath = ccfpath
121 if c.outputPath == nil {
125 ctx.DistForGoal("general-tests", c.outputPath)
Dcc_test.go319 outputPath := outputFiles[0].String()
322 if !strings.HasSuffix(outputPath, "/main_test") {
323 t.Errorf("expected test output file to be 'main_test', but was '%s'", outputPath)
372 outputPath := outputFiles[0].String()
374 if !strings.HasSuffix(outputPath, "/main_test") {
375 t.Errorf("expected test output file to be 'main_test', but was '%s'", outputPath)
1423 outputPath := outputFiles[0].String()
1425 if !strings.HasSuffix(outputPath, "/main_test") {
1426 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/filesystem/
Dfsverity_metadata.go35 func (f *filesystem) writeManifestGeneratorListFile(ctx android.ModuleContext, outputPath android.O…
41 android.WriteFileRuleVerbatim(ctx, outputPath, buf.String())
/build/soong/bazel/
Daquery.go666 outputPath, exists := a.artifactIdToPath[artifactId(outputId)]
671 ext := filepath.Ext(outputPath)
674 err = fmt.Errorf("found multiple potential depfiles %q, %q", *depfile, outputPath)
677 depfile = &outputPath
680 outputPaths = append(outputPaths, outputPath)
/build/soong/mk2rbc/mk2rbc/
Dmk2rbc.go346 outputPath := outputFilePath(mkFile)
349 fmt.Printf("==== %s ====\n", outputPath)
354 if err := maybeBackup(outputPath); err != nil {
358 if err := writeGenerated(outputPath, script); err != nil {
/build/soong/python/
Dpython.go751 func checkForDuplicateOutputPath(ctx android.ModuleContext, m map[string]string, outputPath, srcPat… argument
752 if oldSrcPath, found := m[outputPath]; found {
756 outputPath, curModule, oldSrcPath, otherModule, srcPath)
759 m[outputPath] = srcPath
/build/soong/cmd/merge_zips/
Dmerge_zips.go716 outputPath := args[0]
739 outputZip, err := os.Create(outputPath)