Lines Matching refs:cSecTimeout
63 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 = kcSecCleanupTimeout):
177 return TestBoxBaseTask.terminate(self, cSecTimeout);
449 def _monitorChild(self, cSecTimeout, fTryKillCommand = True, oChild = None):
452 cSecTimeout allows, we'll terminate it.
491 if cSecElapsed > cSecTimeout:
492 self._log('Timeout: %u secs (limit %u secs)' % (cSecElapsed, cSecTimeout));
497 cSecLeft = cSecTimeout - cSecElapsed;
764 def __init__(self, oTestBoxScript, idResult, sScriptZips, sScriptCmdLine, cSecTimeout):
772 TestBoxTestDriverTask.__init__(self, oTestBoxScript, self._threadProc, cSecTimeout, idResult, sScriptCmdLine);