Home
last modified time | relevance | path

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

/external/libbrillo/brillo/message_loops/
Dmessage_loop.cc17 base::LazyInstance<base::ThreadLocalPointer<MessageLoop> >::Leaky lazy_tls_ptr = variable
25 DCHECK(lazy_tls_ptr.Pointer()->Get() != nullptr) << in current()
28 return lazy_tls_ptr.Pointer()->Get(); in current()
32 return lazy_tls_ptr.Pointer()->Get() != nullptr; in ThreadHasCurrent()
36 DCHECK(lazy_tls_ptr.Pointer()->Get() == nullptr) << in SetAsCurrent()
38 lazy_tls_ptr.Pointer()->Set(this); in SetAsCurrent()
42 DCHECK(lazy_tls_ptr.Pointer()->Get() == this) << in ReleaseFromCurrent()
44 lazy_tls_ptr.Pointer()->Set(nullptr); in ReleaseFromCurrent()
48 if (lazy_tls_ptr.Pointer()->Get() == this) in ~MessageLoop()
49 lazy_tls_ptr.Pointer()->Set(nullptr); in ~MessageLoop()
/external/libchrome/base/message_loop/
Dmessage_loop_current.cc19 static NoDestructor<ThreadLocalPointer<MessageLoop>> lazy_tls_ptr; in GetTLSMessageLoop() local
20 return lazy_tls_ptr.get(); in GetTLSMessageLoop()