Searched refs:cSecTimeout (Results 1 - 13 of 13) sorted by relevance

/vbox/src/VBox/ValidationKit/testmanager/core/
H A Dtestcaseargs.py67 'cSecTimeout', 'sTestBoxReqExpr', 'sBuildReqExpr', ];
83 self.cSecTimeout = None;
103 self.cSecTimeout = aoRow[7];
131 def initFromValues(self, sArgs, cSecTimeout = None, sTestBoxReqExpr = None, sBuildReqExpr = None, # pylint: disable=R0913
145 self.cSecTimeout = utils.parseIntervalSeconds(cSecTimeout);
153 if sAttr == 'cSecTimeout':
154 aoNilValues.insert(0, ''); # Prettier NULL value for cSecTimeout.
160 if sAttr == 'cSecTimeout' and oValue not in aoNilValues: # Allow human readable interval formats.
H A Dtestcase.py459 self.cSecTimeout = 10; # Init with minimum timeout value
481 self.cSecTimeout = aoRow[8];
514 if sAttr == 'cSecTimeout' and oValue not in aoNilValues: # Allow human readable interval formats.
1137 ( uidAuthor, oData.sName, oData.sDescription, oData.fEnabled, oData.cSecTimeout,
1154 ' idTestCase, uidAuthor, sArgs, cSecTimeout,\n'
1157 , ( oData.idTestCase, uidAuthor, oVar.sArgs, oVar.cSecTimeout,
1192 oData.fEnabled, oData.cSecTimeout, oData.sTestBoxReqExpr,
1277 ' idTestCase, uidAuthor, sArgs, cSecTimeout,\n'
1280 , ( oData.idTestCase, uidAuthor, oNewVar.sArgs, oNewVar.cSecTimeout,
1286 if oNewVar.cSecTimeout
[all...]
H A Dschedulerbase.py741 cSecTimeout = oTestEx.cSecTimeout if oTestEx.cSecTimeout is not None else oTestEx.oTestCase.cSecTimeout;
742 cSecTimeout = cSecTimeout * oTestBox.pctScaleTimeout / 100;
750 constants.tbresp.EXEC_PARAM_TIMEOUT: cSecTimeout,
/vbox/src/VBox/ValidationKit/testboxscript/
H A Dtestboxtasks.py63 def __init__(self, oTestBoxScript, cSecTimeout, fnThreadProc):
65 self._cSecTimeout = cSecTimeout;
102 def wait(self, cSecTimeout):
106 if fRunning is True and cSecTimeout > 0:
107 self._oCv.wait(cSecTimeout)
111 def terminate(self, cSecTimeout = kcSecTerminateTimeout):
117 return self.wait(cSecTimeout);
158 def __init__(self, oTestBoxScript, fnThreadProc, cSecTimeout, idResult, sScriptCmdLine):
173 TestBoxBaseTask.__init__(self, oTestBoxScript, cSecTimeout, fnThreadProc);
175 def terminate(self, cSecTimeout
[all...]
H A Dtestboxcommand.py112 cSecTimeout = oResponse.getIntChecked( constants.tbresp.EXEC_PARAM_TIMEOUT, 30);
134 sScriptCmdLine = sScriptCmdLine, cSecTimeout = cSecTimeout);
/vbox/src/VBox/ValidationKit/testmanager/webui/
H A Dwuiadmintestcase.py66 utils.formatIntervalSeconds(oEntry.cSecTimeout),
87 % ( utils.formatIntervalSeconds(oTmp.cSecTimeout) if oTmp.cSecTimeout is not None else 'Default',
177 utils.formatIntervalSeconds2(oData.cSecTimeout), 'Default timeout')
H A Dwuiadmintestgroup.py140 % ( utils.formatIntervalSeconds(oMember.oTestCase.cSecTimeout if oVar.cSecTimeout is None
141 else oVar.cSecTimeout),
H A Dwuihlpform.py405 sHtml += 'function %s_extendListEx(cGangMembers, cSecTimeout, sArgs, sTestBoxReqExpr, sBuildReqExpr)\n' % (sName,);
425 '<input name="%s[\' + sId + \'][%s]" id="%s[\' + sId + \'][1]" value="\'+ cSecTimeout + \'"></td>\';\n' \
469 escapeAttr(str(oVarDefaults.cGangMembers)), escapeAttr(str(oVarDefaults.cSecTimeout)),
474 sSecTimeoutDef = escapeAttr(str(oVarDefaults.cSecTimeout));
540 utils.formatIntervalSeconds2(oVar.cSecTimeout), sReadOnlyAttr, );
690 'Default' if oVar.cSecTimeout is None else oVar.cSecTimeout,
H A Dwuitestresult.py350 cSecCfgTimeout = oTestCaseEx.cSecTimeout if oTestVarEx.cSecTimeout is None else oTestVarEx.cSecTimeout;
H A Dwuibase.py474 cSecTimeout = self.getStringParam(sPrefix + '[cSecTimeout]', sDefault = '')
478 oListEntryTestCaseArgs.append((fArgsChecked, idTestCaseArgs, sArgs, cSecTimeout, cGangMembers))
/vbox/src/VBox/ValidationKit/utils/network/
H A DNetPerf.cpp155 uint32_t cSecTimeout; member in struct:NETPERFPARAMS
546 rc = RTTimerLRStart(hTimer, pParams->cSecTimeout * UINT64_C(1000000000) /* nsec */);
1014 pParams->cSecTimeout = NETPERF_DEFAULT_WARMUP;
1057 { false, true, &pParams->cSecTimeout, NETPERF_MIN_TIMEOUT, NETPERF_MAX_TIMEOUT, "timeout" },
1168 netperfModeToString(pParams->enmMode), pParams->cSecTimeout, pParams->cbPacket);
1171 netperfModeToString(pParams->enmMode), pParams->cSecTimeout, pParams->cbPacket);
1475 rc = RTTimerLRStart(hTimer, pParams->cSecTimeout * UINT64_C(1000000000) /* nsec */);
1594 RTTestISubF("TCP - %u s, %u bytes%s", pParams->cSecTimeout,
1635 pParams->cSecTimeout,
1667 pszServer, pParams->uPort, pParams->cSecTimeout);
[all...]
/vbox/src/VBox/ValidationKit/testdriver/
H A Dvboxinstaller.py485 def _waitForTestManagerConnectivity(self, cSecTimeout):
499 if cSecElapsed >= cSecTimeout:
500 reporter.log('_waitForTestManagerConnectivity: Giving up after %u secs.' % (cSecTimeout,));
505 reporter.log('_waitForTestManagerConnectivity: Waited %s secs.' % (cSecTimeout,));
/vbox/src/VBox/ValidationKit/tests/shutdown/
H A DtdGuestOsShutdown1.py238 def _SuspendResume(self, cSecTimeout):

Completed in 70 milliseconds