Searched defs:dwRc (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Installer/Loader/
H A DVBoxWindowsAdditions.cpp57 DWORD dwRc = MsgWaitForMultipleObjects(1, &hProcess, FALSE, 5000/*ms*/, QS_ALLEVENTS); local
66 if (dwRc == WAIT_OBJECT_0)
68 if ( dwRc != WAIT_TIMEOUT
69 && dwRc != WAIT_OBJECT_0 + 1)
71 fwprintf(stderr, L"ERROR: MsgWaitForMultipleObjects failed: %u (%u)\n", dwRc, GetLastError());
/vbox/src/VBox/Runtime/r3/
H A Dpoll.cpp243 DWORD dwRc = WaitForMultipleObjectsEx(cHandles, pThis->pahNative, local
247 if ( dwRc >= WAIT_OBJECT_0
248 && dwRc < WAIT_OBJECT_0 + cHandles)
250 else if (dwRc == WAIT_TIMEOUT)
252 else if (dwRc == WAIT_IO_COMPLETION)
254 else if (dwRc == WAIT_FAILED)
258 AssertMsgFailed(("%u (%#x)\n", dwRc, dwRc));
/vbox/src/VBox/Main/src-server/win/
H A DNetIf-win.cpp95 DWORD dwRc; local
105 dwRc = GetAdaptersAddresses(AF_UNSPEC, GAA_FLAG_INCLUDE_PREFIX, NULL, pAddresses, &uBufLen);
106 if (dwRc == ERROR_BUFFER_OVERFLOW)
113 dwRc = GetAdaptersAddresses(AF_UNSPEC, GAA_FLAG_INCLUDE_PREFIX, NULL, pAddresses, &uBufLen);
115 if (dwRc == NO_ERROR)
/vbox/src/VBox/Runtime/r3/win/
H A Dlocalipc-win.cpp883 DWORD dwRc = WaitForSingleObject(pThis->OverlappedIO.hEvent, 0); local
884 if (dwRc == WAIT_OBJECT_0)
926 else if (dwRc == WAIT_TIMEOUT)
931 if (dwRc == WAIT_ABANDONED)
999 DWORD dwRc = WaitForSingleObject(pThis->OverlappedIO.hEvent, INFINITE); local
1000 if (dwRc == WAIT_OBJECT_0)
1007 else if (dwRc == WAIT_TIMEOUT)
1009 else if (dwRc == WAIT_ABANDONED)
1141 DWORD dwRc = WaitForSingleObject(hWait, cMsMaxWait); local
1142 if (dwRc
1174 DWORD dwRc = GetLastError(); local
[all...]
H A Dpipe-win.cpp338 DWORD dwRc = WaitForSingleObject(pThis->Overlapped.hEvent, 0); local
339 if (dwRc == WAIT_OBJECT_0)
382 else if (dwRc == WAIT_TIMEOUT)
387 if (dwRc == WAIT_ABANDONED)
1114 DWORD dwRc = WaitForSingleObject(hWait, cMsMaxWait); local
1115 if (dwRc == WAIT_OBJECT_0)
1117 else if (dwRc == WAIT_TIMEOUT)
1119 else if (dwRc == WAIT_ABANDONED)
/vbox/src/VBox/Main/src-helper-apps/
H A DVBoxExtPackHelperApp.cpp1302 DWORD dwRc = MsgWaitForMultipleObjects(1, &Info.hProcess, FALSE, 5000/*ms*/, QS_ALLEVENTS); local
1303 if (dwRc == WAIT_OBJECT_0)
1305 if ( dwRc != WAIT_TIMEOUT
1306 && dwRc != WAIT_OBJECT_0 + 1)
1308 RTMsgError("MsgWaitForMultipleObjects returned: %#x (%d), err=%u", dwRc, dwRc, GetLastError());
/vbox/src/VBox/HostDrivers/VBoxNetFlt/win/cfg/
H A DVBoxNetCfg.cpp1960 DWORD dwRc; local
1970 dwRc = GetAdaptersAddresses(AF_UNSPEC, GAA_FLAG_INCLUDE_PREFIX, NULL, pAddresses, &uBufLen);
1971 if (dwRc == ERROR_BUFFER_OVERFLOW)
1978 dwRc = GetAdaptersAddresses(AF_UNSPEC, GAA_FLAG_INCLUDE_PREFIX, NULL, pAddresses, &uBufLen);
1980 if (dwRc == NO_ERROR)
2003 dwRc = ERROR_DHCP_ADDRESS_CONFLICT;
2006 NonStandardLogFlow(("GetAdaptersAddresses err (%d)\n", dwRc));
2011 if (dwRc != NO_ERROR)
2013 hr = HRESULT_FROM_WIN32(dwRc);

Completed in 55 milliseconds