Lines Matching defs:__thread_struct
49 class _LIBCPP_EXPORTED_FROM_ABI __thread_struct;
53 _LIBCPP_EXPORTED_FROM_ABI __thread_specific_ptr<__thread_struct>& __thread_local_data();
55 class _LIBCPP_EXPORTED_FROM_ABI __thread_struct {
58 __thread_struct(const __thread_struct&);
59 __thread_struct& operator=(const __thread_struct&);
62 __thread_struct();
63 ~__thread_struct();
74 // and only with _Tp == __thread_struct.
75 static_assert(is_same<_Tp, __thread_struct>::value, "");
77 friend _LIBCPP_EXPORTED_FROM_ABI __thread_specific_ptr<__thread_struct>& __thread_local_data();
204 // _Fp = tuple< unique_ptr<__thread_struct>, Functor, Args...>
214 typedef unique_ptr<__thread_struct> _TSPtr;
215 _TSPtr __tsp(new __thread_struct);
232 _LIBCPP_HIDE_FROM_ABI __thread_invoke_pair(_Fp& __f) : __tsp_(new __thread_struct), __fn_(__f) {}
233 unique_ptr<__thread_struct> __tsp_;