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

  /external/deqp/framework/qphelper/
qpWatchDog.c 21 * \brief Watch dog for detecting timeouts
62 qpWatchDog* dog = (qpWatchDog*)arg; local
63 DE_ASSERT(dog);
67 while (dog->status == STATUS_THREAD_RUNNING)
70 int totalSecondsPassed = (int)((curTime - dog->resetTime) / 1000000ull);
71 int secondsSinceLastTouch = (int)((curTime - dog->lastTouchTime) / 1000000ull);
73 if ((secondsSinceLastTouch > dog->intervalTimeLimit) || (totalSecondsPassed > dog->totalTimeLimit))
76 dog->timeOutFunc(dog, dog->timeOutUserPtr)
89 qpWatchDog* dog = (qpWatchDog*)deCalloc(sizeof(qpWatchDog)); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
StringBuilderTest.java 51 sb.append("Dog");
52 String dog = sb.toString(); local
61 assertEquals("newGuineaSingingDog", dog);
  /external/deqp/modules/gles2/performance/
es2pTextureUploadTests.cpp 369 qpWatchDog* dog = m_testCtx.getWatchDog(); local
370 if (dog)
371 qpWatchDog_touch(dog);

Completed in 119 milliseconds