Searched refs:TimedWait (Results 1 – 9 of 9) sorted by relevance
26 bool TimedWait(int seconds) in TimedWait() function28 return TimedWait(seconds, 0); in TimedWait()30 virtual bool TimedWait(int seconds, int nanoSeconds) = 0;
28 bool TimedWait(int seconds, int nanoSeconds) override;
29 bool TimedWait(int seconds, int nanoSeconds) override;
43 bool PosixSemaphore::TimedWait(int seconds, int nanoSeconds) in TimedWait() function in PosixSemaphore
46 bool StdSemaphore::TimedWait(int seconds, int nanoSeconds) in TimedWait() function in StdSemaphore
54 bool PthreadSemaphore::TimedWait(int seconds, int nanoSeconds) in TimedWait() function in PthreadSemaphore
43 EXPECT_FALSE(semaphore->TimedWait(1, 0));
205 if (!sem->TimedWait(30)) { in StopPluginSession()