Lines Matching full:header
15 * This header is at the start of every PEL section. It has a size
47 * @brief The size of the section in bytes, including this section header.
68 * @brief Returns the size of header when flattened into a PEL.
70 * @return size_t - the size of the header
83 * @param[out] header - the SectionHeader object
85 inline Stream& operator>>(Stream& s, SectionHeader& header) in operator >>() argument
87 s >> header.id >> header.size >> header.version >> header.subType >> in operator >>()
88 header.componentID; in operator >>()
93 * @brief Stream insertion operator for the section header
96 * @param[in] header - the SectionHeader object
98 inline Stream& operator<<(Stream& s, const SectionHeader& header) in operator <<() argument
100 s << header.id << header.size << header.version << header.subType in operator <<()
101 << header.componentID; in operator <<()