Searched refs:targetTime (Results 1 – 2 of 2) sorted by relevance
228 GTimeVal targetTime; in timedWait() local229 targetTime.tv_sec = timeSeconds; in timedWait()230 targetTime.tv_usec = timeMicroseconds; in timedWait()232 return g_cond_timed_wait(m_condition.get(), mutex.impl().get(), &targetTime); in timedWait()
377 timespec targetTime; in timedWait() local378 targetTime.tv_sec = timeSeconds; in timedWait()379 targetTime.tv_nsec = timeNanoseconds; in timedWait()381 return pthread_cond_timedwait(&m_condition, &mutex.impl(), &targetTime) == 0; in timedWait()