Home
last modified time | relevance | path

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

/build/soong/cc/
Dvndk.go236 …llndkLibraries = vndkModuleLister(func(m *Module) bool { return m.VendorProperties.…
237 …vndkSPLibraries = vndkModuleLister(func(m *Module) bool { return m.VendorProperties.…
238 …vndkCoreLibraries = vndkModuleLister(func(m *Module) bool { return m.VendorProperties.…
239 …vndkPrivateLibraries = vndkModuleLister(func(m *Module) bool { return m.VendorProperties.…
240 …vndkProductLibraries = vndkModuleLister(func(m *Module) bool { return m.VendorProperties.…
241 …vndkUsingCoreVariantLibraries = vndkModuleLister(func(m *Module) bool { return m.VendorProperties.…
246 func vndkModuleLister(predicate func(*Module) bool) moduleListerFunc { func