Home
last modified time | relevance | path

Searched refs:guarded_bool_ (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/net/tools/epoll_server/
Depoll_server.cc343 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