Lines Matching refs:xKey

172     Reference < XRegistryKey > xKey = xSource->openKey(  in deleteAllLinkReferences()  local
175 if (xKey.is() && (xKey->getValueType() == RegistryValueType_ASCIILIST)) in deleteAllLinkReferences()
177 Sequence<OUString> linkNames = xKey->getAsciiListValue(); in deleteAllLinkReferences()
302 Reference < XRegistryKey > xKey = xRootKey->openKey( pool.slash_IMPLEMENTATIONS ); in searchImplForLink() local
303 if (xKey.is()) in searchImplForLink()
305 Sequence< Reference < XRegistryKey > > subKeys( xKey->openKeys() ); in searchImplForLink()
345 Reference < XRegistryKey > xKey = xRootKey->openKey( pool.slash_IMPLEMENTATIONS ); in searchLinkTargetForImpl() local
347 if (xKey.is()) in searchLinkTargetForImpl()
349 Sequence< Reference < XRegistryKey > > subKeys = xKey->openKeys(); in searchLinkTargetForImpl()
666 const Reference < XRegistryKey >& xKey, in prepareUserKeys()
673 Sequence<OUString> keyNames = xKey->getKeyNames(); in prepareUserKeys()
677 relativKey = keyNames.getConstArray()[0].copy(xKey->getKeyName().getLength()+1); in prepareUserKeys()
680 xKey->getKeyType(relativKey) == RegistryKeyType_LINK) in prepareUserKeys()
684 OUString linkTarget = xKey->getLinkTarget(relativKey); in prepareUserKeys()
685 OUString linkName(xKey->getKeyName().copy(xUnoKey->getKeyName().getLength())); in prepareUserKeys()
698 Sequence< Reference < XRegistryKey> > subKeys = xKey->openKeys(); in prepareUserKeys()
714 OUString keyName(xKey->getKeyName().copy(xUnoKey->getKeyName().getLength())); in prepareUserKeys()
761 Reference < XRegistryKey > xKey = xImplKey->openKey( in deleteAllImplementations() local
764 if (xKey.is() && (xKey->getValueType() == RegistryValueType_ASCII)) in deleteAllImplementations()
766 if (xKey->getAsciiValue() == locationUrl) in deleteAllImplementations()
780 xKey = xImplKey->openKey( pool.slash_UNO ); in deleteAllImplementations()
781 if (xKey.is()) in deleteAllImplementations()
783 Sequence< Reference < XRegistryKey > > subKeys2 = xKey->openKeys(); in deleteAllImplementations()
797 prepareUserKeys(xReg, xKey, pSubKeys2[j], implName, sal_False); in deleteAllImplementations()
997 Reference< registry::XRegistryKey > xKey( xImplKey->openKey( OUSTR("UNO/SINGLETONS") ) ); in insert_singletons() local
998 if (xKey.is() && xKey->isValid()) in insert_singletons()
1002 Sequence< Reference< registry::XRegistryKey > > xSingletons_section( xKey->openKeys() ); in insert_singletons()
1145 Reference < XRegistryKey > xKey = xImplKey->openKey( in prepareRegistry() local
1148 if (xKey.is()) in prepareRegistry()
1151 Sequence< Reference < XRegistryKey > > serviceKeys = xKey->openKeys(); in prepareRegistry()
1160 sal_Int32 offset = xKey->getKeyName().getLength() + 1; in prepareRegistry()
1172 xKey = xImplKey->openKey( pool.slash_UNO ); in prepareRegistry()
1173 if (xKey.is()) in prepareRegistry()
1175 Sequence< Reference < XRegistryKey > > subKeys2 = xKey->openKeys(); in prepareRegistry()
1187 prepareUserKeys(xDest, xKey, pSubKeys2[j], implName, sal_True); in prepareRegistry()
1195 xKey = xImplKey->createKey( pool.slash_UNO_slash_LOCATION ); in prepareRegistry()
1197 if (xKey.is()) in prepareRegistry()
1199 xKey->setAsciiValue(locationUrl); in prepareRegistry()
1203 xKey = xImplKey->createKey( pool.slash_UNO_slash_ACTIVATOR ); in prepareRegistry()
1205 if (xKey.is()) in prepareRegistry()
1207 xKey->setAsciiValue(implementationLoaderUrl); in prepareRegistry()
1210 xKey = xImplKey->openKey( pool.slash_UNO_slash_SERVICES ); in prepareRegistry()
1212 if (xKey.is() && (xKey->getValueType() == RegistryValueType_ASCIILIST)) in prepareRegistry()
1215 Sequence<OUString> linkNames = xKey->getAsciiListValue(); in prepareRegistry()
1240 Reference < XRegistryKey > xKey = xSource->openKey( in findImplementations() local
1243 if (xKey.is() && (xKey->getKeyNames().getLength() > 0)) in findImplementations()
1802 Reference < XRegistryKey > xKey = in doRevoke() local
1804 if (xKey.is() && xKey->isValid()) in doRevoke()
1806 deleteAllImplementations(xDest, xKey, locationUrl, aNames); in doRevoke()
1809 xKey = xRootKey->openKey( pool.slash_SERVICES ); in doRevoke()
1810 if (xKey.is()) in doRevoke()
1816 deleteAllServiceEntries(xDest, xKey, *iter); in doRevoke()
1821 xKey = xRootKey->openKey( OUSTR("/SINGLETONS") ); in doRevoke()
1822 if (xKey.is() && xKey->isValid()) in doRevoke()
1824 delete_all_singleton_entries( xKey, aNames ); in doRevoke()
1829 if (xKey.is() && xKey->isValid() ) in doRevoke()
1830 xKey->closeKey(); in doRevoke()