Lines Matching refs:QueryValue
192 LONG CKey::QueryValue(LPCTSTR name, UInt32 &value) throw() in QueryValue() function in NWindows::NRegistry::CKey
203 LONG CKey::QueryValue(LPCTSTR name, bool &value) throw() in QueryValue() function in NWindows::NRegistry::CKey
206 LONG res = QueryValue(name, uintValue); in QueryValue()
214 LONG res = QueryValue(name, newVal); in GetValue_IfOk()
223 LONG res = QueryValue(name, newVal); in GetValue_IfOk()
229 LONG CKey::QueryValue(LPCTSTR name, LPTSTR value, UInt32 &count) throw() in QueryValue() function in NWindows::NRegistry::CKey
237 LONG CKey::QueryValue(LPCTSTR name, CSysString &value) in QueryValue() function in NWindows::NRegistry::CKey
246 res = QueryValue(name, value.GetBuf(curSize), curSize2); in QueryValue()
256 LONG CKey::QueryValue(LPCWSTR name, LPWSTR value, UInt32 &count) in QueryValue() function in NWindows::NRegistry::CKey
264 LONG CKey::QueryValue(LPCWSTR name, UString &value) in QueryValue() function in NWindows::NRegistry::CKey
278 res = QueryValue(name, value.GetBuf(curSize), curSize2); in QueryValue()
286 res = QueryValue(name == 0 ? 0 : (LPCSTR)GetSystemString(name), vTemp); in QueryValue()
296 LONG CKey::QueryValue(LPCTSTR name, void *value, UInt32 &count) throw() in QueryValue() function in NWindows::NRegistry::CKey
305 LONG CKey::QueryValue(LPCTSTR name, CByteBuffer &value, UInt32 &dataSize) in QueryValue() function in NWindows::NRegistry::CKey
313 return QueryValue(name, (BYTE *)value, dataSize); in QueryValue()
364 LONG res = QueryValue(valueName, buffer, dataSize); in GetValue_Strings()