Home
last modified time | relevance | path

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

/build/soong/partner/bpfix/extensions/
Dheaders.go26 libName string member
34 libName: "my_header_lib",
64 if lib.libName != "" {
65 addLibrary(mod, lib.libType, lib.libName)
86 func addLibrary(mod *parser.Module, libType string, libName string) {
96 if stringValue, ok := v.(*parser.String); ok && stringValue.Value == libName {
102 lib.Value = libName
/build/soong/cc/
Dvndk_prebuilt.go110 p.libraryDecorator.libName = strings.TrimSuffix(ctx.ModuleName(), p.NameSuffix())
144 libName := in.Base()
146 stripped := android.PathForModuleOut(ctx, "stripped", libName)
153 tocFile := android.PathForModuleOut(ctx, libName+".toc")
Dprebuilt.go124 libName := p.libraryDecorator.getLibName(ctx) + flags.Toolchain.ShlibSuffix()
125 outputFile := android.PathForModuleOut(ctx, libName)
129 stripped := android.PathForModuleOut(ctx, "stripped", libName)
136 tocFile := android.PathForModuleOut(ctx, libName+".toc")
Dndk_prebuilt.go171 libName := strings.TrimPrefix(ctx.ModuleName(), "ndk_")
178 return libDir.Join(ctx, libName+libExt)
Dcc.go2556 libName := strings.TrimSuffix(depName, llndkLibrarySuffix)
2557 libName = strings.TrimSuffix(libName, vendorPublicLibrarySuffix)
2558 libName = strings.TrimPrefix(libName, "prebuilt_")
2559 return libName
2563 libName := baseLibName(depName)
2564 isLLndk := isLlndkLibrary(libName, ctx.Config())
2565 isVendorPublicLib := inList(libName, *vendorPublicLibraries)
2588 return libName
2592 return libName + c.getNameSuffixWithVndkVersion(ctx)
2594 return libName + vendorPublicLibrarySuffix
[all …]
Dvendor_public_library.go119 stub.libraryDecorator.libName = strings.TrimSuffix(ctx.ModuleName(), vendorPublicLibrarySuffix)
Dllndk_library.go110 stub.libraryDecorator.libName = strings.TrimSuffix(ctx.ModuleName(),
Dvendor_snapshot.go144 p.libraryDecorator.libName = strings.TrimSuffix(ctx.ModuleName(), p.NameSuffix())
179 libName := in.Base()
184 tocFile := android.PathForModuleOut(ctx, libName+".toc")
Dlibrary.go351 libName string member
512 libName := library.getLibName(ctx)
525 "-install_name @rpath/"+libName+flags.Toolchain.ShlibSuffix(),
535 f = append(f, "-Wl,-soname,"+libName+flags.Toolchain.ShlibSuffix())
708 name := library.libName
Dndk_library.go336 stub.libraryDecorator.libName = ctx.baseModuleName()
Dbuilder.go809 libName := strings.TrimSuffix(baseName, filepath.Ext(baseName))
846 "libName": libName,
/build/soong/rust/
Drust_test.go157 libName := linkPathFromFilePath(barPath)
160 if libName != expectedResult {
161 …("libNameFromFilePath returned the wrong name; expected '%#v', got '%#v'", expectedResult, libName)
Drust.go832 libName := libNameFromFilePath(linkFile.Path())
833 depFlag := "-l" + libName
842 depFlag = "-lstatic=" + libName
854 depFlag = "-ldylib=" + libName
949 libName := strings.TrimSuffix(filepath.Base(), filepath.Ext())
950 if strings.HasPrefix(libName, "lib") {
951 libName = libName[3:]
953 return libName
/build/soong/java/
Dsdk_library.go2111 libName := proptools.String(module.properties.Lib_name)
2112 xmlContent := fmt.Sprintf(permissionsTemplate, libName, module.implPath())
2114 module.outputFilePath = android.PathForModuleOut(ctx, libName+".xml").OutputPath