Home
last modified time | relevance | path

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

/build/soong/rust/
Dprebuilt.go57 func NewPrebuiltLibrary(hod android.HostOrDeviceSupported) (*Module, *prebuiltLibraryDecorator) {
58 module, library := NewRustLibrary(hod)
68 func NewPrebuiltDylib(hod android.HostOrDeviceSupported) (*Module, *prebuiltLibraryDecorator) {
69 module, library := NewRustLibrary(hod)
79 func NewPrebuiltRlib(hod android.HostOrDeviceSupported) (*Module, *prebuiltLibraryDecorator) {
80 module, library := NewRustLibrary(hod)
Dbenchmark.go52 func NewRustBenchmark(hod android.HostOrDeviceSupported) (*Module, *benchmarkDecorator) {
57 if hod != android.DeviceSupported && hod != android.HostAndDeviceSupported {
60 module := newModule(hod, multilib)
Dsource_provider.go68 func NewSourceProviderModule(hod android.HostOrDeviceSupported, sourceProvider SourceProvider, enab…
69 _, library := NewRustLibrary(hod)
73 module := newModule(hod, android.MultilibBoth)
Dtest.go87 func NewRustTest(hod android.HostOrDeviceSupported) (*Module, *testDecorator) {
92 if hod != android.DeviceSupported && hod != android.HostAndDeviceSupported {
95 module := newModule(hod, multilib)
Dproc_macro.go46 func NewProcMacro(hod android.HostOrDeviceSupported) (*Module, *procMacroDecorator) {
47 module := newModule(hod, android.MultilibFirst)
Dprotobuf.go229 func NewRustProtobuf(hod android.HostOrDeviceSupported) (*Module, *protobufDecorator) {
235 module := NewSourceProviderModule(hod, protobuf, false)
Dbindgen.go249 func NewRustBindgen(hod android.HostOrDeviceSupported) (*Module, *bindgenDecorator) {
256 module := NewSourceProviderModule(hod, bindgen, false)
Dfuzz.go52 func NewRustFuzz(hod android.HostOrDeviceSupported) (*Module, *fuzzDecorator) {
53 module, binary := NewRustBinary(hod)
Drust.go112 hod android.HostOrDeviceSupported member
653 android.InitAndroidArchModule(mod, mod.hod, mod.multilib)
660 func newBaseModule(hod android.HostOrDeviceSupported, multilib android.Multilib) *Module {
662 hod: hod,
666 func newModule(hod android.HostOrDeviceSupported, multilib android.Multilib) *Module {
667 module := newBaseModule(hod, multilib)
Dproject_json.go93 switch rModule.hod {
Dlibrary.go377 func NewRustLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) {
378 module := newModule(hod, android.MultilibBoth)
/build/soong/cc/
Dprebuilt.go238 func NewPrebuiltLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) {
239 module, library := NewLibrary(hod)
289 func NewPrebuiltSharedLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) {
290 module, library := NewPrebuiltLibrary(hod)
306 func NewPrebuiltStaticLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) {
307 module, library := NewPrebuiltLibrary(hod)
499 func NewPrebuiltBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator) {
500 module, binary := NewBinary(hod)
Dmakevars.go197 hod := "Host"
199 hod = "Device"
235 fmt.Sprintf("${config.%sClangGlobalCflags}", hod),
242 fmt.Sprintf("${config.%sGlobalCppflags}", hod),
246 fmt.Sprintf("${config.%sGlobalLdflags}", hod),
253 fmt.Sprintf("${config.%sGlobalLldflags}", hod),
Dtest.go462 func NewTest(hod android.HostOrDeviceSupported) *Module {
463 module, binary := NewBinary(hod)
506 func NewTestLibrary(hod android.HostOrDeviceSupported) *Module {
589 func NewBenchmark(hod android.HostOrDeviceSupported) *Module {
590 module, binary := NewBinary(hod)
Dlinker.go432 hod := "Host"
434 hod = "Device"
438 …flags.Global.LdFlags = append(flags.Global.LdFlags, fmt.Sprintf("${config.%sGlobalLldflags}", hod))
457 flags.Global.LdFlags = append(flags.Global.LdFlags, fmt.Sprintf("${config.%sGlobalLdflags}", hod))
Dcompiler.go431 hod := "Host"
433 hod = "Device"
438 …flags.Global.CppFlags = append([]string{fmt.Sprintf("${config.%sGlobalCppflags}", hod)}, flags.Glo…
445 fmt.Sprintf("${config.%sClangGlobalCflags}", hod))
Dfuzz.go326 func NewFuzz(hod android.HostOrDeviceSupported) *Module {
327 module, binary := NewBinary(hod)
Dbinary.go201 func NewBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator) {
202 module := newModule(hod, android.MultilibFirst)
Dlibrary.go1895 func NewLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) {
1896 module := newModule(hod, android.MultilibBoth)
/build/soong/python/
Dtest.go99 func NewTest(hod android.HostOrDeviceSupported) *Module {
100 module, binary := NewBinary(hod)
Dbinary.go160 func NewBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator) {
161 module := newModule(hod, android.MultilibFirst)
Dpython.go138 hod android.HostOrDeviceSupported member
173 func newModule(hod android.HostOrDeviceSupported, multilib android.Multilib) *Module {
175 hod: hod,
233 android.InitAndroidArchModule(p, p.hod, p.multilib)
/build/soong/java/
Ddroiddoc.go177 func InitDroiddocModule(module android.DefaultableModule, hod android.HostOrDeviceSupported) {
178 android.InitAndroidArchModule(module, hod, android.MultilibCommon)