Lines Matching refs:RegistryValue
216 RegistryValue RegistryKeyImplWin9x::GetValue(const std::wstring& Name) const in GetValue()
239 RegistryValue regval; in GetValue()
243 regval = RegistryValue(new RegistryValueImpl(Name, *(reinterpret_cast<int*>(buff)))); in GetValue()
248 … regval = RegistryValue(new RegistryValueImpl(Name, std::string(reinterpret_cast<char*>(buff)))); in GetValue()
250 regval = RegistryValue(new RegistryValueImpl(Name, std::string())); in GetValue()
266 RegistryValue RegistryKeyImplWin9x::GetValue(const std::wstring& Name, const RegistryValue& Default… in GetValue()
287 RegistryValue regval_ptr; in GetValue()
288 regval_ptr = RegistryValue(new RegistryValueImpl(*Default)); in GetValue()
298 RegistryValue regval; in GetValue()
301 regval = RegistryValue(new RegistryValueImpl(Name, *reinterpret_cast<int*>(buff))); in GetValue()
303 regval = RegistryValue(new RegistryValueImpl(Name, std::string(reinterpret_cast<char*>(buff)))); in GetValue()
509 void RegistryKeyImplWin9x::SetValue(const RegistryValue& Value) in SetValue()