OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tls_key_
(Results
1 - 3
of
3
) sorted by null
/external/chromium/base/threading/
thread_local_storage.h
86
static long
tls_key_
;
member in class:base::ThreadLocalStorage
thread_local_storage_win.cc
20
//
tls_key_
is the one native TLS that we use. It stores our
22
long ThreadLocalStorage::
tls_key_
= TLS_OUT_OF_INDEXES;
member in class:base::ThreadLocalStorage
36
if (
tls_key_
== TLS_OUT_OF_INDEXES) {
43
if (InterlockedCompareExchange(&
tls_key_
, value, TLS_OUT_OF_INDEXES) !=
45
// We've been shortcut. Another thread replaced
tls_key_
first so we need
50
DCHECK(!TlsGetValue(
tls_key_
));
55
TlsSetValue(
tls_key_
, tls_data);
66
if (
tls_key_
== TLS_OUT_OF_INDEXES || !TlsGetValue(
tls_key_
))
90
void** tls_data = static_cast<void**>(TlsGetValue(
tls_key_
));
[
all
...]
/art/compiler/driver/
compiler_driver.h
443
pthread_key_t
tls_key_
;
member in class:art::CompilerDriver
Completed in 160 milliseconds