Lines Matching refs:SimpleThread
14 SimpleThread::SimpleThread(const std::string& name_prefix) in SimpleThread() function in base::SimpleThread
15 : SimpleThread(name_prefix, Options()) {} in SimpleThread()
17 SimpleThread::SimpleThread(const std::string& name_prefix, in SimpleThread() function in base::SimpleThread
24 SimpleThread::~SimpleThread() { in ~SimpleThread()
30 void SimpleThread::Start() { in Start()
36 void SimpleThread::Join() { in Join()
46 void SimpleThread::StartAsync() { in StartAsync()
59 PlatformThreadId SimpleThread::tid() { in tid()
64 bool SimpleThread::HasBeenStarted() { in HasBeenStarted()
69 void SimpleThread::ThreadMain() { in ThreadMain()
91 : SimpleThread(name_prefix, options), in DelegateSimpleThread()