Lines Matching refs:__thread_struct
120 class _LIBCPP_TYPE_VIS __thread_struct;
124 _LIBCPP_FUNC_VIS __thread_specific_ptr<__thread_struct>& __thread_local_data();
126 class _LIBCPP_TYPE_VIS __thread_struct
130 __thread_struct(const __thread_struct&);
131 __thread_struct& operator=(const __thread_struct&);
133 __thread_struct();
134 ~__thread_struct();
146 // and only with _Tp == __thread_struct.
147 static_assert((is_same<_Tp, __thread_struct>::value), "");
149 friend _LIBCPP_FUNC_VIS __thread_specific_ptr<__thread_struct>& __thread_local_data();
348 // _Fp = std::tuple< unique_ptr<__thread_struct>, Functor, Args...>
361 typedef unique_ptr<__thread_struct> _TSPtr;
362 _TSPtr __tsp(new __thread_struct);
393 __thread_invoke_pair(_Fp& __f) : __tsp_(new __thread_struct), __fn_(__f) {}
394 unique_ptr<__thread_struct> __tsp_;