• Home
  • Raw
  • Download

Lines Matching refs:Module

129 type Module struct {  struct
173 func newModule(hod android.HostOrDeviceSupported, multilib android.Multilib) *Module {
174 return &Module{
205 func (p *Module) getSrcsPathMappings() []pathMapping { argument
210 func (p *Module) getDataPathMappings() []pathMapping { argument
215 func (p *Module) getSrcsZip() android.Path { argument
219 var _ pythonDependency = (*Module)(nil)
221 var _ android.AndroidMkEntriesProvider = (*Module)(nil)
223 func (p *Module) init(additionalProps ...interface{}) android.Module { argument
277 if base, ok := mctx.Module().(*Module); ok {
299 modules[i].(*Module).properties.Actual_version = v
301 …err := proptools.AppendMatchingProperties([]interface{}{&modules[i].(*Module).properties}, &versio…
312 func (p *Module) HostToolPath() android.OptionalPath { argument
323 func (p *Module) OutputFiles(tag string) (android.Paths, error) { argument
335 func (p *Module) isEmbeddedLauncherEnabled() bool { argument
349 func (p *Module) anySrcHasExt(ctx android.BottomUpMutatorContext, ext string) bool { argument
357 func (p *Module) DepsMutator(ctx android.BottomUpMutatorContext) { argument
427 func (p *Module) GenerateAndroidBuildActions(ctx android.ModuleContext) { argument
461 func (p *Module) generatePythonBuildActions(ctx android.ModuleContext) { argument
520 func (p *Module) genModulePathMappings(ctx android.ModuleContext, pkgPath string, argument
555 func (p *Module) createSrcsZip(ctx android.ModuleContext, pkgPath string) android.Path { argument
637 func isPythonLibModule(module blueprint.Module) bool { argument
638 if m, ok := module.(*Module); ok {
650 func (p *Module) collectPathsFromTransitiveDeps(ctx android.ModuleContext) { argument
662 seen := make(map[android.Module]bool)
665 ctx.WalkDeps(func(child, parent android.Module) bool {
716 func (p *Module) InstallInData() bool { argument