Home
last modified time | relevance | path

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

/ohos5.0/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/
H A Dthread_context.cpp70 auto it = g_contextMap.find(tid); in GetContextLocked()
76 g_contextMap[tid] = threadContext; in GetContextLocked()
92 auto it = g_contextMap.find(tid); in RemoveContextLocked()
93 if (it == g_contextMap.end()) { in RemoveContextLocked()
98 g_contextMap.erase(it); in RemoveContextLocked()
114 auto it = g_contextMap.begin(); in RemoveAllContextLocked()
115 while (it != g_contextMap.end()) { in RemoveAllContextLocked()
117 it = g_contextMap.erase(it); in RemoveAllContextLocked()
140 auto it = g_contextMap.find(tid); in GetThreadContext()
141 if (it != g_contextMap.end()) { in GetThreadContext()
[all …]