Home
last modified time | relevance | path

Searched refs:current_thread_tls_key (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/src/win32/
Dthread.cpp79 DWORD current_thread_tls_key=TLS_OUT_OF_INDEXES; variable
88 current_thread_tls_key=TlsAlloc(); in create_current_thread_tls_key()
89 BOOST_ASSERT(current_thread_tls_key!=TLS_OUT_OF_INDEXES); in create_current_thread_tls_key()
96 if(current_thread_tls_key!=TLS_OUT_OF_INDEXES) in cleanup_tls_key()
98 TlsFree(current_thread_tls_key); in cleanup_tls_key()
99 current_thread_tls_key=TLS_OUT_OF_INDEXES; in cleanup_tls_key()
110 if (current_thread_tls_key != TLS_OUT_OF_INDEXES) in set_current_thread_data()
112 BOOST_VERIFY(TlsSetValue(current_thread_tls_key, new_data)); in set_current_thread_data()
130 if (current_thread_tls_key == TLS_OUT_OF_INDEXES) in get_current_thread_data()
134 return (detail::thread_data_base*)TlsGetValue(current_thread_tls_key); in get_current_thread_data()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/src/pthread/
Dthread.cpp85 pthread_key_t current_thread_tls_key; variable
137 void* data = pthread_getspecific(current_thread_tls_key); in ~delete_current_thread_tls_key_on_dlclose_t()
140 pthread_key_delete(current_thread_tls_key); in ~delete_current_thread_tls_key_on_dlclose_t()
148 BOOST_VERIFY(!pthread_key_create(&current_thread_tls_key,&tls_destructor)); in create_current_thread_tls_key()
155 return (boost::detail::thread_data_base*)pthread_getspecific(current_thread_tls_key); in get_current_thread_data()
161 BOOST_VERIFY(!pthread_setspecific(current_thread_tls_key,new_data)); in set_current_thread_data()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/doc/
Dchanges.qbk682 * [@http://svn.boost.org/trac/boost/ticket/7066 #7066] An attempt to fix current_thread_tls_key sta…