Lines Matching refs:module
381 module := apex.ApexBundleFactory(true /*testApex*/, true /*artApex*/)
382 android.AddLoadHook(module, func(ctx android.LoadHookContext) {
399 return module
403 module := artDefaultsFactory()
404 android.AddLoadHook(module, addImplicitFlags)
405 android.AddLoadHook(module, globalDefaults)
407 return module
411 module := artDefaultsFactory()
412 android.AddLoadHook(module, debugDefaults)
414 return module
419 module := cc.DefaultsFactory(c)
420 …android.AddLoadHook(module, func(ctx android.LoadHookContext) { codegen(ctx, c, staticAndSharedLib…
422 return module
427 module := cc.DefaultsFactory(c)
428 …android.AddLoadHook(module, func(ctx android.LoadHookContext) { codegen(ctx, c, staticAndSharedLib…
430 return module
435 module := cc.DefaultsFactory(c)
436 android.AddLoadHook(module, func(ctx android.LoadHookContext) { codegen(ctx, c, staticLibrary) })
438 return module
442 module := cc.LibraryFactory()
444 installCodegenCustomizer(module, staticAndSharedLibrary)
446 android.AddLoadHook(module, addImplicitFlags)
447 android.AddInstallHook(module, addTestcasesFile)
448 return module
452 module := cc.LibraryStaticFactory()
454 installCodegenCustomizer(module, staticLibrary)
456 android.AddLoadHook(module, addImplicitFlags)
457 return module
461 module := cc.BinaryFactory()
463 android.AddLoadHook(module, addImplicitFlags)
464 android.AddLoadHook(module, customLinker)
465 android.AddLoadHook(module, prefer32Bit)
466 android.AddInstallHook(module, addTestcasesFile)
467 return module
471 module := cc.TestFactory()
473 installCodegenCustomizer(module, binary)
475 android.AddLoadHook(module, addImplicitFlags)
476 android.AddLoadHook(module, customLinker)
477 android.AddLoadHook(module, prefer32Bit)
478 android.AddInstallHook(module, testInstall)
479 return module
483 module := cc.TestLibraryFactory()
485 installCodegenCustomizer(module, staticAndSharedLibrary)
487 android.AddLoadHook(module, addImplicitFlags)
488 android.AddLoadHook(module, prefer32Bit)
489 android.AddInstallHook(module, testInstall)
490 return module