Searched refs:lazy_tls_ptr (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/base/
H A Dthread_task_runner_handle.cc16 lazy_tls_ptr = LAZY_INSTANCE_INITIALIZER; member in namespace:base::__anon2542
22 ThreadTaskRunnerHandle* current = lazy_tls_ptr.Pointer()->Get();
29 return lazy_tls_ptr.Pointer()->Get() != NULL;
36 DCHECK(!lazy_tls_ptr.Pointer()->Get());
37 lazy_tls_ptr.Pointer()->Set(this);
42 DCHECK_EQ(lazy_tls_ptr.Pointer()->Get(), this);
43 lazy_tls_ptr.Pointer()->Set(NULL);
/external/chromium_org/ui/aura/
H A Denv.cc23 base::LazyInstance<base::ThreadLocalPointer<Env> >::Leaky lazy_tls_ptr = member in namespace:aura::__anon16577
33 if (!lazy_tls_ptr.Pointer()->Get())
39 Env* env = lazy_tls_ptr.Pointer()->Get();
47 delete lazy_tls_ptr.Pointer()->Get();
71 DCHECK(lazy_tls_ptr.Pointer()->Get() == NULL);
72 lazy_tls_ptr.Pointer()->Set(this);
77 DCHECK_EQ(this, lazy_tls_ptr.Pointer()->Get());
78 lazy_tls_ptr.Pointer()->Set(NULL);
/external/chromium_org/content/browser/
H A Dnotification_service_impl.cc17 lazy_tls_ptr = LAZY_INSTANCE_INITIALIZER; member in namespace:content::__anon7272
23 return lazy_tls_ptr.Pointer()->Get();
44 lazy_tls_ptr.Pointer()->Set(this);
138 lazy_tls_ptr.Pointer()->Set(NULL);
/external/chromium_org/base/message_loop/
H A Dmessage_loop.cc43 LazyInstance<base::ThreadLocalPointer<MessageLoop> >::Leaky lazy_tls_ptr = member in namespace:base::__anon2364
195 lazy_tls_ptr.Pointer()->Set(NULL);
203 return lazy_tls_ptr.Pointer()->Get();
393 lazy_tls_ptr.Pointer()->Set(this);

Completed in 279 milliseconds