Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/googletest/googletest/src/
H A Dgtest-port.cc460 ThreadIdToThreadLocals::iterator thread_local_pos = in GetValueOnCurrentThread() local
462 if (thread_local_pos == thread_to_thread_locals->end()) { in GetValueOnCurrentThread()
463 thread_local_pos = thread_to_thread_locals->insert( in GetValueOnCurrentThread()
467 ThreadLocalValues& thread_local_values = thread_local_pos->second; in GetValueOnCurrentThread()
519 ThreadIdToThreadLocals::iterator thread_local_pos = in OnThreadExit() local
521 if (thread_local_pos != thread_to_thread_locals->end()) { in OnThreadExit()
522 ThreadLocalValues& thread_local_values = thread_local_pos->second; in OnThreadExit()
529 thread_to_thread_locals->erase(thread_local_pos); in OnThreadExit()