HomeSort by relevance Sort by last modified time
    Searched refs:lazy_tls_ptr (Results 1 - 4 of 4) sorted by null

  /external/libbrillo/brillo/message_loops/
message_loop.cc 17 base::LazyInstance<base::ThreadLocalPointer<MessageLoop> >::Leaky lazy_tls_ptr = member in namespace:brillo::__anon22626
25 DCHECK(lazy_tls_ptr.Pointer()->Get() != nullptr) <<
28 return lazy_tls_ptr.Pointer()->Get();
32 return lazy_tls_ptr.Pointer()->Get() != nullptr;
36 DCHECK(lazy_tls_ptr.Pointer()->Get() == nullptr) <<
38 lazy_tls_ptr.Pointer()->Set(this);
42 DCHECK(lazy_tls_ptr.Pointer()->Get() == this) <<
44 lazy_tls_ptr.Pointer()->Set(nullptr);
48 if (lazy_tls_ptr.Pointer()->Get() == this)
49 lazy_tls_ptr.Pointer()->Set(nullptr)
    [all...]
  /external/libchrome/base/threading/
thread_task_runner_handle.cc 19 lazy_tls_ptr = LAZY_INSTANCE_INITIALIZER; member in namespace:base::__anon22907
25 ThreadTaskRunnerHandle* current = lazy_tls_ptr.Pointer()->Get();
32 return !!lazy_tls_ptr.Pointer()->Get();
42 lazy_tls_ptr.Pointer()->Set(this);
47 DCHECK_EQ(lazy_tls_ptr.Pointer()->Get(), this);
48 lazy_tls_ptr.Pointer()->Set(nullptr);
sequenced_task_runner_handle.cc 20 lazy_tls_ptr = LAZY_INSTANCE_INITIALIZER; member in namespace:base::__anon22895
27 const SequencedTaskRunnerHandle* handle = lazy_tls_ptr.Pointer()->Get();
49 return lazy_tls_ptr.Pointer()->Get() ||
59 lazy_tls_ptr.Pointer()->Set(this);
64 DCHECK_EQ(lazy_tls_ptr.Pointer()->Get(), this);
65 lazy_tls_ptr.Pointer()->Set(nullptr);
  /external/libchrome/base/message_loop/
message_loop.cc 48 LazyInstance<base::ThreadLocalPointer<MessageLoop> >::Leaky lazy_tls_ptr = member in namespace:base::__anon22752
187 lazy_tls_ptr.Pointer()->Set(nullptr);
195 return lazy_tls_ptr.Pointer()->Get();
413 lazy_tls_ptr.Pointer()->Set(this);

Completed in 470 milliseconds