/aoo41x/main/registry/inc/registry/ |
H A D | registry.hxx | 91 class RegistryKey; 398 class RegistryKey class 402 inline RegistryKey(); 405 inline RegistryKey(const RegistryKey& toCopy); 408 inline ~RegistryKey(); 411 inline RegistryKey& operator = (const RegistryKey& toAssign); 781 inline RegistryKey::RegistryKey() in RegistryKey() function in RegistryKey 785 inline RegistryKey::RegistryKey(Registry& registry, RegKeyHandle hKey) in RegistryKey() function in RegistryKey 793 inline RegistryKey::RegistryKey(const RegistryKey& toCopy) in RegistryKey() function in RegistryKey 806 inline RegistryKey::~RegistryKey() in ~RegistryKey() [all …]
|
/aoo41x/main/configmgr/source/ |
H A D | configurationregistry.cxx | 156 friend class RegistryKey; 159 class RegistryKey: class 168 virtual ~RegistryKey() {} in ~RegistryKey() 521 sal_Bool RegistryKey::isReadOnly() in isReadOnly() 569 sal_Int32 RegistryKey::getLongValue() in getLongValue() 587 void RegistryKey::setLongValue(sal_Int32) in setLongValue() 627 rtl::OUString RegistryKey::getAsciiValue() in getAsciiValue() 732 void RegistryKey::setStringListValue( in setStringListValue() 782 return new RegistryKey( in openKey() 802 void RegistryKey::closeKey() in closeKey() [all …]
|
/aoo41x/main/setup_native/source/win32/customactions/reg4msdoc/ |
H A D | registrar.cxx | 162 RegistryKey root_key = WindowsRegistry().GetClassesRootKey(); in QueryPreselectForMsApplication() 171 RegistryKey RegKey = root_key->OpenSubKey(file_extension, false); in QueryPreselectForMsApplication() 346 RegistryKey RegKey = m_RootKey->CreateSubKey(RegKeyName); in RegisterAsHtmlEditorForInternetExplorer() 383 RegistryKey aRegKey = m_RootKey->OpenSubKey( APPLICATIONS ); in UnregisterAsHtmlEditorForInternetExplorer() 490 RegistryKey RegKey = m_RootKey->CreateSubKey(L".htm"); in RegisterAsDefaultShellHtmlEditor() 533 RegistryKey RegKey = m_RootKey->OpenSubKey(L".htm"); in UnregisterAsDefaultShellHtmlEditor() 591 RegistryKey RegKey = m_RootKey->CreateSubKey(PRIVATE_BACKUP_KEY_NAME); in GetRegisterState() 693 RegistryKey ForwardKey = m_RootKey->CreateSubKey(ForwardKeyName); in RegisterForMsOfficeApplication() 697 RegistryKey RegKey = ForwardKey->CreateSubKey(L"DefaultIcon"); in RegisterForMsOfficeApplication() 701 RegistryKey RegKeyShell = ForwardKey->CreateSubKey(L"shell"); in RegisterForMsOfficeApplication() [all …]
|
H A D | registry.cxx | 205 void RegistryKeyImpl::CopyValue(const RegistryKey& RegistryKey, const std::wstring& Name) in CopyValue() argument 207 assert(RegistryKey->HasValue(Name)); in CopyValue() 209 SetValue((const RegistryValue&)(RegistryKey->GetValue(Name))); in CopyValue() 211 SetValue(RegistryKey->GetValue(Name)); in CopyValue() 229 void RegistryKeyImpl::CopyValue(const RegistryKey& RegistryKey, const std::wstring& Name, const std… in CopyValue() argument 231 assert(RegistryKey->HasValue(Name)); in CopyValue() 233 RegistryValue RegVal = RegistryKey->GetValue(Name); in CopyValue()
|
H A D | windowsregistry.cxx | 52 RegistryKey WindowsRegistry::GetClassesRootKey(bool Writeable) const in GetClassesRootKey() 61 RegistryKey WindowsRegistry::GetCurrentUserKey(bool Writeable) const in GetCurrentUserKey() 70 RegistryKey WindowsRegistry::GetLocalMachineKey(bool Writeable) const in GetLocalMachineKey() 79 RegistryKey WindowsRegistry::GetUserKey(bool Writeable) const in GetUserKey() 88 RegistryKey WindowsRegistry::GetRegistryKey(HKEY RootKey, bool Writeable) const in GetRegistryKey() 90 RegistryKey regkey; in GetRegistryKey() 93 regkey = RegistryKey(new RegistryKeyImplWinNT(RootKey)); in GetRegistryKey() 95 regkey = RegistryKey(new RegistryKeyImplWin9x(RootKey)); in GetRegistryKey()
|
H A D | register.cxx | 258 RegistryKey so_bak_key; in FixReturnRegistrationState() 262 RegistryKey hkcr_key = registry.GetClassesRootKey(); in FixReturnRegistrationState() 274 RegistryKey hklm_key = registry.GetLocalMachineKey(); in FixReturnRegistrationState() 278 RegistryKey so_uninst_key = in FixReturnRegistrationState() 288 RegistryKey hkcu_classes_key = in FixReturnRegistrationState() 298 RegistryKey hklm_sftw_classes = in FixReturnRegistrationState() 301 RegistryKey so_bak_key_old; in FixReturnRegistrationState() 312 RegistryKey hklm_key = registry.GetLocalMachineKey(); in FixReturnRegistrationState() 316 RegistryKey so_uninst_key = in FixReturnRegistrationState()
|
H A D | userregistrar.cxx | 41 RegistryKey RegKey = WindowsRegistry().GetCurrentUserKey(); in UserRegistrar() 60 RegistryKey RegKey = m_RootKey->OpenSubKey(L"Applications"); in UnregisterAsHtmlEditorForInternetExplorer() 77 RegistryKey LocalHtmKey = m_RootKey->CreateSubKey(L".htm"); in RegisterAsDefaultShellHtmlEditor() 81 RegistryKey HKCRKey = WindowsRegistry().GetClassesRootKey(); in RegisterAsDefaultShellHtmlEditor() 85 RegistryKey RootHtmKey = HKCRKey->OpenSubKey(L".htm", false); in RegisterAsDefaultShellHtmlEditor() 127 RegistryKey RegKey = m_RootKey->OpenSubKey(FileExtension); in UnregisterForMsOfficeApplication() 140 RegistryKey UserRegistrar::GetRootKeyForDefHtmlEditorForIERegistration() const in GetRootKeyForDefHtmlEditorForIERegistration()
|
H A D | registry.hxx | 51 typedef std::auto_ptr<RegistryKeyImpl> RegistryKey; typedef 191 virtual RegistryKey OpenSubKey(const std::wstring& Name, bool Writeable = true) = 0; 201 virtual RegistryKey CreateSubKey(const std::wstring& Name) = 0; 261 virtual void CopyValue(const RegistryKey& RegistryKey, const std::wstring& Name); 276 …virtual void CopyValue(const RegistryKey& RegistryKey, const std::wstring& Name, const std::wstrin…
|
H A D | windowsregistry.hxx | 46 RegistryKey GetClassesRootKey(bool Writeable = true) const; 48 RegistryKey GetCurrentUserKey(bool Writeable = true) const; 50 RegistryKey GetLocalMachineKey(bool Writeable = true) const; 52 RegistryKey GetUserKey(bool Writeable = true) const; 55 RegistryKey GetRegistryKey(HKEY RootKey, bool Writeable) const;
|
H A D | registryw9x.cxx | 365 RegistryKey RegistryKeyImplWin9x::OpenSubKey(const std::wstring& Name, bool Writeable) in OpenSubKey() 367 RegistryKey regkey(new RegistryKeyImplWin9x(m_hSubKey, Name)); in OpenSubKey() 382 RegistryKey RegistryKeyImplWin9x::CreateSubKey(const std::wstring& Name) in CreateSubKey() 409 return RegistryKey(new RegistryKeyImplWin9x(hRoot, hKey, Name)); in CreateSubKey() 428 RegistryKey SubKey = OpenSubKey(Name); in DeleteSubKey()
|
H A D | registrywnt.cxx | 378 RegistryKey RegistryKeyImplWinNT::OpenSubKey(const std::wstring& Name, bool Writeable) in OpenSubKey() 380 RegistryKey regkey(new RegistryKeyImplWinNT(m_hSubKey, Name)); in OpenSubKey() 395 RegistryKey RegistryKeyImplWinNT::CreateSubKey(const std::wstring& Name) in CreateSubKey() 422 return RegistryKey(new RegistryKeyImplWinNT(hRoot, hKey, Name)); in CreateSubKey() 441 RegistryKey SubKey = OpenSubKey(Name); in DeleteSubKey()
|
/aoo41x/main/codemaker/inc/codemaker/ |
H A D | typemanager.hxx | 38 typedef ::std::pair< RegistryKey, sal_Bool > KeyPair; 92 virtual ::rtl::OString getTypeName(RegistryKey&) const in getTypeName() 95 virtual RegistryKey getTypeKey(const ::rtl::OString&, sal_Bool * = 0 ) const in getTypeKey() 96 { return RegistryKey(); } in getTypeKey() 101 virtual typereg::Reader getTypeReader(RegistryKey& rTypeKey) const = 0; 104 virtual RTTypeClass getTypeClass(RegistryKey&) const in getTypeClass() 148 ::rtl::OString getTypeName(RegistryKey& rTypeKey) const; 152 RegistryKey getTypeKey( in getTypeKey() 158 typereg::Reader getTypeReader(RegistryKey& rTypeKey) const; 160 RTTypeClass getTypeClass(RegistryKey& rTypeKey) const; [all …]
|
/aoo41x/main/registry/tools/ |
H A D | checksingleton.cxx | 170 …c sal_Bool checkSingletons(Options_Impl const & options, RegistryKey& singletonKey, RegistryKey& t… in checkSingletons() 186 RegistryKey entryKey; in checkSingletons() 220 RegistryKey elementKey = subKeys.getElement(i); in checkSingletons() 274 RegistryKey indexRoot; in main() 282 RegistryKey typeRoot; in main() 290 RegistryKey typeKey; in main() 305 RegistryKey singletonKey; in main()
|
H A D | regcompare.cxx | 1322 RegistryKey& key1, RegValueType valueType1, sal_uInt32 size1, in checkValueDifference() 1323 RegistryKey& key2, RegValueType valueType2, sal_uInt32 size2) in checkValueDifference() 1658 RegistryKey subKey; in hasPublishedChildren() 1720 RegistryKey& key, StringSet& keys, in checkDifferences() 1758 RegistryKey subKey; in checkDifferences() 1875 RegistryKey& key1, in compareKeys() 1876 RegistryKey& key2) in compareKeys() 1928 RegistryKey subKey1; in compareKeys() 1939 RegistryKey subKey2; in compareKeys() 2000 RegistryKey key1, key2; in main() [all …]
|
/aoo41x/main/codemaker/source/codemaker/ |
H A D | typemanager.cxx | 159 ::rtl::OString RegistryTypeManager::getTypeName(RegistryKey& rTypeKey) const in getTypeName() 175 RegistryKey key(searchTypeKey(name, pIsExtraType)); in getTypeReader() 196 typereg::Reader RegistryTypeManager::getTypeReader(RegistryKey& rTypeKey) const in getTypeReader() 227 RegistryKey key(searchTypeKey(name)); in getTypeClass() 257 RTTypeClass RegistryTypeManager::getTypeClass(RegistryKey& rTypeKey) const in getTypeClass() 319 RegistryKey RegistryTypeManager::searchTypeKey(const OString& name_, sal_Bool * pIsExtraType ) in searchTypeKey() 323 RegistryKey key, rootKey; in searchTypeKey() 371 RegistryKey key, rootKey; in getTypeKeys()
|
/aoo41x/main/rdbmaker/source/codemaker/ |
H A D | typemanager.cxx | 124 RegistryKey rootKey; in init() 162 RegistryKey key(searchTypeKey(name)); in getTypeReader() 189 RegistryKey key(searchTypeKey(name)); in getTypeClass() 241 RegistryKey RegistryTypeManager::searchTypeKey(const OString& name) in searchTypeKey() 243 RegistryKey key, rootKey; in searchTypeKey()
|
/aoo41x/main/unodevtools/inc/unodevtools/ |
H A D | typemanager.hxx | 33 class RegistryKey; 81 ::rtl::OString getTypeName(RegistryKey& rTypeKey) const; 84 typereg::Reader getTypeReader(RegistryKey& rTypeKey) const; 86 RTTypeClass getTypeClass(RegistryKey& rTypeKey) const;
|
/aoo41x/main/idlc/source/ |
H A D | astdump.cxx | 45 sal_Bool AstModule::dump(RegistryKey& rKey) in dump() 48 RegistryKey localKey; in dump() 140 sal_Bool AstTypeDef::dump(RegistryKey& rKey) in dump() 143 RegistryKey localKey; in dump() 175 sal_Bool AstService::dump(RegistryKey& rKey) in dump() 228 RegistryKey localKey; in dump()
|
/aoo41x/main/rdbmaker/inc/codemaker/ |
H A D | typemanager.hxx | 87 virtual RegistryKey getTypeKey(const ::rtl::OString& /*name*/) in getTypeKey() 88 { return RegistryKey(); } in getTypeKey() 148 RegistryKey getTypeKey(const ::rtl::OString& name) in getTypeKey() 158 RegistryKey searchTypeKey(const ::rtl::OString& name);
|
/aoo41x/main/codemaker/source/cppumaker/ |
H A D | cppumaker.cxx | 48 RegistryKey& rTypeKey, bool bIsExtraType, TypeManager const & typeMgr, in produce() 66 void produceAllTypes(RegistryKey& rTypeKey, bool bIsExtraType, in produceAllTypes() 79 RegistryKey key, subKey; in produceAllTypes() 118 RegistryKey key, subKey; in produceAllTypes()
|
/aoo41x/main/rdbmaker/source/rdbmaker/ |
H A D | rdbtype.cxx | 62 RegistryKey& regKey, in produceDependedTypes() 110 RegistryKey& regKey, in produceType() 165 RegistryKey typeKey; in produceType()
|
H A D | rdbmaker.cxx | 57 RegistryKey rootKey; 247 RegistryKey& regKey, in produceAllTypes() 260 RegistryKey typeKey = typeMgr.getTypeKey(typeName); in produceAllTypes() 399 RegistryKey tmpKey; in main()
|
/aoo41x/main/codemaker/source/javamaker/ |
H A D | javamaker.cxx | 38 sal_Bool produceAllTypes(RegistryKey& rTypeKey, sal_Bool bIsExtraType, in produceAllTypes() 57 RegistryKey key, subKey; in produceAllTypes() 107 RegistryKey key, subKey; in produceAllTypes()
|
H A D | javatype.hxx | 31 class RegistryKey; 37 bool produceType(RegistryKey& typeName, bool bIsExtraType, TypeManager const & typeMgr,
|
/aoo41x/main/unodevtools/source/unodevtools/ |
H A D | typemanager.cxx | 170 OString UnoTypeManager::getTypeName(RegistryKey& rTypeKey) const in getTypeName() 203 typereg::Reader UnoTypeManager::getTypeReader(RegistryKey& rTypeKey) const in getTypeReader() 245 RTTypeClass UnoTypeManager::getTypeClass(RegistryKey& rTypeKey) const in getTypeClass()
|