Home
last modified time | relevance | path

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

/system/core/libbacktrace/
DBacktraceOffline.cpp559 static std::unordered_map<std::string, std::unique_ptr<DebugFrameInfo>>* g_debug_frames = nullptr; variable
566 if (g_debug_frames != nullptr) { in GetDebugFrameInFile()
567 auto it = g_debug_frames->find(filename); in GetDebugFrameInFile()
568 if (it != g_debug_frames->end()) { in GetDebugFrameInFile()
576 if (g_debug_frames == nullptr) { in GetDebugFrameInFile()
577 g_debug_frames = new std::unordered_map<std::string, std::unique_ptr<DebugFrameInfo>>; in GetDebugFrameInFile()
579 auto pair = g_debug_frames->emplace(filename, std::unique_ptr<DebugFrameInfo>(debug_frame)); in GetDebugFrameInFile()