Lines Matching refs:xServiceInfo
524 XServiceInfo xServiceInfo = UnoRuntime.queryInterface(XServiceInfo.class, object); in has() local
526 …return xServiceInfo != null && UnoRuntime.areSame(factoriesByImplNames.get(xServiceInfo.getImpleme… in has()
544 XServiceInfo xServiceInfo = in insert() local
547 if (xServiceInfo == null) in insert()
552 if ( factoriesByImplNames.containsKey( xServiceInfo.getImplementationName() ) ) { in insert()
554 xServiceInfo.getImplementationName() + " already registred" in insert()
558 DEBUG("add factory " + object.toString() + " for " + xServiceInfo.getImplementationName()); in insert()
559 factoriesByImplNames.put( xServiceInfo.getImplementationName(), object ); in insert()
562 String[] serviceNames = xServiceInfo.getSupportedServiceNames(); in insert()
574 System.err.println("The implementation " + xServiceInfo.getImplementationName() + in insert()
598 XServiceInfo xServiceInfo = in remove() local
601 if (xServiceInfo == null) in remove()
614 if ( factoriesByImplNames.remove( xServiceInfo.getImplementationName() ) == null ) in remove()
616 xServiceInfo.getImplementationName() + in remove()
620 String[] serviceNames = xServiceInfo.getSupportedServiceNames(); in remove()
627 … System.err.println("The implementation " + xServiceInfo.getImplementationName() + in remove()