Searched refs:libraryInterface (Results 1 – 11 of 11) sorted by relevance
/build/soong/rust/ |
D | snapshot_utils.go | 23 libraryInterface 44 if lib, ok := mod.compiler.(libraryInterface); ok {
|
D | library.go | 110 type libraryInterface interface { interface 271 var _ libraryInterface = (*libraryDecorator)(nil) 650 library, ok := m.compiler.(libraryInterface) 680 v.(*Module).compiler.(libraryInterface).setRlib() 682 v.(*Module).compiler.(libraryInterface).setDylib() 708 v.(*Module).compiler.(libraryInterface).setSource() 733 case libraryInterface: 741 rlib.compiler.(libraryInterface).setRlibStd() 742 dylib.compiler.(libraryInterface).setDylibStd()
|
D | rust.go | 224 if _, ok := mod.compiler.(libraryInterface); ok { 233 if library, ok := mod.compiler.(libraryInterface); ok { 242 if library, ok := mod.compiler.(libraryInterface); ok { 251 if library, ok := mod.compiler.(libraryInterface); ok { 260 if library, ok := mod.compiler.(libraryInterface); ok { 288 if lib, ok := mod.compiler.(libraryInterface); ok { 598 if _, ok := mod.compiler.(libraryInterface); ok { 609 if lib, ok := mod.compiler.(libraryInterface); ok && (lib.buildShared() || lib.buildStatic()) { 634 if library, ok := mod.compiler.(libraryInterface); ok { 644 if library, ok := mod.compiler.(libraryInterface); ok { [all …]
|
D | image.go | 237 if lib, ok := mod.compiler.(libraryInterface); !ok || (ok && lib.buildShared()) { 242 if lib, ok := mod.compiler.(libraryInterface); ok && lib.buildDylib() {
|
D | sanitize.go | 438 if lib, ok := mod.compiler.(libraryInterface); ok { 462 if lib, ok := mod.compiler.(libraryInterface); ok {
|
/build/soong/cc/ |
D | snapshot_utils.go | 62 libraryInterface
|
D | cc.go | 826 library libraryInterface 941 if library, ok := c.linker.(libraryInterface); ok { 959 if library, ok := c.linker.(libraryInterface); ok { 968 if library, ok := c.linker.(libraryInterface); ok { 1032 if _, ok := c.linker.(libraryInterface); ok { 1044 if library, ok := c.linker.(libraryInterface); ok { 1054 if library, ok := c.linker.(libraryInterface); ok { 1064 if library, ok := c.linker.(libraryInterface); ok { 1073 if library, ok := c.linker.(libraryInterface); ok { 1090 if library, ok := c.linker.(libraryInterface); ok { [all …]
|
D | coverage.go | 141 if static, ok := cc.linker.(libraryInterface); !ok || !static.static() {
|
D | prebuilt.go | 74 libraryInterface
|
D | vndk.go | 362 if lib, ok := m.linker.(libraryInterface); ok {
|
D | library.go | 1104 type libraryInterface interface { interface 1152 var _ libraryInterface = (*libraryDecorator)(nil) 2371 func moduleLibraryInterface(module blueprint.Module) libraryInterface {
|