Home | History | Annotate | Download | only in threading

Lines Matching defs:SimpleThread

13 SimpleThread::SimpleThread(const std::string& name_prefix)
18 SimpleThread::SimpleThread(const std::string& name_prefix,
24 SimpleThread::~SimpleThread() {
25 DCHECK(HasBeenStarted()) << "SimpleThread was never started.";
26 DCHECK(HasBeenJoined()) << "SimpleThread destroyed without being Join()ed.";
29 void SimpleThread::Start() {
36 void SimpleThread::Join() {
43 void SimpleThread::ThreadMain() {
58 : SimpleThread(name_prefix),
65 : SimpleThread(name_prefix, options),