Home
last modified time | relevance | path

Searched refs:thread_local (Results 1 – 9 of 9) sorted by relevance

/bionic/tests/
D__cxa_thread_atexit_test.cpp38 static thread_local ClassWithDtor class_with_dtor;
45 TEST(thread_local, smoke) { in TEST() argument
67 static thread_local ClassWithDtorForMainThread class_with_dtor_for_main_thread; in thread_atexit_main()
72 TEST(thread_local, dtor_for_main_thread) { in TEST() argument
/bionic/tests/libs/
Dthread_local_dtor2.cpp44 thread_local TestClass test(flag); in init_thread_local_variable2()
Dthread_local_dtor.cpp44 thread_local TestClass test(flag); in init_thread_local_variable()
Dtls_properties_helper.cpp54 thread_local int local_var;
DAndroid.bp1461 // Libraries with non-trivial thread_local variable to test dlclose()
/bionic/tests/headers/posix/
Dthreads_h.c35 thread_local int t;
/bionic/libc/include/
Dthreads.h76 #define thread_local _Thread_local macro
/bionic/libc/bionic/
Dlocale.cpp86 static thread_local locale_t g_current_locale;
/bionic/docs/
Delf-tls.md18 thread_local int tls_var;
77 extern thread_local char tls_var;
129 static thread_local int x;
130 static thread_local int y;
153 (XXX: LD might be important for C++ `thread_local` variables -- even a single `thread_local`
167 extern thread_local char tls_var;
240 extern thread_local char tls_var;
455 `thread_local` | - C11: a macro for `_Thread_local` via `threads.h`<br/> - C++11: a keyword, allo…
457 The dynamic initialization and destruction of C++ `thread_local` variables is layered on top of ELF
462 efficient in C++ than `thread_local` when the compiler cannot see the definition of a declared TLS
[all …]