Lines Matching defs:index
509 "EnumKey($module, key, index, /)\n"
516 " index\n"
517 " An integer that identifies the index of the key to retrieve.\n"
527 winreg_EnumKey_impl(PyObject *module, HKEY key, int index);
534 int index;
542 index = _PyLong_AsInt(args[1]);
543 if (index == -1 && PyErr_Occurred()) {
546 return_value = winreg_EnumKey_impl(module, key, index);
553 "EnumValue($module, key, index, /)\n"
560 " index\n"
561 " An integer that identifies the index of the value to retrieve.\n"
580 winreg_EnumValue_impl(PyObject *module, HKEY key, int index);
587 int index;
595 index = _PyLong_AsInt(args[1]);
596 if (index == -1 && PyErr_Occurred()) {
599 return_value = winreg_EnumValue_impl(module, key, index);