Home | History | Annotate | Download | only in threading

Lines Matching full:dcheck

26   DCHECK(HasBeenStarted()) << "SimpleThread was never started.";
27 DCHECK(HasBeenJoined()) << "SimpleThread destroyed without being Join()ed.";
31 DCHECK(!HasBeenStarted()) << "Tried to Start a thread multiple times.";
33 DCHECK(success);
39 DCHECK(HasBeenStarted()) << "Tried to Join a never-started thread.";
40 DCHECK(!HasBeenJoined()) << "Tried to Join a thread multiple times.";
80 DCHECK(delegate_) << "Tried to call Run without a delegate (called twice?)";
94 DCHECK(threads_.empty());
95 DCHECK(delegates_.empty());
96 DCHECK(!dry_.IsSignaled());
100 DCHECK(threads_.empty()) << "Start() called with outstanding threads.";
109 DCHECK(!threads_.empty()) << "JoinAll() called with no outstanding threads.";
120 DCHECK(delegates_.empty());
142 DCHECK(!delegates_.empty());