Searched refs:cMsDelay (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Runtime/tools/
H A DRTShutdown.cpp61 RTMSINTERVAL cMsDelay = 0; local
79 case 'd': cMsDelay = ValueUnion.u32; break;
98 rc = RTSystemShutdown(cMsDelay, fFlags, pszMsg);
100 return RTMsgErrorExit(RTEXITCODE_FAILURE, "RTSystemShutdown(%u, %#x, \"%s\") returned %Rrc\n", cMsDelay, fFlags, pszMsg, rc);
/vbox/src/VBox/Runtime/generic/
H A DRTSystemShutdown-generic.cpp38 RTDECL(int) RTSystemShutdown(RTMSINTERVAL cMsDelay, uint32_t fFlags, const char *pszLogMsg) argument
/vbox/src/VBox/Runtime/r3/linux/
H A DRTSystemShutdown-linux.cpp41 RTDECL(int) RTSystemShutdown(RTMSINTERVAL cMsDelay, uint32_t fFlags, const char *pszLogMsg) argument
72 if (cMsDelay < 500)
75 RTStrPrintf(szWhen, sizeof(szWhen), "%u", (unsigned)((cMsDelay + 499) / 1000));
/vbox/src/VBox/Runtime/r3/solaris/
H A DRTSystemShutdown-solaris.cpp41 RTDECL(int) RTSystemShutdown(RTMSINTERVAL cMsDelay, uint32_t fFlags, const char *pszLogMsg) argument
74 if (cMsDelay < 500)
77 RTStrPrintf(szWhen, sizeof(szWhen), "%u", (unsigned)((cMsDelay + 499) / 1000));
/vbox/include/iprt/
H A Dsystem.h236 * @param cMsDelay The delay before the actual reboot. If this is
243 RTDECL(int) RTSystemShutdown(RTMSINTERVAL cMsDelay, uint32_t fFlags, const char *pszLogMsg);
/vbox/src/VBox/Runtime/r3/win/
H A DRTSystemShutdown-win.cpp41 RTDECL(int) RTSystemShutdown(RTMSINTERVAL cMsDelay, uint32_t fFlags, const char *pszLogMsg) argument
50 DWORD cSecsTimeout = (cMsDelay + 499) / 1000;

Completed in 55 milliseconds