Searched refs:m_sections (Results 1 – 8 of 8) sorted by relevance
| /netbsd-src/external/bsd/elftosb/dist/common/ |
| H A D | EncoreBootImage.h | 218 section_header_t m_sections[1]; //!< The table entries. member 891 inline unsigned sectionCount() const { return (unsigned)m_sections.size(); } in sectionCount() 893 inline section_iterator_t beginSection() { return m_sections.begin(); } in beginSection() 894 inline section_iterator_t endSection() { return m_sections.end(); } in endSection() 895 inline const_section_iterator_t beginSection() const { return m_sections.begin(); } in beginSection() 896 inline const_section_iterator_t endSection() const { return m_sections.end(); } in endSection() 953 section_list_t m_sections; //!< Sections contained in this image. variable
|
| H A D | EncoreBootImage.cpp | 55 m_sections.push_back(newSection); in addSection() 351 header.m_sectionCount = ENDIAN_HOST_TO_LITTLE_U16((uint16_t)m_sections.size()); in prepareImageHeader() 492 imageBlocks += sectionHeaderSize * m_sections.size(); // section table in getImageSize()
|
| /netbsd-src/external/bsd/elftosb/dist/sbtool/ |
| H A D | EncoreBootImageReader.cpp | 148 m_sections.push_back(header); in readSectionTable() 179 section_array_t::iterator it = m_sections.begin(); in readKeyDictionary() 180 for (; it != m_sections.end(); ++it) in readKeyDictionary() 312 assert(index < m_sections.size()); in readSection() 313 EncoreBootImage::section_header_t & header = m_sections[index]; in readSection()
|
| H A D | EncoreBootImageReader.h | 96 inline const section_array_t & getSections() const { return m_sections; } in getSections() 107 section_array_t m_sections; //!< The section table. variable
|
| /netbsd-src/external/bsd/elftosb/dist/elftosb2/ |
| H A D | BootImageGenerator.h | 44 void addOutputSection(OutputSection * section) { m_sections.push_back(section); } in addOutputSection() 56 section_vector_t m_sections; //!< Requested output sections. variable
|
| H A D | ElftosbAST.cpp | 130 : ASTNode(), m_options(), m_constants(), m_sources(), m_sections() in CommandFileASTNode() 135 : ASTNode(other), m_options(), m_constants(), m_sources(), m_sections() in CommandFileASTNode() 140 m_sections = dynamic_cast<ListASTNode*>(other.m_sections->clone()); in CommandFileASTNode() 161 if (m_sections) m_sections->printTree(indent + 2); in printTree() 1179 : ASTNode(other), m_sections(), m_source() in SectionMatchListASTNode() 1181 if (other.m_sections) in SectionMatchListASTNode() 1183 m_sections = dynamic_cast<ListASTNode *>(other.m_sections->clone()); in SectionMatchListASTNode() 1198 if (m_sections) in printTree() 1200 m_sections->printTree(indent+2); in printTree()
|
| H A D | ElftosbAST.h | 214 inline void setSections(ListASTNode * sections) { m_sections = sections; } in setSections() 220 inline ListASTNode * getSections() { return m_sections; } in getSections() 227 smart_ptr<ListASTNode> m_sections; variable 1032 : ASTNode(), m_sections(sections), m_source() in SectionMatchListASTNode() 1037 : ASTNode(), m_sections(sections), m_source(source) in SectionMatchListASTNode() 1049 inline ListASTNode * getSections() { return m_sections; } in getSections() 1053 smart_ptr<ListASTNode> m_sections;
|
| H A D | EncoreBootImageGenerator.cpp | 25 section_vector_t::iterator it = m_sections.begin(); in generate() 26 for (; it != m_sections.end(); ++it) in generate()
|