Lines Matching refs:hKey
1017 HKEY hKey; in PyConnectRegistry() local
1024 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyConnectRegistry()
1027 rc = RegConnectRegistry(szCompName, hKey, &retKey); in PyConnectRegistry()
1038 HKEY hKey; in PyCreateKey() local
1045 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyCreateKey()
1047 rc = RegCreateKey(hKey, subKey, &retKey); in PyCreateKey()
1056 HKEY hKey; in PyCreateKeyEx() local
1066 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyCreateKeyEx()
1069 rc = RegCreateKeyEx(hKey, subKey, res, NULL, (DWORD)NULL, in PyCreateKeyEx()
1079 HKEY hKey; in PyDeleteKey() local
1085 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyDeleteKey()
1087 rc = RegDeleteKey(hKey, subKey ); in PyDeleteKey()
1097 HKEY hKey; in PyDeleteKeyEx() local
1110 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyDeleteKeyEx()
1125 rc = (*pfn)(hKey, subKey, sam, res); in PyDeleteKeyEx()
1137 HKEY hKey; in PyDeleteValue() local
1143 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyDeleteValue()
1146 rc = RegDeleteValue(hKey, subKey); in PyDeleteValue()
1158 HKEY hKey; in PyEnumKey() local
1175 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyEnumKey()
1179 rc = RegEnumKeyEx(hKey, index, tmpbuf, &len, NULL, NULL, NULL, NULL); in PyEnumKey()
1191 HKEY hKey; in PyEnumValue() local
1206 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyEnumValue()
1209 if ((rc = RegQueryInfoKey(hKey, NULL, NULL, NULL, NULL, NULL, NULL, in PyEnumValue()
1230 rc = RegEnumValue(hKey, in PyEnumValue()
1309 HKEY hKey; in PyFlushKey() local
1314 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyFlushKey()
1317 rc = RegFlushKey(hKey); in PyFlushKey()
1327 HKEY hKey; in PyLoadKey() local
1335 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyLoadKey()
1338 rc = RegLoadKey(hKey, subKey, fileName ); in PyLoadKey()
1349 HKEY hKey; in PyOpenKey() local
1360 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyOpenKey()
1364 rc = RegOpenKeyEx(hKey, subKey, res, sam, &retKey); in PyOpenKey()
1375 HKEY hKey; in PyQueryInfoKey() local
1385 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyQueryInfoKey()
1387 if ((rc = RegQueryInfoKey(hKey, NULL, NULL, 0, &nSubKeys, NULL, NULL, in PyQueryInfoKey()
1404 HKEY hKey; in PyQueryValue() local
1417 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyQueryValue()
1420 rc = RegQueryValue(hKey, subKey, NULL, &retSize); in PyQueryValue()
1434 rc = RegQueryValue(hKey, subKey, retBuf, &retSize); in PyQueryValue()
1466 HKEY hKey; in PyQueryValueEx() local
1480 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyQueryValueEx()
1483 rc = RegQueryValueEx(hKey, valueName, NULL, NULL, NULL, &bufSize); in PyQueryValueEx()
1495 rc = RegQueryValueEx(hKey, valueName, NULL, &typ, in PyQueryValueEx()
1527 HKEY hKey; in PySaveKey() local
1535 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PySaveKey()
1542 rc = RegSaveKey(hKey, fileName, pSA ); in PySaveKey()
1553 HKEY hKey; in PySetValue() local
1568 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PySetValue()
1588 rc = RegSetValue(hKey, subKey, REG_SZ, str, len+1); in PySetValue()
1599 HKEY hKey; in PySetValueEx() local
1617 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PySetValueEx()
1627 rc = RegSetValueEx(hKey, valueName, 0, typ, data, len); in PySetValueEx()
1640 HKEY hKey; in PyDisableReflectionKey() local
1649 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyDisableReflectionKey()
1664 rc = (*pfn)(hKey); in PyDisableReflectionKey()
1676 HKEY hKey; in PyEnableReflectionKey() local
1685 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyEnableReflectionKey()
1700 rc = (*pfn)(hKey); in PyEnableReflectionKey()
1712 HKEY hKey; in PyQueryReflectionKey() local
1722 if (!PyHKEY_AsHKEY(obKey, &hKey, FALSE)) in PyQueryReflectionKey()
1737 rc = (*pfn)(hKey, &result); in PyQueryReflectionKey()