Home
last modified time | relevance | path

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

/build/soong/rust/
Dlibrary.go104 type libraryInterface interface { interface
248 var _ libraryInterface = (*libraryDecorator)(nil)
588 library, ok := m.compiler.(libraryInterface)
618 v.(*Module).compiler.(libraryInterface).setRlib()
620 v.(*Module).compiler.(libraryInterface).setDylib()
627 v.(*Module).compiler.(libraryInterface).setSource()
652 case libraryInterface:
660 rlib.compiler.(libraryInterface).setRlibStd()
661 dylib.compiler.(libraryInterface).setDylibStd()
Drust.go193 if _, ok := mod.compiler.(libraryInterface); ok {
202 if library, ok := mod.compiler.(libraryInterface); ok {
211 if library, ok := mod.compiler.(libraryInterface); ok {
220 if library, ok := mod.compiler.(libraryInterface); ok {
229 if library, ok := mod.compiler.(libraryInterface); ok {
252 if _, ok := mod.compiler.(libraryInterface); ok {
549 if lib, ok := mod.compiler.(libraryInterface); ok && (lib.buildShared() || lib.buildStatic()) {
567 if library, ok := mod.compiler.(libraryInterface); ok {
577 if library, ok := mod.compiler.(libraryInterface); ok {
587 if library, ok := mod.compiler.(libraryInterface); ok {
[all …]
Dsanitize.go285 if lib, ok := mod.compiler.(libraryInterface); ok {
309 if lib, ok := mod.compiler.(libraryInterface); ok {
Dimage.go216 if lib, ok := mod.compiler.(libraryInterface); !ok || (ok && lib.buildShared()) {
/build/soong/cc/
Dsnapshot_utils.go58 libraryInterface
Dcoverage.go131 if static, ok := cc.linker.(libraryInterface); !ok || !static.static() {
Dprebuilt.go72 libraryInterface
Dlibrary.go889 type libraryInterface interface { interface
933 var _ libraryInterface = (*libraryDecorator)(nil)
2131 func moduleLibraryInterface(module blueprint.Module) libraryInterface {