Searched refs:timedOut (Results 1 – 5 of 5) sorted by relevance
147 bool timedOut = false; in waitForMessageFilteredWithTimeout() local150 while (!m_killed && !timedOut && (found = m_queue.findIf(predicate)) == m_queue.end()) in waitForMessageFilteredWithTimeout()151 timedOut = !m_condition.timedWait(m_mutex, absoluteTime); in waitForMessageFilteredWithTimeout()153 ASSERT(!timedOut || absoluteTime != infiniteTime()); in waitForMessageFilteredWithTimeout()160 if (timedOut) { in waitForMessageFilteredWithTimeout()
330 bool timedOut = (WaitForSingleObject(m_blockQueue, durationMilliseconds) == WAIT_TIMEOUT); in timedWait() local362 return !timedOut; in timedWait()
97 boolean timedOut = false; in testFormResubmissionCancel()101 timedOut = true; in testFormResubmissionCancel()103 assertTrue("Page was reloaded despite selecting Cancel.", timedOut); in testFormResubmissionCancel()
1630 bool timedOut = false; in scopeStringMatches() local1699 timedOut = (currentTime() - startTime) >= maxScopingDuration; in scopeStringMatches()1700 } while (!timedOut); in scopeStringMatches()1715 if (timedOut) { in scopeStringMatches()
144 protected boolean timedOut = false; field in DecisionProbe