Home
last modified time | relevance | path

Searched refs:OpenKey (Results 1 – 16 of 16) sorted by relevance

/third_party/python/Lib/test/
Dtest_winreg.py61 hkey = OpenKey(root, subkey, 0, KEY_ALL_ACCESS)
117 def _read_test_data(self, root_key, subkeystr="sub_key", OpenKey=OpenKey): argument
123 key = OpenKey(root_key, test_key_name)
125 with OpenKey(key, subkeystr) as sub_key:
158 key = OpenKey(root_key, test_key_name, 0, KEY_ALL_ACCESS)
159 sub_key = OpenKey(key, subkeystr, 0, KEY_ALL_ACCESS)
182 key = OpenKey(root_key, test_key_name)
216 self._read_test_data(HKEY_CURRENT_USER, OpenKey=oke)
317 key = OpenKey(HKEY_CURRENT_USER, test_key_name)
407 with OpenKey(HKEY_LOCAL_MACHINE, "Software") as key:
[all …]
Daudit-tests.py309 from winreg import OpenKey, EnumKey, CloseKey, HKEY_LOCAL_MACHINE
318 k = OpenKey(HKEY_LOCAL_MACHINE, "Software")
/third_party/python/Lib/test/test_importlib/
Dtest_windows.py18 EnumKey, CloseKey, DeleteKey, OpenKey
42 hkey = OpenKey(root, subkey, access=KEY_ALL_ACCESS)
/third_party/python/Doc/library/
Dwinreg.rst82 .. audit-event:: winreg.OpenKey/result key winreg.CreateKey
114 .. audit-event:: winreg.OpenKey/result key winreg.CreateKeyEx
307 .. function:: OpenKey(key, sub_key, reserved=0, access=KEY_READ)
327 .. audit-event:: winreg.OpenKey key,sub_key,access winreg.OpenKey
329 .. audit-event:: winreg.OpenKey/result key winreg.OpenKey
482 To open the key, use the :func:`CreateKey` or :func:`OpenKey` methods.
800 with OpenKey(HKEY_LOCAL_MACHINE, "foo") as key:
/third_party/python/Lib/
Dmimetypes.py273 with _winreg.OpenKey(_winreg.HKEY_CLASSES_ROOT, '') as hkcr:
276 with _winreg.OpenKey(hkcr, subkeyname) as subkey:
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
DMSVSVersion.py222 from winreg import HKEY_LOCAL_MACHINE, OpenKey, QueryValueEx
226 with OpenKey(HKEY_LOCAL_MACHINE, subkey) as hkey:
/third_party/node/tools/gyp/pylib/gyp/
DMSVSVersion.py222 from winreg import HKEY_LOCAL_MACHINE, OpenKey, QueryValueEx
226 with OpenKey(HKEY_LOCAL_MACHINE, subkey) as hkey:
/third_party/gn/src/base/win/
Dregistry.h48 LONG OpenKey(const char16_t* relative_key_name, REGSAM access);
Dregistry.cc123 LONG RegKey::OpenKey(const char16_t* relative_key_name, REGSAM access) { in OpenKey() function in base::win::RegKey
/third_party/python/Lib/test/libregrtest/
Dwin_utils.py81 with winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, COUNTER_REGISTRY_KEY) as perfkey:
/third_party/node/deps/v8/third_party/ittapi/
Dbuildall.py38 …aKey = _winreg.OpenKey(statics['hubs'][hub], curpath, 0, _winreg.KEY_READ | _winreg.KEY_WOW64_64KE…
/third_party/vk-gl-cts/scripts/build/
Dconfig.py166 key = _winreg.OpenKey(root, name, 0, _winreg.KEY_READ | arch)
/third_party/vk-gl-cts/scripts/ctsbuild/
Dconfig.py166 key = _winreg.OpenKey(root, name, 0, _winreg.KEY_READ | arch)
/third_party/python/Lib/importlib/
D_bootstrap_external.py809 return winreg.OpenKey(winreg.HKEY_CURRENT_USER, key)
811 return winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, key)
/third_party/python/Lib/urllib/
Drequest.py2669 internetSettings = winreg.OpenKey(winreg.HKEY_CURRENT_USER,
2717 internetSettings = winreg.OpenKey(winreg.HKEY_CURRENT_USER,
/third_party/python/Misc/
DHISTORY7722 - Issue #14943: Correct a default argument value for winreg.OpenKey