Home
last modified time | relevance | path

Searched refs:baseName (Results 1 – 14 of 14) sorted by relevance

/build/soong/snapshot/
Dutil.go47 func zipSnapshot(ctx android.SingletonContext, dir string, baseName string, snapshotOutputs android…
49 ctx, dir, baseName+".zip")
53 ctx, dir, baseName+"_list.rsp")
61 zipRule.Build(zipPath.String(), baseName+" snapshot "+zipPath.String())
/build/soong/mk2rbc/
Dmk2rbc.go49 baseName = "rblf" const
54 cfnGetCfg = baseName + ".cfg"
55 cfnMain = baseName + ".product_configuration"
56 cfnBoardMain = baseName + ".board_configuration"
57 cfnPrintVars = baseName + ".printvars"
58 cfnInherit = baseName + ".inherit"
59 cfnSetListDefault = baseName + ".setdefault"
70 …"abspath": &simpleCallParser{name: baseName + ".abspath", returnType:…
71 …"add-product-dex-preopt-module-config": &simpleCallParser{name: baseName + ".add_product_dex_preop…
72 …"add_soong_config_namespace": &simpleCallParser{name: baseName + ".soong_config_namespac…
[all …]
Dnode.go104 …gctx.writef("%s.mkwarning(%q, %q)", baseName, i.location, "Please avoid starting an include path w…
/build/soong/cc/
Dgen.go117 baseName := strings.TrimSuffix(aidlFile.Base(), aidlFile.Ext())
118 shortName := baseName
122 if len(baseName) >= 2 && baseName[0] == 'I' &&
123 strings.ToUpper(baseName)[1] == baseName[1] {
124 shortName = strings.TrimPrefix(baseName, "I")
128 cppFile = outDir.Join(ctx, aidlPackage, baseName+".cpp")
129 depFile := outDir.Join(ctx, aidlPackage, baseName+".cpp.d")
130 headerI := outDir.Join(ctx, aidlPackage, baseName+".h")
Dbuilder.go919 baseName string, exportedIncludeDirs []string, symbolFile android.OptionalPath,
923 outputFile := android.PathForModuleOut(ctx, baseName+".lsdump")
973 baseName, nameExt string, extraFlags []string, errorMessage string) android.Path { argument
977 outputFile = android.PathForModuleOut(ctx, baseName+"."+nameExt+".abidiff")
979 outputFile = android.PathForModuleOut(ctx, baseName+".abidiff")
981 libName := strings.TrimSuffix(baseName, filepath.Ext(baseName))
1141 inputs Objects, baseName string) android.OptionalPath {
1144 outputFile := android.PathForModuleOut(ctx, baseName+".zip")
Dmakevars.go114 baseName := ccModule.BaseModuleName()
116 if !inList(baseName, exportedVendorPublicLibraries) {
117 exportedVendorPublicLibraries = append(exportedVendorPublicLibraries, baseName)
Dlibrary.go1332 baseName, nameExt string, isLlndk, allowExtensions bool,
1355 baseName, nameExt, extraFlags, errorMessage))
1360 baseName, nameExt string, isLlndk bool, sourceVersion, prevDumpDir string) {
1364 library.sourceAbiDiff(ctx, sourceDump, referenceDump, baseName, nameExt,
1370 baseName, nameExt string, isLlndk bool, lsdumpTagName string) {
1372 libName := strings.TrimSuffix(baseName, filepath.Ext(baseName))
1380 library.sourceAbiDiff(ctx, sourceDump, referenceDump, baseName, nameExt,
1386 baseName, nameExt string, refDumpDir string, lsdumpTagName string) {
1388 libName := strings.TrimSuffix(baseName, filepath.Ext(baseName))
1401 library.sourceAbiDiff(ctx, sourceDump, referenceDump, baseName, nameExt,
Dlibrary_stub.go486 func BuildApiVariantName(baseName string, variant string, version string) string {
487 names := []string{baseName, variant}
Dcc.go3508 baseName := ccDepModule.BaseModuleName()
3510 return baseName + snapshotPrebuilt.SnapshotAndroidMkSuffix()
/build/soong/java/
Dsdk_library.go256 func (scope *apiScope) apiLibraryModuleName(baseName string) string {
257 return scope.stubsLibraryModuleName(baseName) + ".from-text"
260 func (scope *apiScope) sourceStubLibraryModuleName(baseName string) string {
261 return scope.stubsLibraryModuleName(baseName) + ".from-source"
264 func (scope *apiScope) exportableSourceStubsLibraryModuleName(baseName string) string {
265 return scope.exportableStubsLibraryModuleName(baseName) + ".from-source"
268 func (scope *apiScope) stubsLibraryModuleName(baseName string) string {
269 return baseName + scope.stubsLibraryModuleNameSuffix()
272 func (scope *apiScope) exportableStubsLibraryModuleName(baseName string) string {
273 return baseName + scope.exportableStubsLibraryModuleNameSuffix()
[all …]
/build/soong/ui/logger/
Dlogger.go81 func fileRotation(from, baseName, ext string, cur, max int) error { argument
82 newName := baseName + "." + strconv.Itoa(cur) + ext
86 fileRotation(newName, baseName, ext, cur+1, max)
/build/soong/finder/fs/
Dfs.go468 parentPath, baseName := pathSplit(path)
473 subdir, subdirExists := dir.subdirs[baseName]
477 file, fileExists := dir.files[baseName]
481 link, linkExists := dir.symlinks[baseName]
707 baseName := filepath.Base(filePath)
708 _, exists := parentDir.files[baseName]
711 parentDir.files[baseName] = m.newFile()
713 readErr := parentDir.files[baseName].readErr
722 file := parentDir.files[baseName]
/build/soong/cmd/merge_zips/
Dmerge_zips.go365 baseName := filepath.Base(file.Name)
366 if baseName == "__init__.py" || baseName == "__init__.pyc" {
/build/soong/rust/
Drust.go1114 baseName := rustDep.BaseModuleName()
1115 return baseName + snapshotPrebuilt.SnapshotAndroidMkSuffix() + rustDep.AndroidMkSuffix()