Home
last modified time | relevance | path

Searched defs:Module (Results 1 – 25 of 26) sorted by relevance

12

/build/soong/genrule/
Dgenrule.go101 type Module struct { struct
102 android.ModuleBase
103 android.DefaultableModuleBase
107 Extra interface{}
109 properties generatorProperties
111 taskGenerator taskFunc
113 deps android.Paths
114 rule blueprint.Rule
115 rawCommand string
117 exportedIncludeDirs android.Paths
[all …]
/build/soong/python/
Dpython.go109 type Module struct { struct
110 android.ModuleBase
111 android.DefaultableModuleBase
113 properties BaseProperties
114 protoProperties android.ProtoProperties
117 hod android.HostOrDeviceSupported
118 multilib android.Multilib
122 bootstrapper bootstrapper
125 installer installer
129 srcsPathMappings []pathMapping
[all …]
Dandroidmk.go26 AndroidMk(*Module, *android.AndroidMkData)
49 func (p *binaryDecorator) AndroidMk(base *Module, ret *android.AndroidMkData) {
61 func (p *testDecorator) AndroidMk(base *Module, ret *android.AndroidMkData) {
83 func (installer *pythonInstaller) AndroidMk(base *Module, ret *android.AndroidMkData) {
/build/soong/cc/
Dcc.go365 type Module struct { struct
366 android.ModuleBase
367 android.DefaultableModuleBase
368 android.ApexModuleBase
370 Properties BaseProperties
371 VendorProperties VendorProperties
374 hod android.HostOrDeviceSupported
375 multilib android.Multilib
378 features []feature
379 compiler compiler
[all …]
Dstl.go23 func getNdkStlFamily(m *Module) string {
28 func getNdkStlFamilyAndLinkType(m *Module) (string, string) {
Dcompdb.go129 func getArguments(src android.Path, ctx android.SingletonContext, ccModule *Module, ccPath string, …
167 …ect(compiledModule CompiledInterface, ctx android.SingletonContext, ccModule *Module, builds map[s…
Dcmakelists.go120 …erateCLionProject(compiledModule CompiledInterface, ctx android.SingletonContext, ccModule *Module,
428 func getCMakeListsForModule(module *Module, ctx android.SingletonContext) string {
Dcc_test.go1704 func checkRuntimeLibs(t *testing.T, expected []string, module *Module) {
1818 func checkStaticLibs(t *testing.T, expected []string, module *Module) {
/build/soong/android/
Dsingleton.go27 ModuleName(module blueprint.Module) string
28 ModuleDir(module blueprint.Module) string
29 ModuleSubDir(module blueprint.Module) string
30 ModuleType(module blueprint.Module) string
31 BlueprintFile(module blueprint.Module) string
33 ModuleErrorf(module blueprint.Module, format string, args ...interface{})
52 VisitAllModulesBlueprint(visit func(blueprint.Module))
53 VisitAllModules(visit func(Module))
54 VisitAllModulesIf(pred func(Module) bool, visit func(Module))
56 VisitDepsDepthFirst(module Module, visit func(Module))
[all …]
Dmutator.go120 Module() Module methodSpec
122 OtherModuleName(m blueprint.Module) string
123 OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{})
124 OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag
131 VisitDirectDeps(visit func(Module))
132 VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module))
133 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
134 VisitDepsDepthFirst(visit func(Module))
135 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
136 WalkDeps(visit func(Module, Module) bool)
[all …]
Dmakevars.go46 ModuleName(module blueprint.Module) string
47 ModuleDir(module blueprint.Module) string
48 ModuleSubDir(module blueprint.Module) string
49 ModuleType(module blueprint.Module) string
50 BlueprintFile(module blueprint.Module) string
52 ModuleErrorf(module blueprint.Module, format string, args ...interface{})
56 VisitAllModules(visit func(Module))
57 VisitAllModulesIf(pred func(Module) bool, visit func(Module))
Dandroidmk.go95 func translateAndroidMk(ctx SingletonContext, mkFile string, mods []blueprint.Module) error {
147 func translateAndroidMkModule(ctx SingletonContext, w io.Writer, mod blueprint.Module) error {
165 func translateGoBinaryModule(ctx SingletonContext, w io.Writer, mod blueprint.Module,
176 func translateAndroidModule(ctx SingletonContext, w io.Writer, mod blueprint.Module,
Dhooks.go44 func AddLoadHook(m blueprint.Module, hook func(LoadHookContext)) {
49 func AddArchHook(m blueprint.Module, hook func(ArchHookContext)) {
85 func AddInstallHook(m blueprint.Module, hook func(InstallHookContext)) {
Dmodule.go140 OtherModuleName(m blueprint.Module) string
141 OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{})
142 OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag
149 VisitDirectDepsBlueprint(visit func(blueprint.Module))
150 VisitDirectDeps(visit func(Module))
151 VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module))
152 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
154 VisitDepsDepthFirst(visit func(Module))
156 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
157 WalkDeps(visit func(Module, Module) bool)
[all …]
Dtesting.go242 func (m TestingModule) Module() Module { func
Darch.go1071 func InitArchModule(m Module) {
/build/soong/bpfix/bpfix/
Dbpfix.go205 func simplifyKnownPropertiesDuplicatingEachOther(mod *parser.Module, buf []byte, patchList *parser.…
435 func makePrebuiltEtcDestination(mod *parser.Module, path string) {
443 func indicateAttributeError(mod *parser.Module, attributeName string, format string, a ...interface…
456 func resolveLocalModule(mod *parser.Module, val parser.Expression) parser.Expression {
592 func runPatchListMod(modFunc func(mod *parser.Module, buf []byte, patchlist *parser.PatchList) erro…
641 func reorderCommonProperties(mod *parser.Module, buf []byte, patchlist *parser.PatchList) error {
687 func removeTags(mod *parser.Module, buf []byte, patchlist *parser.PatchList) error {
761 func mergeMatchingModuleProperties(mod *parser.Module, buf []byte, patchlist *parser.PatchList) err…
872 func removeMatchingModuleListProperties(mod *parser.Module, patchList *parser.PatchList, canonicalN…
900 func hasNonEmptyLiteralListProperty(mod *parser.Module, name string) bool {
[all …]
/build/soong/java/
Djava.go274 type Module struct { struct
275 android.ModuleBase
276 android.DefaultableModuleBase
278 properties CompilerProperties
279 protoProperties android.ProtoProperties
280 deviceProperties CompilerDeviceProperties
284 headerJarFile android.Path
288 implementationJarFile android.Path
291 resourceJar android.Path
295 implementationAndResourcesJar android.Path
[all …]
/build/blueprint/
Dsingleton_ctx.go32 ModuleName(module Module) string
33 ModuleDir(module Module) string
34 ModuleSubDir(module Module) string
35 ModuleType(module Module) string
36 BlueprintFile(module Module) string
38 ModuleErrorf(module Module, format string, args ...interface{})
61 VisitAllModules(visit func(Module))
62 VisitAllModulesIf(pred func(Module) bool, visit func(Module))
63 VisitDepsDepthFirst(module Module, visit func(Module))
64 VisitDepsDepthFirstIf(module Module, pred func(Module) bool,
[all …]
Dmodule_ctx.go89 type Module interface { interface
157 OtherModuleName(m Module) string
158 OtherModuleDir(m Module) string
159 OtherModuleSubDir(m Module) string
160 OtherModuleType(m Module) string
161 OtherModuleErrorf(m Module, fmt string, args ...interface{})
162 OtherModuleDependencyTag(m Module) DependencyTag
167 VisitDirectDeps(visit func(Module))
168 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
169 VisitDepsDepthFirst(visit func(Module))
[all …]
Dname_interface.go55 …NewModule(ctx NamespaceContext, group ModuleGroup, module Module) (namespace Namespace, err []erro…
/build/blueprint/parser/
Dast.go59 type Module struct { struct
60 Type string
61 TypePos scanner.Position
62 Map
65 func (m *Module) Copy() *Module {
74 func (m *Module) String() string {
84 func (m *Module) definitionTag() {}
86 func (m *Module) Pos() scanner.Position { return m.TypePos }
87 func (m *Module) End() scanner.Position { return m.Map.End() }
/build/blueprint/bootstrap/
Dbootstrap.go193 func isGoPackageProducer(module blueprint.Module) bool {
212 func isBootstrapModule(module blueprint.Module) bool {
218 func isBootstrapBinaryModule(module blueprint.Module) bool {
/build/blueprint/bpmodify/
Dbpmodify.go141 func processModule(module *parser.Module, moduleName string,
/build/soong/apex/
Dapex.go586 func getCopyManifestForNativeLibrary(cc *cc.Module, handleSpecialLibs bool) (fileToCopy android.Pat…
619 func getCopyManifestForExecutable(cc *cc.Module) (fileToCopy android.Path, dirInApex string) {
625 func getCopyManifestForPyBinary(py *python.Module) (fileToCopy android.Path, dirInApex string) {

12