Lines Matching refs:linker
131 if to.linker == nil {
138 if lib, ok := to.linker.(*llndkStubDecorator); ok && !Bool(lib.Properties.Vendor_available) {
141 …if _, ok := to.linker.(libraryInterface); ok && to.VendorProperties.Vendor_available != nil && !Bo…
152 if lib, ok := to.linker.(*libraryDecorator); !ok || !lib.shared() {
290 lib := m.linker.(*llndkStubDecorator)
367 …if p, ok := m.linker.(*vndkPrebuiltLibraryDecorator); ok && !p.matchesWithDevice(mctx.DeviceConfig…
371 if lib, ok := m.linker.(libraryInterface); ok {
399 if _, ok := m.linker.(*llndkStubDecorator); ok {
404 lib, is_lib := m.linker.(*libraryDecorator)
405 prebuilt_lib, is_prebuilt_lib := m.linker.(*prebuiltLibraryLinker)
534 l, ok := m.linker.(snapshotLibraryInterface)
772 if library, ok := m.linker.(*libraryDecorator); ok {
775 if prebuilt, ok := m.linker.(*prebuiltLibraryLinker); ok {
778 …rrorf("VNDK library should have libraryDecorator or prebuiltLibraryLinker as linker: %T", m.linker)