Searched refs:baseName (Results 1 – 4 of 4) sorted by relevance
/build/soong/cc/ |
D | builder.go | 678 baseName, exportedHeaderFlags string, symbolFile android.OptionalPath, argument 681 outputFile := android.PathForModuleOut(ctx, baseName+".lsdump") 714 func UnzipRefDump(ctx android.ModuleContext, zippedRefDump android.Path, baseName string) android.P… 715 outputFile := android.PathForModuleOut(ctx, baseName+"_ref.lsdump") 726 baseName, exportedHeaderFlags string, isLlndk, isVndkExt bool) android.OptionalPath { argument 728 outputFile := android.PathForModuleOut(ctx, baseName+".abidiff") 729 libName := strings.TrimSuffix(baseName, filepath.Ext(baseName)) 871 inputs Objects, flags builderFlags, baseName string) android.OptionalPath { 874 outputFile := android.PathForModuleOut(ctx, baseName+".gcnodir")
|
D | makevars.go | 106 baseName := ccModule.BaseModuleName() 107 if inList(baseName, vendorPublicLibraries) && module.ExportedToMake() { 108 if !inList(baseName, exportedVendorPublicLibraries) { 109 exportedVendorPublicLibraries = append(exportedVendorPublicLibraries, baseName)
|
/build/soong/ui/logger/ |
D | logger.go | 80 func fileRotation(from, baseName, ext string, cur, max int) error { argument 81 newName := baseName + "." + strconv.Itoa(cur) + ext 85 fileRotation(newName, baseName, ext, cur+1, max)
|
/build/soong/finder/fs/ |
D | fs.go | 463 parentPath, baseName := pathSplit(path) 468 subdir, subdirExists := dir.subdirs[baseName] 472 file, fileExists := dir.files[baseName] 476 link, linkExists := dir.symlinks[baseName] 692 baseName := filepath.Base(filePath) 693 _, exists := parentDir.files[baseName] 696 parentDir.files[baseName] = m.newFile() 698 readErr := parentDir.files[baseName].readErr 707 file := parentDir.files[baseName]
|