Home | History | Annotate | Download | only in threading

Lines Matching refs:SimpleThread

14 SimpleThread::SimpleThread(const std::string& name_prefix)
19 SimpleThread::SimpleThread(const std::string& name_prefix,
25 SimpleThread::~SimpleThread() {
26 DCHECK(HasBeenStarted()) << "SimpleThread was never started.";
27 DCHECK(HasBeenJoined()) << "SimpleThread destroyed without being Join()ed.";
30 void SimpleThread::Start() {
38 void SimpleThread::Join() {
45 bool SimpleThread::HasBeenStarted() {
50 void SimpleThread::ThreadMain() {
65 : SimpleThread(name_prefix),
72 : SimpleThread(name_prefix, options),