Lines Matching refs:subKey
1040 char *subKey; in PyCreateKey() local
1043 if (!PyArg_ParseTuple(args, "Oz:CreateKey", &obKey, &subKey)) in PyCreateKey()
1047 rc = RegCreateKey(hKey, subKey, &retKey); in PyCreateKey()
1058 char *subKey; in PyCreateKeyEx() local
1063 if (!PyArg_ParseTuple(args, "Oz|ii:CreateKeyEx", &obKey, &subKey, in PyCreateKeyEx()
1069 rc = RegCreateKeyEx(hKey, subKey, res, NULL, (DWORD)NULL, in PyCreateKeyEx()
1081 char *subKey; in PyDeleteKey() local
1083 if (!PyArg_ParseTuple(args, "Os:DeleteKey", &obKey, &subKey)) in PyDeleteKey()
1087 rc = RegDeleteKey(hKey, subKey ); in PyDeleteKey()
1102 char *subKey; in PyDeleteKeyEx() local
1108 &obKey, &subKey, &sam, &res)) in PyDeleteKeyEx()
1125 rc = (*pfn)(hKey, subKey, sam, res); in PyDeleteKeyEx()
1139 char *subKey; in PyDeleteValue() local
1141 if (!PyArg_ParseTuple(args, "Oz:DeleteValue", &obKey, &subKey)) in PyDeleteValue()
1146 rc = RegDeleteValue(hKey, subKey); in PyDeleteValue()
1329 char *subKey; in PyLoadKey() local
1333 if (!PyArg_ParseTuple(args, "Oss:LoadKey", &obKey, &subKey, &fileName)) in PyLoadKey()
1338 rc = RegLoadKey(hKey, subKey, fileName ); in PyLoadKey()
1352 char *subKey; in PyOpenKey() local
1357 if (!PyArg_ParseTuple(args, "Oz|ii:OpenKey", &obKey, &subKey, in PyOpenKey()
1364 rc = RegOpenKeyEx(hKey, subKey, res, sam, &retKey); in PyOpenKey()
1406 char *subKey; in PyQueryValue() local
1414 if (!PyArg_ParseTuple(args, "Oz:QueryValue", &obKey, &subKey)) in PyQueryValue()
1420 rc = RegQueryValue(hKey, subKey, NULL, &retSize); in PyQueryValue()
1434 rc = RegQueryValue(hKey, subKey, retBuf, &retSize); in PyQueryValue()
1555 char *subKey; in PySetValue() local
1581 subKey = NULL; in PySetValue()
1583 subKey = PyString_AsString(obSubKey); in PySetValue()
1584 if (subKey == NULL) in PySetValue()
1588 rc = RegSetValue(hKey, subKey, REG_SZ, str, len+1); in PySetValue()