Lines Matching full:header
15 * @brief This 8-byte header is at the start of every PEL section.
29 * Length in bytes of the section, including the entire section header.
32 * A one byte integer intended to identify differences in header structures.
39 * component ID field of the Private Header and the committing component
40 * ID is placed in the component ID field of the User Header.
71 * @brief The size of the section in bytes, including this section header.
92 * @brief Returns the size of header when flattened into a PEL.
94 * @return size_t - the size of the header
107 * @param[out] header - the SectionHeader object
109 inline Stream& operator>>(Stream& s, SectionHeader& header) in operator >>() argument
111 s >> header.id >> header.size >> header.version >> header.subType >> in operator >>()
112 header.componentID; in operator >>()
117 * @brief Stream insertion operator for the section header
120 * @param[in] header - the SectionHeader object
122 inline Stream& operator<<(Stream& s, const SectionHeader& header) in operator <<() argument
124 s << header.id << header.size << header.version << header.subType in operator <<()
125 << header.componentID; in operator <<()