• Home
  • Raw
  • Download

Lines Matching refs:libraryDecorator

250 type libraryDecorator struct {  struct
311 func (library *libraryDecorator) linkerProps() []interface{} { argument
321 func (library *libraryDecorator) linkerFlags(ctx ModuleContext, flags Flags) Flags { argument
370 func (library *libraryDecorator) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags… argument
422 func (library *libraryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects { argument
490 func (library *libraryDecorator) getLibName(ctx ModuleContext) string { argument
514 func (library *libraryDecorator) linkerInit(ctx BaseModuleContext) { argument
538 func (library *libraryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps { argument
544 func (library *libraryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { argument
608 func (library *libraryDecorator) linkStatic(ctx ModuleContext, argument
642 func (library *libraryDecorator) linkShared(ctx ModuleContext, argument
750 func (library *libraryDecorator) unstrippedOutputFilePath() android.Path { argument
754 func (library *libraryDecorator) nativeCoverage() bool { argument
782 func (library *libraryDecorator) linkSAbiDumpFiles(ctx ModuleContext, objs Objects, fileName string… argument
811 func (library *libraryDecorator) link(ctx ModuleContext, argument
886 func (library *libraryDecorator) buildStatic() bool { argument
890 func (library *libraryDecorator) buildShared() bool { argument
894 func (library *libraryDecorator) getWholeStaticMissingDeps() []string { argument
898 func (library *libraryDecorator) objs() Objects { argument
902 func (library *libraryDecorator) reuseObjs() (Objects, []string, android.Paths) { argument
906 func (library *libraryDecorator) toc() android.OptionalPath { argument
910 func (library *libraryDecorator) installSymlinkToRuntimeApex(ctx ModuleContext, file android.Path) { argument
918 func (library *libraryDecorator) install(ctx ModuleContext, file android.Path) { argument
969 func (library *libraryDecorator) static() bool { argument
973 func (library *libraryDecorator) shared() bool { argument
977 func (library *libraryDecorator) header() bool { argument
981 func (library *libraryDecorator) setStatic() { argument
986 func (library *libraryDecorator) setShared() { argument
991 func (library *libraryDecorator) BuildOnlyStatic() { argument
995 func (library *libraryDecorator) BuildOnlyShared() { argument
999 func (library *libraryDecorator) HeaderOnly() { argument
1004 func (library *libraryDecorator) buildStubs() bool { argument
1008 func (library *libraryDecorator) stubsVersion() string { argument
1031 func NewLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) {
1034 library := &libraryDecorator{
1055 if staticCompiler, ok := static.compiler.(*libraryDecorator); ok {
1056 sharedCompiler := shared.compiler.(*libraryDecorator)
1150 if library, ok := m.linker.(*libraryDecorator); ok && library.buildShared() &&
1177 l := m.(*Module).linker.(*libraryDecorator)