Home
last modified time | relevance | path

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

/external/vulkan-validation-layers/tests/gtest-1.7.0/src/
Dgtest-port.cc363 ThreadIdToThreadLocals::iterator thread_local_pos = in GetValueOnCurrentThread() local
365 if (thread_local_pos == thread_to_thread_locals->end()) { in GetValueOnCurrentThread()
366 thread_local_pos = thread_to_thread_locals->insert( in GetValueOnCurrentThread()
370 ThreadLocalValues& thread_local_values = thread_local_pos->second; in GetValueOnCurrentThread()
422 ThreadIdToThreadLocals::iterator thread_local_pos = in OnThreadExit() local
424 if (thread_local_pos != thread_to_thread_locals->end()) { in OnThreadExit()
425 ThreadLocalValues& thread_local_values = thread_local_pos->second; in OnThreadExit()
432 thread_to_thread_locals->erase(thread_local_pos); in OnThreadExit()