Home
last modified time | relevance | path

Searched refs:TimedWait (Results 1 – 9 of 9) sorted by relevance

/developtools/profiler/device/base/include/
Di_semaphore.h26 bool TimedWait(int seconds) in TimedWait() function
28 return TimedWait(seconds, 0); in TimedWait()
30 virtual bool TimedWait(int seconds, int nanoSeconds) = 0;
/developtools/profiler/device/base/src/
Dposix_semaphore.h28 bool TimedWait(int seconds, int nanoSeconds) override;
Dpthread_semaphore.h29 bool TimedWait(int seconds, int nanoSeconds) override;
Dstd_semaphore.h29 bool TimedWait(int seconds, int nanoSeconds) override;
Dposix_semaphore.cpp43 bool PosixSemaphore::TimedWait(int seconds, int nanoSeconds) in TimedWait() function in PosixSemaphore
Dstd_semaphore.cpp46 bool StdSemaphore::TimedWait(int seconds, int nanoSeconds) in TimedWait() function in StdSemaphore
Dpthread_semaphore.cpp54 bool PthreadSemaphore::TimedWait(int seconds, int nanoSeconds) in TimedWait() function in PthreadSemaphore
/developtools/profiler/device/base/test/unittest/
Dsemaphore_test.cpp43 EXPECT_FALSE(semaphore->TimedWait(1, 0));
/developtools/profiler/device/services/plugin_service/src/
Dplugin_service.cpp205 if (!sem->TimedWait(30)) { in StopPluginSession()