Lines Matching defs:baseModuleContext
1383 type baseModuleContext struct { struct
1384 bp blueprint.BaseModuleContext
1385 earlyModuleContext
1386 os OsType
1387 target Target
1388 multiTargets []Target
1389 targetPrimary bool
1390 debug bool
1392 walkPath []Module
1393 tagPath []blueprint.DependencyTag
1395 strictVisitDeps bool // If true, enforce that all dependencies are enabled
1398 func (b *baseModuleContext) OtherModuleName(m blueprint.Module) string {
1401 … (b *baseModuleContext) OtherModuleDir(m blueprint.Module) string { return b.bp.OtherModuleDir(m) }
1402 func (b *baseModuleContext) OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{}) {
1405 func (b *baseModuleContext) OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag {
1408 … (b *baseModuleContext) OtherModuleExists(name string) bool { return b.bp.OtherModuleExists(name) }
1409 func (b *baseModuleContext) OtherModuleType(m blueprint.Module) string {
1413 …baseModuleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module {
1419 baseModuleContext anonMember
1552 func (b *baseModuleContext) AddMissingDependencies(deps []string) {
1560 func (b *baseModuleContext) validateAndroidModule(module blueprint.Module, strict bool) Module {
1583 …DepInternal(name string, tag blueprint.DependencyTag) (blueprint.Module, blueprint.DependencyTag) {
1607 func (b *baseModuleContext) GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module {
1624 func (b *baseModuleContext) GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag) {
1628 func (b *baseModuleContext) VisitDirectDepsBlueprint(visit func(blueprint.Module)) {
1632 func (b *baseModuleContext) VisitDirectDeps(visit func(Module)) {
1640 …nc (b *baseModuleContext) VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module)) {
1650 func (b *baseModuleContext) VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) {
1666 func (b *baseModuleContext) VisitDepsDepthFirst(visit func(Module)) {
1674 func (b *baseModuleContext) VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module)) {
1690 func (b *baseModuleContext) WalkDepsBlueprint(visit func(blueprint.Module, blueprint.Module) bool) {
1694 func (b *baseModuleContext) WalkDeps(visit func(Module, Module) bool) {
1715 func (b *baseModuleContext) GetWalkPath() []Module {
1719 func (b *baseModuleContext) GetTagPath() []blueprint.DependencyTag {
1741 func (b *baseModuleContext) Target() Target {
1745 func (b *baseModuleContext) TargetPrimary() bool {
1749 func (b *baseModuleContext) MultiTargets() []Target {
1753 func (b *baseModuleContext) Arch() Arch {
1757 func (b *baseModuleContext) Os() OsType {
1761 func (b *baseModuleContext) Host() bool {
1765 func (b *baseModuleContext) Device() bool {
1769 func (b *baseModuleContext) Darwin() bool {
1773 func (b *baseModuleContext) Fuchsia() bool {
1777 func (b *baseModuleContext) Windows() bool {
1781 func (b *baseModuleContext) Debug() bool {
1785 func (b *baseModuleContext) PrimaryArch() bool {