Lines Matching refs:QueryValue
190 LONG CKey::QueryValue(LPCTSTR name, UInt32 &value) throw() in QueryValue() function in NWindows::NRegistry::CKey
201 LONG CKey::QueryValue(LPCTSTR name, bool &value) throw() in QueryValue() function in NWindows::NRegistry::CKey
204 LONG res = QueryValue(name, uintValue); in QueryValue()
212 LONG res = QueryValue(name, newVal); in GetValue_IfOk()
221 LONG res = QueryValue(name, newVal); in GetValue_IfOk()
227 LONG CKey::QueryValue(LPCTSTR name, LPTSTR value, UInt32 &count) throw() in QueryValue() function in NWindows::NRegistry::CKey
236 LONG CKey::QueryValue(LPCTSTR name, CSysString &value) in QueryValue() function in NWindows::NRegistry::CKey
244 res = QueryValue(name, value.GetBuffer(currentSize), currentSize); in QueryValue()
250 LONG CKey::QueryValue(LPCWSTR name, LPWSTR value, UInt32 &count) in QueryValue() function in NWindows::NRegistry::CKey
258 LONG CKey::QueryValue(LPCWSTR name, UString &value) in QueryValue() function in NWindows::NRegistry::CKey
270 res = QueryValue(name, value.GetBuffer(currentSize), currentSize); in QueryValue()
276 res = QueryValue(name == 0 ? 0 : (LPCSTR)GetSystemString(name), vTemp); in QueryValue()
283 LONG CKey::QueryValue(LPCTSTR name, void *value, UInt32 &count) throw() in QueryValue() function in NWindows::NRegistry::CKey
292 LONG CKey::QueryValue(LPCTSTR name, CByteBuffer &value, UInt32 &dataSize) in QueryValue() function in NWindows::NRegistry::CKey
300 return QueryValue(name, (BYTE *)value, dataSize); in QueryValue()
346 LONG res = QueryValue(valueName, buffer, dataSize); in GetValue_Strings()