Home
last modified time | relevance | path

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

/build/soong/rust/
Dlibrary.go83 type libraryInterface interface { interface
185 var _ libraryInterface = (*libraryDecorator)(nil)
456 case libraryInterface:
462 rlib.compiler.(libraryInterface).setRlib()
463 dylib.compiler.(libraryInterface).setDylib()
466 modules[0].(*Module).compiler.(libraryInterface).setRlib()
469 modules[0].(*Module).compiler.(libraryInterface).setDylib()
Drust.go144 if _, ok := mod.compiler.(libraryInterface); ok {
157 if library, ok := mod.compiler.(libraryInterface); ok {
166 if library, ok := mod.compiler.(libraryInterface); ok {
175 if _, ok := mod.compiler.(libraryInterface); ok {
400 if lib, ok := mod.compiler.(libraryInterface); ok && (lib.buildShared() || lib.buildStatic()) {
418 if library, ok := mod.compiler.(libraryInterface); ok {
428 if library, ok := mod.compiler.(libraryInterface); ok {
450 if library, ok := mod.compiler.(libraryInterface); ok {
459 if library, ok := mod.compiler.(libraryInterface); ok {
484 if _, ok := mod.compiler.(libraryInterface); ok {
[all …]
/build/soong/cc/
Dsnapshot_utils.go26 libraryInterface
Dcc.go528 if library, ok := c.linker.(libraryInterface); ok {
546 if library, ok := c.linker.(libraryInterface); ok {
555 if library, ok := c.linker.(libraryInterface); ok {
649 if _, ok := c.linker.(libraryInterface); ok {
714 if library, ok := c.linker.(libraryInterface); ok {
724 if library, ok := c.linker.(libraryInterface); ok {
734 if library, ok := c.linker.(libraryInterface); ok {
743 if library, ok := c.linker.(libraryInterface); ok {
760 if library, ok := c.linker.(libraryInterface); ok {
2304 objs, exporter := ccReuseDep.compiler.(libraryInterface).reuseObjs()
[all …]
Dcoverage.go122 if static, ok := cc.linker.(libraryInterface); !ok || !static.static() {
Dvendor_snapshot.go894 if lib, ok := module.linker.(libraryInterface); ok {
960 if lib, ok := module.linker.(libraryInterface); ok {
983 if lib, ok := module.linker.(libraryInterface); ok && lib.buildStatic() && lib.buildShared() {
Dvndk.go141 …if _, ok := to.linker.(libraryInterface); ok && to.VendorProperties.Vendor_available != nil && !Bo…
371 if lib, ok := m.linker.(libraryInterface); ok {
Dprebuilt.go69 libraryInterface
Dlibrary.go685 type libraryInterface interface { interface