Home
last modified time | relevance | path

Searched refs:ModuleFactory (Results 1 – 21 of 21) sorted by relevance

/build/soong/android/
Dregister.go53 factory ModuleFactory
106 type ModuleFactory func() Module type
110 func ModuleFactoryAdaptor(factory ModuleFactory) blueprint.ModuleFactory { argument
131 func RegisterModuleType(name string, factory ModuleFactory) { argument
230 func ModuleTypeFactories() map[string]ModuleFactory {
231 ret := make(map[string]ModuleFactory)
247 RegisterModuleType(name string, factory ModuleFactory) argument
280 moduleTypes: make(map[string]ModuleFactory),
289 moduleTypes map[string]ModuleFactory
295 func (ctx *initRegistrationContext) RegisterModuleType(name string, factory ModuleFactory) {
Dsoong_config_modules.go361 …ngConfigModuleTypeDefinition(ctx LoadHookContext, from string) map[string]blueprint.ModuleFactory {
380 return (map[string]blueprint.ModuleFactory)(nil)
387 return (map[string]blueprint.ModuleFactory)(nil)
392 factories := make(map[string]blueprint.ModuleFactory)
405 return (map[string]blueprint.ModuleFactory)(nil)
409 }).(map[string]blueprint.ModuleFactory)
415 func soongConfigModuleFactory(factory blueprint.ModuleFactory, argument
416 moduleType *soongconfig.ModuleType) blueprint.ModuleFactory {
Dhooks.go36 CreateModule(ModuleFactory, ...interface{}) Module argument
38 registerScopedModuleType(name string, factory blueprint.ModuleFactory) argument
39 moduleFactories() map[string]blueprint.ModuleFactory
64 func (l *loadHookContext) moduleFactories() map[string]blueprint.ModuleFactory {
96 func (l *loadHookContext) CreateModule(factory ModuleFactory, props ...interface{}) Module {
117 func (l *loadHookContext) registerScopedModuleType(name string, factory blueprint.ModuleFactory) {
Dmutator.go274 CreateModule(ModuleFactory, ...interface{}) Module argument
280 …CreateBazelTargetModule(ModuleFactory, string, bazel.BazelTargetModuleProperties, interface{}) Baz… argument
526 factory ModuleFactory,
591 func (t *topDownMutatorContext) CreateModule(factory ModuleFactory, props ...interface{}) Module {
612 func (t *topDownMutatorContext) createModuleWithoutInheritance(factory ModuleFactory, props ...inte…
Dsingleton_module.go93 …duleFactoryAdaptor(name string, factory SingletonModuleFactory) (SingletonFactory, ModuleFactory) {
Ddefaults.go106 CreateModule(ModuleFactory, ...interface{}) Module argument
Dpackaging_test.go100 var moduleFactory ModuleFactory
Dtesting.go477 func (ctx *TestContext) RegisterModuleType(name string, factory ModuleFactory) {
/build/soong/bp2build/
Dbzl_conversion.go59 func CreateRuleShims(moduleTypeFactories map[string]android.ModuleFactory) map[string]RuleShim { argument
102 func generateRules(moduleTypeFactories map[string]android.ModuleFactory) map[string][]rule { argument
224 func getAttributes(factory android.ModuleFactory) string { argument
Dbuild_conversion_test.go541 moduleTypeUnderTestFactory android.ModuleFactory
975 moduleTypesUnderTest map[string]android.ModuleFactory
982 moduleTypesUnderTest: map[string]android.ModuleFactory{
1010 moduleTypesUnderTest: map[string]android.ModuleFactory{
1047 moduleTypesUnderTest: map[string]android.ModuleFactory{
1080 moduleTypesUnderTest: map[string]android.ModuleFactory{
1169 moduleTypeUnderTestFactory android.ModuleFactory
1247 moduleTypeUnderTestFactory android.ModuleFactory
1366 moduleTypeUnderTestFactory android.ModuleFactory
1520 moduleTypeUnderTestFactory android.ModuleFactory
Dcc_object_conversion_test.go29 moduleTypeUnderTestFactory android.ModuleFactory
257 moduleTypeUnderTestFactory android.ModuleFactory
Dpython_binary_conversion_test.go15 moduleTypeUnderTestFactory android.ModuleFactory
Dsh_conversion_test.go56 moduleTypeUnderTestFactory android.ModuleFactory
Dbzl_conversion_test.go51 moduleTypeFactories := map[string]android.ModuleFactory{
Dcc_library_headers_conversion_test.go74 moduleTypeUnderTestFactory android.ModuleFactory
Dcc_library_conversion_test.go49 moduleTypeUnderTestFactory android.ModuleFactory
Dcc_library_static_conversion_test.go74 moduleTypeUnderTestFactory android.ModuleFactory
/build/blueprint/
Dmodule_ctx.go190 ModuleFactories() map[string]ModuleFactory
728 func (m *baseModuleContext) ModuleFactories() map[string]ModuleFactory {
729 ret := make(map[string]ModuleFactory)
840 CreateModule(ModuleFactory, ...interface{}) Module argument
1211 func (mctx *mutatorContext) CreateModule(factory ModuleFactory, props ...interface{}) Module {
1271 CreateModule(ModuleFactory, ...interface{}) Module argument
1275 RegisterScopedModuleType(name string, factory ModuleFactory) argument
1278 func (l *loadHookContext) CreateModule(factory ModuleFactory, props ...interface{}) Module { argument
1298 func (l *loadHookContext) RegisterScopedModuleType(name string, factory ModuleFactory) { argument
1308 (*l.scopedModuleFactories) = make(map[string]ModuleFactory)
[all …]
Dcontext.go75 moduleFactories map[string]ModuleFactory
244 factory ModuleFactory
385 moduleFactories: make(map[string]ModuleFactory),
413 type ModuleFactory func() (m Module, propertyStructs []interface{}) type
476 func (c *Context) RegisterModuleType(name string, factory ModuleFactory) {
768 var scopedModuleFactories map[string]ModuleFactory
1448 func newModule(factory ModuleFactory) *moduleInfo { argument
1462 …relBlueprintsFile string, moduleFactories, scopedModuleFactories map[string]ModuleFactory, ignoreU… argument
3402 func (c *Context) ModuleTypeFactories() map[string]ModuleFactory {
3403 ret := make(map[string]ModuleFactory)
Dmodule_ctx_test.go464 factories := map[string]ModuleFactory{
/build/soong/android/soongconfig/
Dmodules.go257 func CreateProperties(factory blueprint.ModuleFactory, moduleType *ModuleType) reflect.Value { argument