Lines Matching refs:EncoreBootImage
136 EncoreBootImage::section_header_t header; in readSectionTable()
182 mac.update((const uint8_t *)&(*it), sizeof(EncoreBootImage::section_header_t)); in readKeyDictionary()
197 EncoreBootImage::dek_dictionary_entry_t entry; in readKeyDictionary()
243 EncoreBootImage::boot_command_t header; in readBootTags()
265 if (header.m_tag != EncoreBootImage::ROM_TAG_CMD) in readBootTags()
281 if (header.m_flags & EncoreBootImage::ROM_LAST_TAG || bootTagOffset >= m_header.m_imageBlocks - 2) in readBootTags()
288 uint8_t EncoreBootImageReader::calculateCommandChecksum(EncoreBootImage::boot_command_t & header) in calculateCommandChecksum()
309 EncoreBootImage::Section * EncoreBootImageReader::readSection(unsigned index) in readSection()
313 EncoreBootImage::section_header_t & header = m_sections[index]; in readSection()
331 if (isEncrypted() && (header.m_flags & EncoreBootImage::ROM_SECTION_CLEARTEXT) == 0) in readSection()
339 EncoreBootImage::Section * resultSection = NULL; in readSection()
340 if (header.m_flags & EncoreBootImage::ROM_SECTION_BOOTABLE) in readSection()
343 EncoreBootImage::BootSection * bootSection = new EncoreBootImage::BootSection(header.m_tag); in readSection()
352 EncoreBootImage::DataSection * dataSection = new EncoreBootImage::DataSection(header.m_tag); in readSection()