Home
last modified time | relevance | path

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

/build/soong/rust/
Dsnapshot_utils.go23 libraryInterface
44 if lib, ok := mod.compiler.(libraryInterface); ok {
Dlibrary.go110 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()
Drust.go224 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 …]
Dimage.go237 if lib, ok := mod.compiler.(libraryInterface); !ok || (ok && lib.buildShared()) {
242 if lib, ok := mod.compiler.(libraryInterface); ok && lib.buildDylib() {
Dsanitize.go438 if lib, ok := mod.compiler.(libraryInterface); ok {
462 if lib, ok := mod.compiler.(libraryInterface); ok {
/build/soong/cc/
Dsnapshot_utils.go62 libraryInterface
Dcc.go826 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 …]
Dcoverage.go141 if static, ok := cc.linker.(libraryInterface); !ok || !static.static() {
Dprebuilt.go74 libraryInterface
Dvndk.go362 if lib, ok := m.linker.(libraryInterface); ok {
Dlibrary.go1104 type libraryInterface interface { interface
1152 var _ libraryInterface = (*libraryDecorator)(nil)
2371 func moduleLibraryInterface(module blueprint.Module) libraryInterface {