Lines Matching refs:ThreadLocalState
2317 class ThreadLocalState {
2319 virtual ~ThreadLocalState();
2356 ThreadLocalState* tls;
2361 using TLSFactory = std::unique_ptr<ThreadLocalState> (*)(
2423 typename InterceptorType::ThreadLocalState& GetThreadLocalState() { in GetThreadLocalState()
2424 return static_cast<typename InterceptorType::ThreadLocalState&>(*tls_); in GetThreadLocalState()
2441 InterceptorBase::ThreadLocalState* const tls_;
2458 if (std::is_same<typename InterceptorType::ThreadLocalState, in Register()
2459 InterceptorBase::ThreadLocalState>::value) { in Register()
2460 return std::unique_ptr<InterceptorBase::ThreadLocalState>(nullptr); in Register()
2463 return std::unique_ptr<InterceptorBase::ThreadLocalState>( in Register()
2464 new typename InterceptorType::ThreadLocalState(args)); in Register()
5276 struct ThreadLocalState : public InterceptorBase::ThreadLocalState {
5277 ThreadLocalState(ThreadLocalStateArgs&);
5278 ~ThreadLocalState() override;