Searched defs:dog (Results 1 - 3 of 3) sorted by relevance

/external/deqp/framework/qphelper/
H A DqpWatchDog.c21 * \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, do
89 qpWatchDog* dog = (qpWatchDog*)deCalloc(sizeof(qpWatchDog)); local
118 qpWatchDog_reset(qpWatchDog* dog) argument
129 qpWatchDog_destroy(qpWatchDog* dog) argument
143 qpWatchDog_touch(qpWatchDog* dog) argument
[all...]
/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
H A DManyConstructorsTest.java260 @AssistedInject Farm(@Assisted String pop, Dog dog) { argument
264 @AssistedInject Farm(@Assisted("mom") String mom, @Assisted("pop") String pop, Cow cow, Dog dog) { argument
/external/deqp/modules/gles2/performance/
H A Des2pTextureUploadTests.cpp369 qpWatchDog* dog = m_testCtx.getWatchDog(); local
370 if (dog)
371 qpWatchDog_touch(dog);

Completed in 1433 milliseconds