/third_party/python/Lib/test/ |
D | test_winreg.py | 61 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 …]
|
D | audit-tests.py | 309 from winreg import OpenKey, EnumKey, CloseKey, HKEY_LOCAL_MACHINE 318 k = OpenKey(HKEY_LOCAL_MACHINE, "Software")
|
/third_party/python/Lib/test/test_importlib/ |
D | test_windows.py | 18 EnumKey, CloseKey, DeleteKey, OpenKey 42 hkey = OpenKey(root, subkey, access=KEY_ALL_ACCESS)
|
/third_party/python/Doc/library/ |
D | winreg.rst | 82 .. 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/ |
D | mimetypes.py | 273 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/ |
D | MSVSVersion.py | 222 from winreg import HKEY_LOCAL_MACHINE, OpenKey, QueryValueEx 226 with OpenKey(HKEY_LOCAL_MACHINE, subkey) as hkey:
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | MSVSVersion.py | 222 from winreg import HKEY_LOCAL_MACHINE, OpenKey, QueryValueEx 226 with OpenKey(HKEY_LOCAL_MACHINE, subkey) as hkey:
|
/third_party/gn/src/base/win/ |
D | registry.h | 48 LONG OpenKey(const char16_t* relative_key_name, REGSAM access);
|
D | registry.cc | 123 LONG RegKey::OpenKey(const char16_t* relative_key_name, REGSAM access) { in OpenKey() function in base::win::RegKey
|
/third_party/python/Lib/test/libregrtest/ |
D | win_utils.py | 81 with winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, COUNTER_REGISTRY_KEY) as perfkey:
|
/third_party/node/deps/v8/third_party/ittapi/ |
D | buildall.py | 38 …aKey = _winreg.OpenKey(statics['hubs'][hub], curpath, 0, _winreg.KEY_READ | _winreg.KEY_WOW64_64KE…
|
/third_party/vk-gl-cts/scripts/build/ |
D | config.py | 166 key = _winreg.OpenKey(root, name, 0, _winreg.KEY_READ | arch)
|
/third_party/vk-gl-cts/scripts/ctsbuild/ |
D | config.py | 166 key = _winreg.OpenKey(root, name, 0, _winreg.KEY_READ | arch)
|
/third_party/python/Lib/importlib/ |
D | _bootstrap_external.py | 809 return winreg.OpenKey(winreg.HKEY_CURRENT_USER, key) 811 return winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, key)
|
/third_party/python/Lib/urllib/ |
D | request.py | 2669 internetSettings = winreg.OpenKey(winreg.HKEY_CURRENT_USER, 2717 internetSettings = winreg.OpenKey(winreg.HKEY_CURRENT_USER,
|
/third_party/python/Misc/ |
D | HISTORY | 7722 - Issue #14943: Correct a default argument value for winreg.OpenKey
|