Lines Matching refs:Name

229 RegistryValue RegistryKeyImplWinNT::GetValue(const std::wstring& Name) const  in GetValue()
239 Name.c_str(), in GetValue()
256 regval = RegistryValue(new RegistryValueImpl(Name, *(reinterpret_cast<int*>(buff)))); in GetValue()
261 …regval = RegistryValue(new RegistryValueImpl(Name, std::wstring(reinterpret_cast<wchar_t*>(buff)))… in GetValue()
263 regval = RegistryValue(new RegistryValueImpl(Name, std::wstring())); in GetValue()
279 RegistryValue RegistryKeyImplWinNT::GetValue(const std::wstring& Name, const RegistryValue& Default… in GetValue() argument
289 Name.c_str(), in GetValue()
314 regval = RegistryValue(new RegistryValueImpl(Name, *reinterpret_cast<int*>(buff))); in GetValue()
316 …regval = RegistryValue(new RegistryValueImpl(Name, std::wstring(reinterpret_cast<wchar_t*>(buff)))… in GetValue()
378 RegistryKey RegistryKeyImplWinNT::OpenSubKey(const std::wstring& Name, bool Writeable) in OpenSubKey() argument
380 RegistryKey regkey(new RegistryKeyImplWinNT(m_hSubKey, Name)); in OpenSubKey()
395 RegistryKey RegistryKeyImplWinNT::CreateSubKey(const std::wstring& Name) in CreateSubKey() argument
406 Name.c_str(), in CreateSubKey()
422 return RegistryKey(new RegistryKeyImplWinNT(hRoot, hKey, Name)); in CreateSubKey()
435 void RegistryKeyImplWinNT::DeleteSubKey(const std::wstring& Name) in DeleteSubKey() argument
439 assert(HasSubKey(Name)); in DeleteSubKey()
441 RegistryKey SubKey = OpenSubKey(Name); in DeleteSubKey()
450 LONG rc = RegDeleteKeyW(m_hSubKey, Name.c_str()); in DeleteSubKey()
470 void RegistryKeyImplWinNT::DeleteSubKeyTree(const std::wstring& Name) in DeleteSubKeyTree() argument
472 ImplDeleteSubKeyTree(m_hSubKey, Name); in DeleteSubKeyTree()
485 LONG RegistryKeyImplWinNT::ImplDeleteSubKeyTree(HKEY RootKey, const std::wstring& Name) in ImplDeleteSubKeyTree() argument
493 Name.c_str(), in ImplDeleteSubKeyTree()
526 rc = RegDeleteKeyW(RootKey, Name.c_str()); in ImplDeleteSubKeyTree()
563 void RegistryKeyImplWinNT::DeleteValue(const std::wstring& Name) in DeleteValue() argument
566 assert(HasValue(Name)); in DeleteValue()
571 Name.c_str()); in DeleteValue()