Home
last modified time | relevance | path

Searched refs:timeInMSec (Results 1 – 4 of 4) sorted by relevance

/cts/suite/audio_quality/lib/src/
DSemaphore.cpp46 bool Semaphore::timedWait(int timeInMSec) in timedWait() argument
55 int secToGo = timeInMSec / ONE_SEC_IN_MSEC; in timedWait()
56 int msecToGo = timeInMSec - (ONE_SEC_IN_MSEC * secToGo); in timedWait()
/cts/suite/audio_quality/lib/include/audio/
DRemoteAudio.h79 bool waitForCompletion(android::sp<android::MessageHandler>& command, int timeInMSec);
121 bool timedWait(int timeInMSec) { in timedWait() argument
122 return mClientWait.timedWait(timeInMSec); in timedWait()
/cts/suite/audio_quality/lib/include/
DSemaphore.h39 bool timedWait(int timeInMSec);
/cts/suite/audio_quality/lib/src/audio/
DRemoteAudio.cpp156 bool RemoteAudio::waitForCompletion(android::sp<android::MessageHandler>& command, int timeInMSec) in waitForCompletion() argument
158 LOGV("waitForCompletion %d", timeInMSec); in waitForCompletion()
159 return toCommandHandler(command)->timedWait(timeInMSec); in waitForCompletion()