Lines Matching refs:RegistryValue
229 RegistryValue RegistryKeyImplWinNT::GetValue(const std::wstring& Name) const in GetValue()
252 RegistryValue regval; 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()
300 RegistryValue regval_ptr; in GetValue()
301 regval_ptr = RegistryValue(new RegistryValueImpl(*Default)); in GetValue()
311 RegistryValue regval; 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()
592 void RegistryKeyImplWinNT::SetValue(const RegistryValue& Value) in SetValue()