Lines Matching refs:__thread_struct
121 class _LIBCPP_TYPE_VIS __thread_struct;
125 _LIBCPP_FUNC_VIS __thread_specific_ptr<__thread_struct>& __thread_local_data();
127 class _LIBCPP_TYPE_VIS __thread_struct
131 __thread_struct(const __thread_struct&);
132 __thread_struct& operator=(const __thread_struct&);
134 __thread_struct();
135 ~__thread_struct();
147 // and only with _Tp == __thread_struct.
148 static_assert((is_same<_Tp, __thread_struct>::value), "");
150 friend _LIBCPP_FUNC_VIS __thread_specific_ptr<__thread_struct>& __thread_local_data();
289 // _Fp = tuple< unique_ptr<__thread_struct>, Functor, Args...>
302 typedef unique_ptr<__thread_struct> _TSPtr;
303 _TSPtr __tsp(new __thread_struct);
323 __thread_invoke_pair(_Fp& __f) : __tsp_(new __thread_struct), __fn_(__f) {}
324 unique_ptr<__thread_struct> __tsp_;