Home
last modified time | relevance | path

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

/build/soong/java/
Dhiddenapi_singleton.go183 outputPath := hiddenAPISingletonPaths(ctx).flags
188 Output: outputPath,
194 outputPath := hiddenAPISingletonPaths(ctx).index
199 Output: outputPath,
217 func commitChangeForRestat(rule *android.RuleBuilder, tempPath, outputPath android.WritablePath) {
223 Text("cmp -s").Input(tempPath).Output(outputPath).Text(";").
227 Text("mv").Input(tempPath).Output(outputPath).Text(";").
Djdeps.go37 outputPath android.Path member
104 j.outputPath = jfpath
114 if j.outputPath == nil {
118 ctx.DistForGoal("general-tests", j.outputPath)
Dapp_import.go176 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
182 Output: outputPath,
192 FlagWithOutput("-o ", outputPath).
194 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
213 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
219 FlagWithOutput("-o ", outputPath).
221 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
Dlint.go595 zip := func(outputPath android.WritablePath, get func(*lintOutputs) android.Path) {
604 lintZip(ctx, paths, outputPath)
640 func lintZip(ctx android.BuilderContext, paths android.Paths, outputPath android.WritablePath) {
650 FlagWithOutput("-o ", outputPath).
652 FlagWithRspFileInputList("-r ", outputPath.ReplaceExtension(ctx, "rsp"), paths)
654 rule.Build(outputPath.Base(), outputPath.Base())
Dhiddenapi_modular.go300 …eHiddenAPIStubFlagsFile(ctx android.BuilderContext, name, desc string, outputPath android.Writable…
304 tempPath := tempPathForRestat(ctx, outputPath)
346 …validFile := buildRuleValidateOverlappingCsvFiles(ctx, name, desc, outputPath, moduleStubFlagsPath…
355 commitChangeForRestat(rule, tempPath, outputPath)
858 outputPath android.WritablePath, baseFlagsPath android.Path, annotationFlagPaths android.Paths,
862 tempPath := tempPathForRestat(ctx, outputPath)
884 commitChangeForRestat(rule, tempPath, outputPath)
889 validFile := buildRuleValidateOverlappingCsvFiles(ctx, name, desc, outputPath, allFlagsPaths)
Dplatform_compat_config.go259 outputPath := platformCompatConfigPath(ctx)
264 FlagWithOutput("--merged-config ", outputPath)
268 p.metadata = outputPath
Dhiddenapi.go169 …xt, desc string, classesJars android.Paths, stubFlagsCSV android.Path, outputPath android.Writable…
174 Output: outputPath,
Ddexpreopt_bootjars.go578 outputPath := outputDir.Join(ctx, image.stem+".oat")
579 oatLocation := dexpreopt.PathToLocation(outputPath, arch)
580 imagePath := outputPath.ReplaceExtension(ctx, "art")
605 invocationPath := outputPath.ReplaceExtension(ctx, "invocation")
653 FlagWithArg("--oat-file=", outputPath.String()).
Dplatform_bootclasspath.go370 …eCSV(ctx android.ModuleContext, desc string, inputPaths android.Paths, outputPath android.Writable…
375 FlagWithOutput("--output=", outputPath).
Dbase.go1113 } else if outputPath, ok := jars[0].(android.OutputPath); ok {
1115 outputFile = outputPath
/build/soong/bazel/
Daquery.go139 outputPath, exists := artifactIdToPath[outputId]
143 ext := filepath.Ext(outputPath)
146 return nil, fmt.Errorf("found multiple potential depfiles %q, %q", *depfile, outputPath)
148 depfile = &outputPath
151 outputPaths = append(outputPaths, 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)
Dlibrary_headers.go70 outputPath := android.PathForBazelOut(ctx, outputPaths[0])
71 h.module.outputFile = android.OptionalPathForPath(outputPath)
Dcc_test.go820 outputPath := outputFiles[0].String()
823 if !strings.HasSuffix(outputPath, "/main_test") {
824 t.Errorf("expected test output file to be 'main_test', but was '%s'", outputPath)
868 outputPath := outputFiles[0].String()
870 if !strings.HasSuffix(outputPath, "/main_test") {
871 t.Errorf("expected test output file to be 'main_test', but was '%s'", outputPath)
3224 outputPath := outputFiles[0].String()
3226 if !strings.HasSuffix(outputPath, "/main_test") {
3227 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/python/
Dpython.go702 func checkForDuplicateOutputPath(ctx android.ModuleContext, m map[string]string, outputPath, srcPat… argument
703 if oldSrcPath, found := m[outputPath]; found {
707 outputPath, curModule, oldSrcPath, otherModule, srcPath)
710 m[outputPath] = srcPath
/build/soong/android/
Dbazel_paths.go361 outputPath := OutputPath{basePath{"", ""},
366 OutputPath: outputPath.withRel(validatedExecRootPath),
Dbazel_handler.go740 for _, outputPath := range buildStatement.OutputPaths {
741 cmd.ImplicitOutput(PathForBazelOut(ctx, outputPath))
/build/soong/cmd/merge_zips/
Dmerge_zips.go691 outputPath := args[0]
714 outputZip, err := os.Create(outputPath)