Lines Matching defs:hkey
272 private LONG regCloseKey(in HKEY hkey) in regCloseKey()
307 private void regFlushKey(in HKEY hkey) in regFlushKey()
318 private HKEY regCreateKey(in HKEY hkey, in string subKey, in DWORD dwOptions, in REGSAM samDesired, in regCreateKey()
337 private void regDeleteKey(in HKEY hkey, in string subKey, in REGSAM samDesired) in regDeleteKey()
358 private void regDeleteValue(in HKEY hkey, in string valueName) in regDeleteValue()
370 private HKEY regDup(HKEY hkey) in regDup()
414 private LONG regEnumKeyName(in HKEY hkey, in DWORD index, ref wchar[] name, out DWORD cchName) in regEnumKeyName()
445 private LONG regEnumValueName(in HKEY hkey, in DWORD dwIndex, ref wchar[] name, out DWORD cchName) in regEnumValueName()
465 private LONG regGetNumSubKeys(in HKEY hkey, out DWORD cSubKeys, out DWORD cchSubKeyMaxLen) in regGetNumSubKeys()
476 private LONG regGetNumValues(in HKEY hkey, out DWORD cValues, out DWORD cchValueMaxLen) in regGetNumValues()
487 private REG_VALUE_TYPE regGetValueType(in HKEY hkey, in string name) in regGetValueType()
501 private HKEY regOpenKey(in HKEY hkey, in string subKey, in REGSAM samDesired) in regOpenKey()
516 private void regQueryValue(in HKEY hkey, string name, out string value, REG_VALUE_TYPE reqType) in regQueryValue()
587 private void regQueryValue(in HKEY hkey, in string name, out string[] value, REG_VALUE_TYPE reqType) in regQueryValue()
629 private void regQueryValue(in HKEY hkey, in string name, out uint value, REG_VALUE_TYPE reqType) in regQueryValue()
667 private void regQueryValue(in HKEY hkey, in string name, out ulong value, REG_VALUE_TYPE reqType) in regQueryValue()
692 private void regQueryValue(in HKEY hkey, in string name, out byte[] value, REG_VALUE_TYPE reqType) in regQueryValue()
727 private void regSetValue(in HKEY hkey, in string subKey, in REG_VALUE_TYPE type, in LPCVOID lpData,… in regSetValue()
799 this(HKEY hkey, string name, bool created) in this()
899 HKEY hkey = regCreateKey(m_hkey, name, 0, access, null, disposition); variable
940 HKEY hkey = regOpenKey(m_hkey, name, access); variable