Home
last modified time | relevance | path

Searched refs:timeoutSecs (Results 1 – 2 of 2) sorted by relevance

/external/dng_sdk/source/
Ddng_mutex.cpp311 bool dng_condition::Wait (dng_mutex &mutex, double timeoutSecs) in Wait() argument
326 if (timeoutSecs < 0) in Wait()
340 timeoutSecs += now.tv_sec; in Wait()
341 timeoutSecs += now.tv_nsec / 1000000000.0; in Wait()
343 now.tv_sec = (long) timeoutSecs; in Wait()
344 now.tv_nsec = (long) ((timeoutSecs - now.tv_sec) * 1000000000); in Wait()
Ddng_mutex.h149 bool Wait (dng_mutex &mutex, double timeoutSecs = -1.0);