Home | History | Annotate | Download | only in install_test

Lines Matching refs:subkey

138   def DoesKeyExist(self, install_type, subkey):
143 subkey: Subkey to look up. It must be a ChromeRegistryValues type.
149 key_name = self._GetKeyName(install_type, subkey)
159 def GetKeyValue(self, install_type, subkey):
160 """Gets value of the specified subkey from the registry.
164 subkey: ChromeRegistryValue type representing the value to be returned.
167 A string representing the subkey value.
170 key_name = self._GetKeyName(install_type, subkey)
172 reg_value = str(_winreg.QueryValueEx(hkey, subkey)[0])