HomeSort by relevance Sort by last modified time
    Searched refs:DebugFrameInfo (Results 1 - 2 of 2) sorted by null

  /system/core/libbacktrace/
BacktraceOffline.h 43 struct DebugFrameInfo;
72 DebugFrameInfo* GetDebugFrameInFile(const std::string& filename);
BacktraceOffline.cpp 79 struct DebugFrameInfo {
91 DebugFrameInfo() : has_arm_exidx(false), has_eh_frame(false),
272 DebugFrameInfo* debug_frame = GetDebugFrameInFile(filename);
559 static std::unordered_map<std::string, std::unique_ptr<DebugFrameInfo>>* g_debug_frames = nullptr;
561 static DebugFrameInfo* ReadDebugFrameFromFile(const std::string& filename);
563 DebugFrameInfo* BacktraceOffline::GetDebugFrameInFile(const std::string& filename) {
573 DebugFrameInfo* debug_frame = ReadDebugFrameFromFile(filename);
577 g_debug_frames = new std::unordered_map<std::string, std::unique_ptr<DebugFrameInfo>>;
579 auto pair = g_debug_frames->emplace(filename, std::unique_ptr<DebugFrameInfo>(debug_frame));
651 DebugFrameInfo* ReadDebugFrameFromELFFile(const llvm::object::ELFFile<ELFT>* elf)
    [all...]

Completed in 7434 milliseconds