Home
last modified time | relevance | path

Searched refs:QueryValue (Results 1 – 8 of 8) sorted by relevance

/external/lzma/CPP/Windows/
DRegistry.h63 LONG QueryValue(LPCTSTR name, UInt32 &value) throw();
64 LONG QueryValue(LPCTSTR name, bool &value) throw();
65 LONG QueryValue(LPCTSTR name, LPTSTR value, UInt32 &dataSize) throw();
66 LONG QueryValue(LPCTSTR name, CSysString &value);
72 LONG QueryValue(LPCWSTR name, LPWSTR value, UInt32 &dataSize);
73 LONG QueryValue(LPCWSTR name, UString &value);
76 LONG QueryValue(LPCTSTR name, void *value, UInt32 &dataSize) throw();
77 LONG QueryValue(LPCTSTR name, CByteBuffer &value, UInt32 &dataSize);
DRegistry.cpp192 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
[all …]
/external/python/cpython2/Lib/test/
Dtest_winreg.py123 val = QueryValue(root_key, test_key_name)
263 QueryValue(key, name[0])
424 self.assertEqual("32KEY", QueryValue(key, ""))
432 self.assertEqual("64KEY", QueryValue(key, ""))
469 QueryValue(HKEY_CLASSES_ROOT, 'some_value_that_does_not_exist')
/external/python/cpython3/Lib/test/
Dtest_winreg.py118 val = QueryValue(root_key, test_key_name)
275 QueryValue(key, name[0])
443 self.assertEqual("32KEY", QueryValue(key, ""))
451 self.assertEqual("64KEY", QueryValue(key, ""))
488 QueryValue(HKEY_CLASSES_ROOT, 'some_value_that_does_not_exist')
/external/lzma/CPP/7zip/UI/Common/
DLoadCodecs.cpp109 if (key.QueryValue(value, pathU) == ERROR_SUCCESS) in ReadPathFromRegistry()
/external/python/cpython3/Lib/importlib/
D_bootstrap_external.py671 filepath = _winreg.QueryValue(hkey, '')
/external/python/cpython2/Doc/library/
D_winreg.rst305 .. function:: QueryValue(key, sub_key)
/external/python/cpython3/Doc/library/
Dwinreg.rst334 .. function:: QueryValue(key, sub_key)