Home
last modified time | relevance | path

Searched refs:thread_local_pos (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/llvm/utils/unittest/googletest/src/
H A Dgtest-port.cc543 ThreadIdToThreadLocals::iterator thread_local_pos = in GetValueOnCurrentThread() local
545 if (thread_local_pos == thread_to_thread_locals->end()) { in GetValueOnCurrentThread()
546 thread_local_pos = thread_to_thread_locals->insert( in GetValueOnCurrentThread()
550 ThreadLocalValues& thread_local_values = thread_local_pos->second; in GetValueOnCurrentThread()
602 ThreadIdToThreadLocals::iterator thread_local_pos = in OnThreadExit() local
604 if (thread_local_pos != thread_to_thread_locals->end()) { in OnThreadExit()
605 ThreadLocalValues& thread_local_values = thread_local_pos->second; in OnThreadExit()
612 thread_to_thread_locals->erase(thread_local_pos); in OnThreadExit()