Home
last modified time | relevance | path

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

/external/chromium_org/base/threading/
Dthread_restrictions.h225 static bool SetWaitAllowed(bool allowed);
227 static bool SetWaitAllowed(bool allowed) { return true; } in SetWaitAllowed() function
236 ScopedAllowWait() { previous_value_ = SetWaitAllowed(true); } in ScopedAllowWait()
237 ~ScopedAllowWait() { SetWaitAllowed(previous_value_); } in ~ScopedAllowWait()
Dthread_restrictions.cc77 bool ThreadRestrictions::SetWaitAllowed(bool allowed) { in SetWaitAllowed() function in base::ThreadRestrictions
/external/chromium_org/content/browser/
Dbrowser_shutdown_profile_dumper.cc61 bool original_wait_allowed = base::ThreadRestrictions::SetWaitAllowed(true); in WriteTracesToDisc()
63 base::ThreadRestrictions::SetWaitAllowed(original_wait_allowed); in WriteTracesToDisc()