Searched defs:lastError (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsException.java40 private int lastError; field in class:WindowsException
43 WindowsException(int lastError) { argument
44 this.lastError = lastError;
49 this.lastError = 0;
53 int lastError() { method in class:WindowsException
54 return lastError;
59 msg = WindowsNativeDispatcher.FormatMessage(lastError);
61 msg = "Unknown error: 0x" + Integer.toHexString(lastError);
74 if (lastError()
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DSocketChannelImpl.c62 int lastError = 0; local
79 lastError = WSAGetLastError();
94 handleSocketError(env, lastError);
122 int lastError = WSAGetLastError(); local
123 if (lastError == WSAEINPROGRESS) {
126 NET_ThrowNew(env, lastError, "getsockopt");
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Debug.cpp159 DWORD lastError = GetLastError(); local
167 lastError,
177 _snprintf(assertMsg, ASSERT_MSG_SIZE, AssertFmt, expr, file, line, lastError, msgBuffer);
H A DThemeReader.cpp244 DWORD lastError = GetLastError(); local
245 if (lastError != 0) {
251 lastError,
257 DTRACE_PRINTLN3("Error: hres=0x%x lastError=0x%x %s\n", hres,
258 lastError, msgBuffer);
/openjdk7/hotspot/src/os/windows/vm/
H A DperfMemory_windows.cpp520 DWORD lastError = GetLastError(); local
521 if (lastError != ERROR_INVALID_PARAMETER) {
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DWindowsNativeDispatcher.c95 static void throwWindowsException(JNIEnv* env, DWORD lastError) { argument
97 "(I)V", lastError);

Completed in 61 milliseconds