Home | History | Annotate | Download | only in threading

Lines Matching refs:DCHECK

25   DCHECK(HasBeenStarted()) << "SimpleThread was never started.";
26 DCHECK(HasBeenJoined()) << "SimpleThread destroyed without being Join()ed.";
30 DCHECK(!HasBeenStarted()) << "Tried to Start a thread multiple times.";
37 DCHECK(HasBeenStarted()) << "Tried to Join a never-started thread.";
38 DCHECK(!HasBeenJoined()) << "Tried to Join a thread multiple times.";
73 DCHECK(delegate_) << "Tried to call Run without a delegate (called twice?)";
87 DCHECK(threads_.empty());
88 DCHECK(delegates_.empty());
89 DCHECK(!dry_.IsSignaled());
93 DCHECK(threads_.empty()) << "Start() called with outstanding threads.";
102 DCHECK(!threads_.empty()) << "JoinAll() called with no outstanding threads.";
113 DCHECK(delegates_.empty());
135 DCHECK(!delegates_.empty());