Searched defs:cMsLinkUpDelay (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/Network/
H A DDevVirtioNet.cpp169 uint32_t cMsLinkUpDelay; member in struct:VNetState_st
521 int rc = TMTimerSetMillies(pThis->pLinkUpTimer, pThis->cMsLinkUpDelay);
2000 rc = CFGMR3QueryU32Def(pCfg, "LinkUpDelay", (uint32_t*)&pThis->cMsLinkUpDelay, 5000); /* ms */
2004 Assert(pThis->cMsLinkUpDelay <= 300000); /* less than 5 minutes */
2005 if (pThis->cMsLinkUpDelay > 5000 || pThis->cMsLinkUpDelay < 100)
2008 INSTANCE(pThis), pThis->cMsLinkUpDelay / 1000));
2011 INSTANCE(pThis), pThis->cMsLinkUpDelay / 1000));
H A DDevPCNet.cpp410 uint32_t cMsLinkUpDelay; member in struct:PCNETSTATE
4162 int rc = TMTimerSetMillies(pThis->pTimerRestore, pThis->cMsLinkUpDelay);
4602 int rc = TMTimerSetMillies(pThis->pTimerRestore, pThis->cMsLinkUpDelay);
4884 rc = CFGMR3QueryU32Def(pCfg, "LinkUpDelay", (uint32_t*)&pThis->cMsLinkUpDelay, 5000); /* ms */
4888 Assert(pThis->cMsLinkUpDelay <= 300000); /* less than 5 minutes */
4889 if (pThis->cMsLinkUpDelay > 5000 || pThis->cMsLinkUpDelay < 100)
4892 iInstance, pThis->cMsLinkUpDelay / 1000));
4895 iInstance, pThis->cMsLinkUpDelay / 1000));
H A DDevE1000.cpp1089 uint32_t cMsLinkUpDelay; member in struct:E1kState_st
2518 pThis->szPrf, pThis->cMsLinkUpDelay / 1000));
2519 e1kArmTimer(pThis, pThis->CTX_SUFF(pLUTimer), pThis->cMsLinkUpDelay * 1000);
6816 && pThis->cMsLinkUpDelay)
7518 rc = CFGMR3QueryU32Def(pCfg, "LinkUpDelay", (uint32_t*)&pThis->cMsLinkUpDelay, 5000); /* ms */
7522 Assert(pThis->cMsLinkUpDelay <= 300000); /* less than 5 minutes */
7523 if (pThis->cMsLinkUpDelay > 5000)
7524 LogRel(("%s WARNING! Link up delay is set to %u seconds!\n", pThis->szPrf, pThis->cMsLinkUpDelay / 1000));
7525 else if (pThis->cMsLinkUpDelay == 0)
7529 g_Chips[pThis->eChip].pcszName, pThis->cMsLinkUpDelay,
[all...]

Completed in 88 milliseconds