HomeSort by relevance Sort by last modified time
    Searched refs:_winreg (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/tools/win/split_link/
check_installed.py 10 _winreg = None
12 import _winreg namespace
15 import cygwinreg as _winreg namespace
19 if not _winreg:
23 val = _winreg.QueryValue(_winreg.HKEY_CURRENT_USER,
install_split_link.py 5 import _winreg namespace
83 _winreg.SetValue(_winreg.HKEY_CURRENT_USER,
85 _winreg.REG_SZ,
87 _winreg.SetValue(_winreg.HKEY_CURRENT_USER,
89 _winreg.REG_SZ,
split_link.py 10 import _winreg namespace
80 val = _winreg.QueryValue(_winreg.HKEY_CURRENT_USER,
  /external/chromium_org/chrome/test/mini_installer/
registry_verifier.py 5 import _winreg namespace
14 """Converts a root registry key string into a _winreg.HKEY_* constant."""
16 'HKEY_CLASSES_ROOT': _winreg.HKEY_CLASSES_ROOT,
17 'HKEY_CURRENT_USER': _winreg.HKEY_CURRENT_USER,
18 'HKEY_LOCAL_MACHINE': _winreg.HKEY_LOCAL_MACHINE,
19 'HKEY_USERS': _winreg.HKEY_USERS,
26 """Converts a registry value type string into a _winreg.REG_* constant."""
28 'BINARY': _winreg.REG_BINARY,
29 'DWORD': _winreg.REG_DWORD,
30 'DWORD_LITTLE_ENDIAN': _winreg.REG_DWORD_LITTLE_ENDIAN
    [all...]
uninstall_chrome.py 11 import _winreg namespace
34 root_key = _winreg.HKEY_LOCAL_MACHINE
36 root_key = _winreg.HKEY_CURRENT_USER
41 key = _winreg.OpenKey(root_key, sub_key, 0, _winreg.KEY_QUERY_VALUE)
56 uninstall_string, _ = _winreg.QueryValueEx(key, 'UninstallString')
  /external/chromium_org/chrome/installer/tools/
setup_timer.py 20 import _winreg namespace
33 hive = (_winreg.HKEY_LOCAL_MACHINE if hive_str == 'HKLM' else
34 _winreg.HKEY_CURRENT_USER)
37 key = _winreg.OpenKey(hive, state_key + product_guid, 0, _winreg.KEY_READ)
48 current_stage, value_type = _winreg.QueryValueEx(key, observed_code)
49 assert value_type == _winreg.REG_DWORD
58 new_stage, value_type = _winreg.QueryValueEx(key, observed_code)
59 assert value_type == _winreg.REG_DWORD
  /external/chromium_org/chrome/test/functional/rlz/
rlztest.py 19 import _winreg namespace
83 hkey = _winreg.OpenKey(_winreg.HKEY_CURRENT_USER,
85 except _winreg.error, err:
88 _winreg.DeleteKey(_winreg.HKEY_CURRENT_USER,
90 _winreg.DeleteKey(_winreg.HKEY_CURRENT_USER,
92 _winreg.DeleteKey(_winreg.HKEY_CURRENT_USER
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetypes.py 31 import _winreg namespace
33 _winreg = None variable
238 if not _winreg:
245 ctype = _winreg.EnumKey(mimedb, i)
257 with _winreg.OpenKey(_winreg.HKEY_CLASSES_ROOT,
261 with _winreg.OpenKey(mimedb, ctype) as key:
262 suffix, datatype = _winreg.QueryValueEx(key,
266 if datatype != _winreg.REG_SZ:
354 if _winreg
    [all...]
platform.py 545 # On Python 2.0 and later, emulate using _winreg
546 import _winreg namespace
547 RegQueryValueEx = _winreg.QueryValueEx
595 # Emulation using _winreg (added in Python 2.0) and
597 import _winreg namespace
599 RegQueryValueEx = _winreg.QueryValueEx
600 RegOpenKeyEx = _winreg.OpenKeyEx
601 RegCloseKey = _winreg.CloseKey
602 HKEY_LOCAL_MACHINE = _winreg.HKEY_LOCAL_MACHINE
    [all...]
urllib.py 1480 import _winreg namespace
1529 import _winreg namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetypes.py 31 import _winreg namespace
33 _winreg = None variable
238 if not _winreg:
245 ctype = _winreg.EnumKey(mimedb, i)
257 with _winreg.OpenKey(_winreg.HKEY_CLASSES_ROOT,
261 with _winreg.OpenKey(mimedb, ctype) as key:
262 suffix, datatype = _winreg.QueryValueEx(key,
266 if datatype != _winreg.REG_SZ:
354 if _winreg
    [all...]
platform.py 545 # On Python 2.0 and later, emulate using _winreg
546 import _winreg namespace
547 RegQueryValueEx = _winreg.QueryValueEx
595 # Emulation using _winreg (added in Python 2.0) and
597 import _winreg namespace
599 RegQueryValueEx = _winreg.QueryValueEx
600 RegOpenKeyEx = _winreg.OpenKeyEx
601 RegCloseKey = _winreg.CloseKey
602 HKEY_LOCAL_MACHINE = _winreg.HKEY_LOCAL_MACHINE
    [all...]
urllib.py 1480 import _winreg namespace
1529 import _winreg namespace
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_winsound.py 12 import _winreg namespace
22 key = _winreg.OpenKeyEx(_winreg.HKEY_CURRENT_USER,
24 value = _winreg.EnumValue(key, 0)[1]
test_winreg.py 11 test_support.import_module('_winreg')
13 from _winreg import *
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_winsound.py 12 import _winreg namespace
22 key = _winreg.OpenKeyEx(_winreg.HKEY_CURRENT_USER,
24 value = _winreg.EnumValue(key, 0)[1]
test_winreg.py 11 test_support.import_module('_winreg')
13 from _winreg import *
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_msvc9compiler.py 133 import _winreg namespace
134 HKCU = _winreg.HKEY_CURRENT_USER
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_msvc9compiler.py 133 import _winreg namespace
134 HKCU = _winreg.HKEY_CURRENT_USER
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
msvccompiler.py 24 import _winreg namespace
27 hkey_mod = _winreg
29 RegOpenKeyEx = _winreg.OpenKeyEx
30 RegEnumKey = _winreg.EnumKey
31 RegEnumValue = _winreg.EnumValue
32 RegError = _winreg.error
49 "Make sure that Python modules _winreg, "
msvc9compiler.py 28 import _winreg namespace
30 RegOpenKeyEx = _winreg.OpenKeyEx
31 RegEnumKey = _winreg.EnumKey
32 RegEnumValue = _winreg.EnumValue
33 RegError = _winreg.error
35 HKEYS = (_winreg.HKEY_USERS,
36 _winreg.HKEY_CURRENT_USER,
37 _winreg.HKEY_LOCAL_MACHINE,
38 _winreg.HKEY_CLASSES_ROOT)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
msvccompiler.py 24 import _winreg namespace
27 hkey_mod = _winreg
29 RegOpenKeyEx = _winreg.OpenKeyEx
30 RegEnumKey = _winreg.EnumKey
31 RegEnumValue = _winreg.EnumValue
32 RegError = _winreg.error
49 "Make sure that Python modules _winreg, "
msvc9compiler.py 28 import _winreg namespace
30 RegOpenKeyEx = _winreg.OpenKeyEx
31 RegEnumKey = _winreg.EnumKey
32 RegEnumValue = _winreg.EnumValue
33 RegError = _winreg.error
35 HKEYS = (_winreg.HKEY_USERS,
36 _winreg.HKEY_CURRENT_USER,
37 _winreg.HKEY_LOCAL_MACHINE,
38 _winreg.HKEY_CLASSES_ROOT)
  /external/chromium_org/chrome/test/pyautolib/
policy_base.py 75 import _winreg as winreg

Completed in 480 milliseconds