Searched refs:timedOut (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DBinarySemaphore.cpp54 bool timedOut = false; local
56 timedOut = !m_condition.timedWait(m_mutex, absoluteTime);
57 if (timedOut)
H A DConnection.cpp417 bool timedOut = false; local
418 while (!timedOut) {
438 timedOut = !m_syncMessageState->waitWhileDispatchingSentWin32Messages(absoluteTime, m_client->windowsToReceiveSentMessagesWhileWaitingForSyncReply());
440 timedOut = !m_syncMessageState->wait(absoluteTime);
/external/webkit/Source/JavaScriptCore/wtf/
H A DMessageQueue.h133 bool timedOut = false; local
136 while (!m_killed && !timedOut && (found = m_queue.findIf(predicate)) == m_queue.end())
137 timedOut = !m_condition.timedWait(m_mutex, absoluteTime);
139 ASSERT(!timedOut || absoluteTime != infiniteTime());
146 if (timedOut) {
H A DThreadingWin.cpp339 bool timedOut = (WaitForSingleObject(m_blockQueue, durationMilliseconds) == WAIT_TIMEOUT); local
371 return !timedOut;
/external/webkit/Source/WebCore/platform/network/win/
H A DNetworkStateNotifierWin.cpp89 void CALLBACK NetworkStateNotifier::addrChangeCallback(void* context, BOOLEAN timedOut) argument
/external/webkit/Source/WebCore/platform/network/
H A DNetworkStateNotifier.h106 static void CALLBACK addrChangeCallback(void*, BOOLEAN timedOut);
/external/webkit/Source/WebCore/platform/graphics/android/
H A DMediaTexture.cpp236 bool timedOut = false; local
237 while (m_newWindowRequest && !timedOut) {
239 timedOut = ret == TIMED_OUT;
/external/webkit/Source/WebKit/chromium/src/
H A DWebFrameImpl.cpp1636 bool timedOut = false; local
1706 timedOut = (currentTime() - startTime) >= maxScopingDuration;
1707 } while (!timedOut);
1722 if (timedOut) {

Completed in 149 milliseconds