Home | History | Annotate | Download | only in runtime

Lines Matching refs:ImageSection

27 class PACKED(4) ImageSection {
29 ImageSection() : offset_(0), size_(0) { }
30 ImageSection(uint32_t offset, uint32_t size) : offset_(offset), size_(size) { }
31 ImageSection(const ImageSection& section) = default;
32 ImageSection& operator=(const ImageSection& section) = default;
62 ImageSection* sections,
153 const ImageSection& GetImageSection(ImageSections index) const;
154 const ImageSection& GetMethodsSection() const {
211 ImageSection sections_[kSectionCount];
222 std::ostream& operator<<(std::ostream& os, const ImageSection& section);