Lines Matching refs:__thread_struct
115 class _LIBCPP_TYPE_VIS __thread_struct;
119 _LIBCPP_FUNC_VIS __thread_specific_ptr<__thread_struct>& __thread_local_data();
121 class _LIBCPP_TYPE_VIS __thread_struct
125 __thread_struct(const __thread_struct&);
126 __thread_struct& operator=(const __thread_struct&);
128 __thread_struct();
129 ~__thread_struct();
141 // and only with _Tp == __thread_struct.
142 static_assert((is_same<_Tp, __thread_struct>::value), "");
144 friend _LIBCPP_FUNC_VIS __thread_specific_ptr<__thread_struct>& __thread_local_data();
287 // _Fp = tuple< unique_ptr<__thread_struct>, Functor, Args...>
300 typedef unique_ptr<__thread_struct> _TSPtr;
301 _TSPtr __tsp(new __thread_struct);
321 __thread_invoke_pair(_Fp& __f) : __tsp_(new __thread_struct), __fn_(__f) {}
322 unique_ptr<__thread_struct> __tsp_;