Home
last modified time | relevance | path

Searched refs:timedOut (Results 1 – 10 of 10) sorted by relevance

/external/webkit/Source/WebKit2/Platform/CoreIPC/
DBinarySemaphore.cpp54 bool timedOut = false; in wait() local
56 timedOut = !m_condition.timedWait(m_mutex, absoluteTime); in wait()
57 if (timedOut) in wait()
DConnection.cpp417 bool timedOut = false; in waitForSyncReply() local
418 while (!timedOut) { in waitForSyncReply()
438timedOut = !m_syncMessageState->waitWhileDispatchingSentWin32Messages(absoluteTime, m_client->wind… in waitForSyncReply()
440 timedOut = !m_syncMessageState->wait(absoluteTime); in waitForSyncReply()
/external/webkit/Source/JavaScriptCore/wtf/
DMessageQueue.h133 bool timedOut = false; in waitForMessageFilteredWithTimeout() local
136 while (!m_killed && !timedOut && (found = m_queue.findIf(predicate)) == m_queue.end()) in waitForMessageFilteredWithTimeout()
137 timedOut = !m_condition.timedWait(m_mutex, absoluteTime); in waitForMessageFilteredWithTimeout()
139 ASSERT(!timedOut || absoluteTime != infiniteTime()); in waitForMessageFilteredWithTimeout()
146 if (timedOut) { in waitForMessageFilteredWithTimeout()
DThreadingWin.cpp339 bool timedOut = (WaitForSingleObject(m_blockQueue, durationMilliseconds) == WAIT_TIMEOUT); in timedWait() local
371 return !timedOut; in timedWait()
/external/webkit/Source/WebCore/platform/graphics/android/layers/
DMediaTexture.cpp218 bool timedOut = false; in requestNativeWindowForVideo() local
219 while (m_newWindowRequest && !timedOut) { in requestNativeWindowForVideo()
221 timedOut = ret == TIMED_OUT; in requestNativeWindowForVideo()
/external/webkit/Source/WebCore/platform/network/win/
DNetworkStateNotifierWin.cpp89 void CALLBACK NetworkStateNotifier::addrChangeCallback(void* context, BOOLEAN timedOut) in addrChangeCallback() argument
/external/webkit/Source/WebCore/platform/network/
DNetworkStateNotifier.h106 static void CALLBACK addrChangeCallback(void*, BOOLEAN timedOut);
/external/webkit/Source/WebKit/chromium/src/
DWebFrameImpl.cpp1636 bool timedOut = false; in scopeStringMatches() local
1706 timedOut = (currentTime() - startTime) >= maxScopingDuration; in scopeStringMatches()
1707 } while (!timedOut); in scopeStringMatches()
1722 if (timedOut) { in scopeStringMatches()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DDecisionProbe.java144 protected boolean timedOut = false; field in DecisionProbe
/external/webkit/Source/JavaScriptCore/
DChangeLog-2007-10-144725 (KJS::Interpreter::timedOut):