Lines Matching refs:hKey

140     private static native int[] WindowsRegOpenKey(int hKey, byte[] subKey,
145 private static int[] WindowsRegOpenKey1(int hKey, byte[] subKey,
147 int[] result = WindowsRegOpenKey(hKey, subKey, securityMask);
153 Integer.toHexString(hKey) + ".");
155 int handle = WindowsRegCreateKeyEx(hKey, subKey)[NATIVE_HANDLE];
157 return WindowsRegOpenKey(hKey, subKey, securityMask);
167 result = WindowsRegOpenKey(hKey, subKey, securityMask);
179 private static native int WindowsRegCloseKey(int hKey);
184 private static native int[] WindowsRegCreateKeyEx(int hKey, byte[] subKey);
189 private static int[] WindowsRegCreateKeyEx1(int hKey, byte[] subKey) {
190 int[] result = WindowsRegCreateKeyEx(hKey, subKey);
202 result = WindowsRegCreateKeyEx(hKey, subKey);
213 private static native int WindowsRegDeleteKey(int hKey, byte[] subKey);
218 private static native int WindowsRegFlushKey(int hKey);
223 private static int WindowsRegFlushKey1(int hKey) {
224 int result = WindowsRegFlushKey(hKey);
236 result = WindowsRegFlushKey(hKey);
248 private static native byte[] WindowsRegQueryValueEx(int hKey,
253 private static native int WindowsRegSetValueEx(int hKey, byte[] valueName,
258 private static int WindowsRegSetValueEx1(int hKey, byte[] valueName,
260 int result = WindowsRegSetValueEx(hKey, valueName, value);
272 result = WindowsRegSetValueEx(hKey, valueName, value);
284 private static native int WindowsRegDeleteValue(int hKey, byte[] valueName);
289 private static native int[] WindowsRegQueryInfoKey(int hKey);
294 private static int[] WindowsRegQueryInfoKey1(int hKey) {
295 int[] result = WindowsRegQueryInfoKey(hKey);
307 result = WindowsRegQueryInfoKey(hKey);
319 private static native byte[] WindowsRegEnumKeyEx(int hKey, int subKeyIndex,
325 private static byte[] WindowsRegEnumKeyEx1(int hKey, int subKeyIndex,
327 byte[] result = WindowsRegEnumKeyEx(hKey, subKeyIndex, maxKeyLength);
339 result = WindowsRegEnumKeyEx(hKey, subKeyIndex, maxKeyLength);
351 private static native byte[] WindowsRegEnumValue(int hKey, int valueIndex,
356 private static byte[] WindowsRegEnumValue1(int hKey, int valueIndex,
358 byte[] result = WindowsRegEnumValue(hKey, valueIndex,
371 result = WindowsRegEnumValue(hKey, valueIndex,