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

  /system/core/libunwindstack/include/unwindstack/
DwarfSection.h 36 class DwarfSection {
38 DwarfSection(Memory* memory);
39 virtual ~DwarfSection() = default;
43 iterator(DwarfSection* section, size_t index) : section_(section), index_(index) {}
68 DwarfSection* section_ = nullptr;
116 class DwarfSectionImpl : public DwarfSection {
118 DwarfSectionImpl(Memory* memory) : DwarfSection(memory) {}
ElfInterface.h 28 #include <unwindstack/DwarfSection.h>
81 DwarfSection* eh_frame() { return eh_frame_.get(); }
82 DwarfSection* debug_frame() { return debug_frame_.get(); }
125 std::unique_ptr<DwarfSection> eh_frame_;
126 std::unique_ptr<DwarfSection> debug_frame_;
  /system/core/libunwindstack/
DwarfDebugFrame.h 24 #include <unwindstack/DwarfSection.h>
DwarfEhFrame.h 22 #include <unwindstack/DwarfSection.h>
DwarfSection.cpp 21 #include <unwindstack/DwarfSection.h>
34 DwarfSection::DwarfSection(Memory* memory) : memory_(memory), last_error_(DWARF_ERROR_NONE) {}
36 const DwarfFde* DwarfSection::GetFdeFromPc(uint64_t pc) {
50 bool DwarfSection::Step(uint64_t pc, Regs* regs, Memory* process_memory) {
ElfInterface.cpp 27 #include <unwindstack/DwarfSection.h>
359 DwarfSection* eh_frame = eh_frame_.get();
365 DwarfSection* debug_frame = debug_frame_.get();
  /system/core/libunwindstack/tools/
unwind_info.cpp 28 #include <unwindstack/DwarfSection.h>
85 void DumpDwarfSection(ElfInterface* interface, DwarfSection* section, uint64_t load_bias) {
  /system/core/libunwindstack/tests/
DwarfSectionTest.cpp 22 #include <unwindstack/DwarfSection.h>
28 class MockDwarfSection : public DwarfSection {
30 MockDwarfSection(Memory* memory) : DwarfSection(memory) {}
DwarfSectionImplTest.cpp 22 #include <unwindstack/DwarfSection.h>

Completed in 444 milliseconds