/third_party/lzma/CPP/Windows/ |
H A D | Registry.h | 63 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);
|
H A D | Registry.cpp | 208 LONG CKey::QueryValue(LPCTSTR name, UInt32 &value) throw()
in QueryValue() function in NWindows::NRegistry::CKey 219 LONG CKey::QueryValue(LPCTSTR name, bool &value) throw()
in QueryValue() function in NWindows::NRegistry::CKey 222 LONG res = QueryValue(name, uintValue);
in QueryValue() 230 LONG res = QueryValue(name, newVal);
in GetValue_IfOk() 239 LONG res = QueryValue(name, newVal);
in GetValue_IfOk() 245 LONG CKey::QueryValue(LPCTSTR name, LPTSTR value, UInt32 &count) throw()
in QueryValue() function in NWindows::NRegistry::CKey 253 LONG CKey::QueryValue(LPCTSTR name, CSysString &value)
in QueryValue() function in NWindows::NRegistry::CKey 262 res = QueryValue(name, value.GetBuf(curSize), curSize2);
in QueryValue() 272 LONG CKey::QueryValue(LPCWSTR name, LPWSTR value, UInt32 &count)
in QueryValue() function in NWindows::NRegistry::CKey 280 LONG CKey::QueryValue(LPCWST function in NWindows::NRegistry::CKey 312 LONG CKey::QueryValue(LPCTSTR name, void *value, UInt32 &count) throw() QueryValue() function in NWindows::NRegistry::CKey 321 LONG CKey::QueryValue(LPCTSTR name, CByteBuffer &value, UInt32 &dataSize) QueryValue() function in NWindows::NRegistry::CKey [all...] |
H A D | SystemInfo.cpp | 576 res[i] = key.QueryValue(i == 0 ?
in Fill()
|
/third_party/python/Lib/test/ |
H A D | test_winreg.py | 118 val = QueryValue(root_key, test_key_name) 252 # EnumValue or QueryValue to raise "WindowsError: More data is 275 QueryValue(key, name[0]) 461 self.assertEqual("32KEY", QueryValue(key, "")) 469 self.assertEqual("64KEY", QueryValue(key, "")) 506 QueryValue(HKEY_CLASSES_ROOT, 'some_value_that_does_not_exist')
|
H A D | test_getpath.py | 1036 def QueryValue(self, hkey, subkey): member in MockWinreg 1038 print(f"QueryValue({hkey}, {subkey})")
|
/third_party/python/Modules/ |
H A D | getpath.py | 688 v = winreg.QueryValue(key, winreg.EnumKey(key, i)) 698 v = winreg.QueryValue(key, None)
|
/third_party/python/Lib/idlelib/ |
H A D | editor.py | 95 docfile = winreg.QueryValue(winreg.HKEY_CURRENT_USER, KEY) 98 docfile = winreg.QueryValue(winreg.HKEY_LOCAL_MACHINE,
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | LoadCodecs.cpp | 97 if (key.QueryValue(value, pathU) == ERROR_SUCCESS)
in ReadPathFromRegistry()
|
/third_party/python/Lib/importlib/ |
H A D | _bootstrap_external.py | 880 filepath = winreg.QueryValue(hkey, '')
|