Searched refs:libName (Results 1 – 14 of 14) sorted by relevance
/build/soong/partner/bpfix/extensions/ |
D | headers.go | 26 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/ |
D | vndk_prebuilt.go | 110 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")
|
D | prebuilt.go | 124 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")
|
D | ndk_prebuilt.go | 171 libName := strings.TrimPrefix(ctx.ModuleName(), "ndk_") 178 return libDir.Join(ctx, libName+libExt)
|
D | cc.go | 2556 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 …]
|
D | vendor_public_library.go | 119 stub.libraryDecorator.libName = strings.TrimSuffix(ctx.ModuleName(), vendorPublicLibrarySuffix)
|
D | llndk_library.go | 110 stub.libraryDecorator.libName = strings.TrimSuffix(ctx.ModuleName(),
|
D | vendor_snapshot.go | 144 p.libraryDecorator.libName = strings.TrimSuffix(ctx.ModuleName(), p.NameSuffix()) 179 libName := in.Base() 184 tocFile := android.PathForModuleOut(ctx, libName+".toc")
|
D | library.go | 351 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
|
D | ndk_library.go | 336 stub.libraryDecorator.libName = ctx.baseModuleName()
|
D | builder.go | 809 libName := strings.TrimSuffix(baseName, filepath.Ext(baseName)) 846 "libName": libName,
|
/build/soong/rust/ |
D | rust_test.go | 157 libName := linkPathFromFilePath(barPath) 160 if libName != expectedResult { 161 …("libNameFromFilePath returned the wrong name; expected '%#v', got '%#v'", expectedResult, libName)
|
D | rust.go | 832 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/ |
D | sdk_library.go | 2111 libName := proptools.String(module.properties.Lib_name) 2112 xmlContent := fmt.Sprintf(permissionsTemplate, libName, module.implPath()) 2114 module.outputFilePath = android.PathForModuleOut(ctx, libName+".xml").OutputPath
|