/aosp12/build/soong/filesystem/ |
H A D | filesystem.go | 46 output android.OutputPath 161 rootDir := android.PathForModuleGen(ctx, "root").OutputPath 207 zipOut := android.PathForModuleGen(ctx, "root.zip").OutputPath 228 depsZipFile := android.PathForModuleOut(ctx, "deps.zip").OutputPath 240 rootDir := android.PathForModuleOut(ctx, "root").OutputPath 270 return fcBin.OutputPath 324 propFile = android.PathForModuleOut(ctx, "prop").OutputPath 359 rootDir := android.PathForModuleOut(ctx, "root").OutputPath 418 OutputPath() android.Path 427 func (f *filesystem) OutputPath() android.Path { func [all …]
|
H A D | bootimg.go | 37 output android.OutputPath 128 func (b *bootimg) buildBootImage(ctx android.ModuleContext, vendor bool) android.OutputPath { 129 output := android.PathForModuleOut(ctx, "unsigned", b.installFileName()).OutputPath 191 cmd.FlagWithInput(flag, filesystem.OutputPath()) 220 …ootimg) signImage(ctx android.ModuleContext, unsignedImage android.OutputPath) android.OutputPath { argument 223 output := android.PathForModuleOut(ctx, b.installFileName()).OutputPath 235 func (b *bootimg) buildPropFile(ctx android.ModuleContext) (propFile android.OutputPath, toolDeps a… 256 propFile = android.PathForModuleOut(ctx, "prop").OutputPath 279 func (b *bootimg) OutputPath() android.Path { func 285 return b.OutputPath()
|
H A D | logical_partition.go | 35 output android.OutputPath 98 sparseImages := make(map[string]android.OutputPath) 99 sparseImageSizes := make(map[string]android.OutputPath) 181 l.output = android.PathForModuleOut(ctx, l.installFileName()).OutputPath 192 …perties, builder *android.RuleBuilder) (sparseImg android.OutputPath, sizeTxt android.OutputPath) { 195 sparseImg = android.PathForModuleOut(ctx, name+".img").OutputPath 200 sizeTxt = android.PathForModuleOut(ctx, name+"-size.txt").OutputPath 227 func (l *logicalPartition) OutputPath() android.Path { func
|
H A D | system_image.go | 44 func (s *systemImage) buildExtraFiles(ctx android.ModuleContext, root android.OutputPath) android.O… argument 47 return []android.OutputPath{lc} 50 …age) buildLinkerConfigFile(ctx android.ModuleContext, root android.OutputPath) android.OutputPath { argument
|
H A D | vbmeta.go | 36 output android.OutputPath 119 v.output = android.PathForModuleOut(ctx, v.installFileName()).OutputPath 206 func (v *vbmeta) extractPublicKeys(ctx android.ModuleContext) map[string]android.OutputPath { 207 result := make(map[string]android.OutputPath) 227 publicKeyFile := android.PathForModuleOut(ctx, name+".avbpubkey").OutputPath 259 func (v *vbmeta) OutputPath() android.Path { func 264 return v.OutputPath() // vbmeta is always signed
|
/aosp12/build/soong/android/ |
H A D | paths.go | 419 type OutputPaths []OutputPath 1115 type OutputPath struct { struct 1124 func (p OutputPath) withRel(rel string) OutputPath { 1130 func (p OutputPath) WithoutRel() OutputPath { 1143 func (p OutputPath) outputPathRelativeToTop() OutputPath { 1153 var _ Path = OutputPath{} 1154 var _ WritablePath = OutputPath{} 1208 func (p OutputPath) Join(ctx PathContext, paths ...string) OutputPath { 1217 func (p OutputPath) ReplaceExtension(ctx PathContext, ext string) OutputPath { 1227 func (p OutputPath) InSameDir(ctx PathContext, paths ...string) OutputPath { [all …]
|
H A D | csuite_config.go | 33 OutputFilePath OutputPath 37 me.OutputFilePath = PathForModuleOut(ctx, me.BaseModuleName()).OutputPath
|
H A D | makefile_goal.go | 42 outputFilePath OutputPath 73 p.outputFilePath = PathForModuleOut(ctx, filename).OutputPath
|
H A D | bazel_paths.go | 341 OutputPath anonMember 361 outputPath := OutputPath{basePath{"", ""}, 366 OutputPath: outputPath.withRel(validatedExecRootPath),
|
H A D | apex.go | 779 flatListPath OutputPath 780 fullListPath OutputPath 817 d.fullListPath = PathForModuleOut(ctx, "depsinfo", "fulllist.txt").OutputPath 820 d.flatListPath = PathForModuleOut(ctx, "depsinfo", "flatlist.txt").OutputPath
|
/aosp12/build/soong/java/ |
H A D | platform_compat_config.go | 46 func platformCompatConfigPath(ctx android.PathContext) android.OutputPath { 60 configFile android.OutputPath 61 metadataFile android.OutputPath 68 func (p *platformCompatConfig) CompatConfig() android.OutputPath { 83 CompatConfig() android.OutputPath 96 p.configFile = android.PathForModuleOut(ctx, configFileName).OutputPath 97 p.metadataFile = android.PathForModuleOut(ctx, metadataFileName).OutputPath 292 outputFilePath android.OutputPath 299 c.outputFilePath = android.PathForModuleOut(ctx, filename).OutputPath
|
H A D | hiddenapi_singleton.go | 39 flags android.OutputPath 48 index android.OutputPath 56 metadata android.OutputPath 92 stubFlags android.OutputPath
|
H A D | hiddenapi.go | 136 …nAPI) hiddenAPIEncodeDex(ctx android.ModuleContext, dexJar android.OutputPath) android.OutputPath { argument 150 outputDir := android.PathForModuleOut(ctx, "hiddenapi").OutputPath 249 …nput, flagsCSV android.Path, uncompressDex bool, outputDir android.OutputPath) android.OutputPath { argument
|
H A D | sdk.go | 343 func sdkFrameworkAidlPath(ctx android.PathContext) android.OutputPath { 346 }).(android.OutputPath) 349 func nonUpdatableFrameworkAidlPath(ctx android.PathContext) android.OutputPath { 352 }).(android.OutputPath) 401 func ApiFingerprintPath(ctx android.PathContext) android.OutputPath { 404 }).(android.OutputPath)
|
H A D | classpath_fragment.go | 68 outputFilepath android.OutputPath 132 c.outputFilepath = android.PathForModuleOut(ctx, outputFilename).OutputPath 198 ClasspathFragmentProtoOutput android.OutputPath
|
H A D | base.go | 1100 var outputFile android.OutputPath 1112 outputFile = moduleOutPath.OutputPath 1113 } else if outputPath, ok := jars[0].(android.OutputPath); ok { 1125 outputFile = combinedJar.OutputPath 1131 outputFile = combinedJar.OutputPath 1137 jarjarFile := android.PathForModuleOut(ctx, "jarjar", jarName).OutputPath 1188 combinedJar := android.PathForModuleOut(ctx, "withres", jarName).OutputPath 1214 var dexOutputFile android.OutputPath 1316 classes := android.PathForModuleOut(ctx, "javac", jarName).OutputPath 1396 classesJar android.Path, jarName string, specs string) android.OutputPath { [all …]
|
H A D | dex.go | 271 classesJar android.Path, jarName string) android.OutputPath { 274 javalibJar := android.PathForModuleOut(ctx, "dex", jarName).OutputPath 337 alignedJavalibJar := android.PathForModuleOut(ctx, "aligned", jarName).OutputPath
|
H A D | app_import.go | 176 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) { argument 213 ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) { argument 264 a.uncompressEmbeddedJniLibs(ctx, srcApk, jnisUncompressed.OutputPath) 295 a.uncompressDex(ctx, jnisUncompressed, dexUncompressed.OutputPath)
|
H A D | platform_bootclasspath.go | 53 hiddenAPIFlagsCSV android.OutputPath 56 hiddenAPIIndexCSV android.OutputPath 59 hiddenAPIMetadataCSV android.OutputPath
|
/aosp12/build/soong/bp2build/ |
H A D | bp2build.go | 42 …unc getOrCreateOutputDir(outputDir android.OutputPath, ctx android.PathContext, dir string) androi… argument 49 func writeFiles(ctx android.PathContext, outputDir android.OutputPath, files []BazelFile) { argument 58 func writeFile(ctx android.PathContext, pathToFile android.OutputPath, content string) error { argument
|
/aosp12/build/soong/kernel/ |
H A D | prebuilt_kernel_modules.go | 104 dir := android.PathForModuleOut(ctx, "stripped").OutputPath 124 modulesLoad android.OutputPath 125 modulesDep android.OutputPath 126 modulesSoftdep android.OutputPath 127 modulesAlias android.OutputPath 131 baseDir := android.PathForModuleOut(ctx, "depmod").OutputPath
|
/aosp12/build/soong/linkerconfig/ |
H A D | linkerconfig.go | 57 outputFilePath android.OutputPath 72 func (l *linkerConfig) OutputFile() android.OutputPath { 89 output := android.PathForModuleOut(ctx, "linker.config.pb").OutputPath 104 input android.Path, otherModules []android.Module, output android.OutputPath) { argument
|
/aosp12/build/soong/cc/ |
H A D | util.go | 129 func copyFileRule(ctx android.SingletonContext, path android.Path, out string) android.OutputPath { 143 …bineNoticesRule(ctx android.SingletonContext, paths android.Paths, out string) android.OutputPath { 154 func writeStringToFileRule(ctx android.SingletonContext, content, out string) android.OutputPath { 165 …apListFileRule(ctx android.SingletonContext, m map[string]string, path string) android.OutputPath {
|
/aosp12/system/sepolicy/build/soong/ |
H A D | policy.go | 145 func (c *policyConf) transformPolicyToConf(ctx android.ModuleContext) android.OutputPath { 146 conf := android.PathForModuleOut(ctx, "conf").OutputPath 265 … (c *policyCil) compileConfToCil(ctx android.ModuleContext, conf android.Path) android.OutputPath { 266 cil := android.PathForModuleOut(ctx, c.stem()).OutputPath
|
/aosp12/build/soong/etc/ |
H A D | prebuilt_etc.go | 124 OutputFile() android.OutputPath 135 outputFilePath android.OutputPath 244 func (p *PrebuiltEtc) OutputFile() android.OutputPath { 297 p.outputFilePath = android.PathForModuleOut(ctx, filename).OutputPath
|