Searched refs:ThreadPosix (Results 1 – 3 of 3) sorted by relevance
/external/webrtc/src/system_wrappers/source/ |
D | thread_posix.cc | 72 static_cast<ThreadPosix*>(lpParameter)->Run(); in StartThread() 77 ThreadWrapper* ThreadPosix::Create(ThreadRunFunction func, ThreadObj obj, in Create() 80 ThreadPosix* ptr = new ThreadPosix(func, obj, prio, threadName); in Create() 94 ThreadPosix::ThreadPosix(ThreadRunFunction func, ThreadObj obj, in ThreadPosix() function in webrtc::ThreadPosix 129 int ThreadPosix::Construct() in Construct() 153 ThreadPosix::~ThreadPosix() in ~ThreadPosix() 164 bool ThreadPosix::Start(unsigned int& threadID) in Start() 166 bool ThreadPosix::Start(unsigned int& /*threadID*/) in Start() 238 bool ThreadPosix::SetAffinity(const int* processorNumbers, in SetAffinity() 273 bool ThreadPosix::SetAffinity(const int* , const unsigned int) in SetAffinity() [all …]
|
D | thread_posix.h | 22 class ThreadPosix : public ThreadWrapper 28 ThreadPosix(ThreadRunFunction func, ThreadObj obj, ThreadPriority prio, 30 ~ThreadPosix();
|
D | thread.cc | 27 return ThreadPosix::Create(func, obj, prio, threadName); in CreateThread()
|