Home
last modified time | relevance | path

Searched refs:_winreg (Results 1 – 11 of 11) sorted by relevance

/third_party/vk-gl-cts/scripts/build/
Dconfig.py32 import _winreg
35 _winreg = winreg variable
37 _winreg = None variable
166 key = _winreg.OpenKey(root, name, 0, _winreg.KEY_READ | arch)
167 _winreg.CloseKey(key)
173 if sys.platform == 'win32' and _winreg != None:
178 arch = _winreg.KEY_WOW64_32KEY if nativeArch == self.ARCH_64BIT else 0
180 …10: [(_winreg.HKEY_CLASSES_ROOT, "VisualStudio.DTE.10.0"), (_winreg.HKEY_LOCAL_MACHINE, "Software…
181 …11: [(_winreg.HKEY_CLASSES_ROOT, "VisualStudio.DTE.11.0"), (_winreg.HKEY_LOCAL_MACHINE, "Software…
182 …12: [(_winreg.HKEY_CLASSES_ROOT, "VisualStudio.DTE.12.0"), (_winreg.HKEY_LOCAL_MACHINE, "Software…
[all …]
/third_party/node/deps/v8/third_party/ittapi/
Dbuildall.py24 import _winreg
26 import winreg as _winreg namespace
31 … statics['hubs'] = {'HKLM': _winreg.HKEY_LOCAL_MACHINE, 'HKCL': _winreg.HKEY_CLASSES_ROOT}
38 …aKey = _winreg.OpenKey(statics['hubs'][hub], curpath, 0, _winreg.KEY_READ | _winreg.KEY_WOW64_64KE…
45 name, value, _ = _winreg.EnumValue(aKey, i)
55 key = _winreg.EnumKey(aKey, i)
61 _winreg.CloseKey(aKey)
/third_party/python/Lib/
Dmimetypes.py37 import winreg as _winreg namespace
39 _winreg = None variable
246 if not _mimetypes_read_windows_registry and not _winreg:
256 elif _winreg:
265 ctype = _winreg.EnumKey(mimedb, i)
273 with _winreg.OpenKey(_winreg.HKEY_CLASSES_ROOT, '') as hkcr:
276 with _winreg.OpenKey(hkcr, subkeyname) as subkey:
281 mimetype, datatype = _winreg.QueryValueEx(
283 if datatype != _winreg.REG_SZ:
Dplatform.py347 import _winreg as winreg
397 import _winreg as winreg
/third_party/python/Doc/whatsnew/
D2.7.rst2334 * The :mod:`_winreg` module for accessing the registry now implements
2335 the :func:`~_winreg.CreateKeyEx` and :func:`~_winreg.DeleteKeyEx`
2337 take several extra arguments. The :func:`~_winreg.DisableReflectionKey`,
2338 :func:`~_winreg.EnableReflectionKey`, and :func:`~_winreg.QueryReflectionKey`
D2.0.rst1132 * :mod:`_winreg`: An interface to the Windows registry. :mod:`_winreg` is an
1135 :mod:`_winreg` was written by Bill Tutt and Mark Hammond.
D3.0.rst578 _winreg winreg
D2.6.rst3125 * The :mod:`_winreg` module now has a function,
3132 :mod:`_winreg` also has better support for x64 systems,
/third_party/python/Doc/library/
Dwinreg.rst544 The following constants are defined for use in many :mod:`_winreg` functions.
/third_party/node/deps/npm/node_modules/node-gyp/
DCHANGELOG.md592 * [[`588d333c14`](https://github.com/nodejs/node-gyp/commit/588d333c14)] - **gyp**: \_winreg module…
/third_party/python/Misc/
DHISTORY15151 - Issue #5624: Fix the _winreg module name still used in several modules.
16673 - Renamed ``_winreg`` module to ``winreg``.
17715 - Patch #1448199: Release interpreter lock in _winreg.ConnectRegistry.
21018 - The _winreg module could segfault when reading very large registry
26805 _winreg - Windows registry access.
26911 - The winreg module has been renamed to _winreg. (There are plans for