Lines Matching refs:__thread_struct
123 class _LIBCPP_TYPE_VIS __thread_struct;
127 _LIBCPP_FUNC_VIS __thread_specific_ptr<__thread_struct>& __thread_local_data();
129 class _LIBCPP_TYPE_VIS __thread_struct
133 __thread_struct(const __thread_struct&);
134 __thread_struct& operator=(const __thread_struct&);
136 __thread_struct();
137 ~__thread_struct();
149 // and only with _Tp == __thread_struct.
150 static_assert((is_same<_Tp, __thread_struct>::value), "");
152 friend _LIBCPP_FUNC_VIS __thread_specific_ptr<__thread_struct>& __thread_local_data();
291 // _Fp = tuple< unique_ptr<__thread_struct>, Functor, Args...>
304 typedef unique_ptr<__thread_struct> _TSPtr;
305 _TSPtr __tsp(new __thread_struct);
325 __thread_invoke_pair(_Fp& __f) : __tsp_(new __thread_struct), __fn_(__f) {}
326 unique_ptr<__thread_struct> __tsp_;