Home
last modified time | relevance | path

Searched refs:ThreadPosix (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/src/system_wrappers/source/
Dthread_posix.cc72 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 …]
Dthread_posix.h22 class ThreadPosix : public ThreadWrapper
28 ThreadPosix(ThreadRunFunction func, ThreadObj obj, ThreadPriority prio,
30 ~ThreadPosix();
Dthread.cc27 return ThreadPosix::Create(func, obj, prio, threadName); in CreateThread()