HomeSort by relevance Sort by last modified time
    Searched defs:timedOut (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/WebKit2/Platform/CoreIPC/
BinarySemaphore.cpp 54 bool timedOut = false;
56 timedOut = !m_condition.timedWait(m_mutex, absoluteTime);
57 if (timedOut)
Connection.cpp 417 bool timedOut = false;
418 while (!timedOut) {
438 timedOut = !m_syncMessageState->waitWhileDispatchingSentWin32Messages(absoluteTime, m_client->windowsToReceiveSentMessagesWhileWaitingForSyncReply());
440 timedOut = !m_syncMessageState->wait(absoluteTime);
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
TestShellCallback.java 21 public void timedOut(String url);
  /external/webkit/Source/JavaScriptCore/wtf/
MessageQueue.h 133 bool timedOut = false;
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) {
ThreadingWin.cpp 339 bool timedOut = (WaitForSingleObject(m_blockQueue, durationMilliseconds) == WAIT_TIMEOUT);
371 return !timedOut;
  /external/webkit/Source/WebCore/platform/graphics/android/
MediaTexture.cpp 236 bool timedOut = false;
237 while (m_newWindowRequest && !timedOut) {
239 timedOut = ret == TIMED_OUT;
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp     [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 564 milliseconds