Searched refs:guarded_bool_ (Results 1 – 1 of 1) sorted by relevance
343 explicit TrueFalseGuard(bool* guarded_bool) : guarded_bool_(guarded_bool) { in TrueFalseGuard()344 DCHECK(guarded_bool_ != NULL); in TrueFalseGuard()345 DCHECK(*guarded_bool_ == false); in TrueFalseGuard()346 *guarded_bool_ = true; in TrueFalseGuard()349 *guarded_bool_ = false; in ~TrueFalseGuard()352 bool* guarded_bool_; member in net::TrueFalseGuard