Searched refs:timedOut (Results 1 – 5 of 5) sorted by relevance
134 bool timedOut = false; in waitForMessageWithTimeout() local136 while (!m_killed && !timedOut && m_queue.isEmpty()) in waitForMessageWithTimeout()137 timedOut = !m_condition.timedWait(m_mutex, absoluteTime); in waitForMessageWithTimeout()139 ASSERT(!timedOut || absoluteTime != infiniteTime()); in waitForMessageWithTimeout()146 if (timedOut) { in waitForMessageWithTimeout()
235 bool timedOut = (WaitForSingleObject(m_blockQueue, durationMilliseconds) == WAIT_TIMEOUT); in timedWait() local267 return !timedOut; in timedWait()
96 boolean timedOut = false; in testFormResubmissionCancel()100 timedOut = true; in testFormResubmissionCancel()102 assertTrue("Page was reloaded despite selecting Cancel.", timedOut); in testFormResubmissionCancel()
254 bool timedOut = false; in scopeStringMatches() local322 timedOut = (currentTime() - startTime) >= maxScopingDuration; in scopeStringMatches()323 } while (!timedOut); in scopeStringMatches()338 if (timedOut) { in scopeStringMatches()
144 protected boolean timedOut = false; field in DecisionProbe