Lines Matching refs:thread_to_thread_locals
503 ThreadIdToThreadLocals* const thread_to_thread_locals = in GetValueOnCurrentThread() local
506 thread_to_thread_locals->find(current_thread); in GetValueOnCurrentThread()
507 if (thread_local_pos == thread_to_thread_locals->end()) { in GetValueOnCurrentThread()
509 thread_to_thread_locals in GetValueOnCurrentThread()
536 ThreadIdToThreadLocals* const thread_to_thread_locals = in OnThreadLocalDestroyed() local
539 thread_to_thread_locals->begin(); in OnThreadLocalDestroyed()
540 it != thread_to_thread_locals->end(); ++it) { in OnThreadLocalDestroyed()
563 ThreadIdToThreadLocals* const thread_to_thread_locals = in OnThreadExit() local
566 thread_to_thread_locals->find(thread_id); in OnThreadExit()
567 if (thread_local_pos != thread_to_thread_locals->end()) { in OnThreadExit()
574 thread_to_thread_locals->erase(thread_local_pos); in OnThreadExit()