Lines Matching full:table

30 /** @brief Convert the input partition table to big endian.
32 * @param[in] src - reference to the pnor partition table
34 * @returns converted partition table
80 /** @class Table
81 * @brief Generates virtual PNOR partition table.
83 * Generates virtual PNOR partition table upon construction. Reads
86 * which generates a minimalistic table-of-contents (toc) file and
91 * Based on this information, this class prepares the partition table whose
97 class Table class
103 * @param[in] be - Acquire sizes and paths relevant to the table
107 Table(const struct backend* be);
109 Table(const Table&) = delete;
110 Table& operator=(const Table&) = delete;
111 Table(Table&&) = delete;
112 Table& operator=(Table&&) = delete;
113 ~Table() = default;
115 /** @brief Return the exact size of partition table in bytes
117 * @returns size_t - size of partition table in bytes
124 /** @brief Return aligned size of partition table in bytes
129 * @returns size_t - capacity of partition table in bytes
136 /** @brief Return the size of partition table in blocks
138 * @returns size_t - size of partition table in blocks
145 /** @brief Return a partition table having byte-ordering
148 * The host needs the partion table in big-endian.
150 * @returns const reference to host partition table.
157 /** @brief Return a little-endian partition table
159 * @returns const reference to native partition table
202 /** @brief Allocate memory to hold the partion table. Determine the
205 * @param[in] tocFile - Table of contents file path.
209 /** @brief Return a little-endian partition table
211 * @returns reference to native partition table
218 /** @brief Size of the PNOR partition table -
224 /** @brief Partition table */
227 /** @brief Partition table with host byte ordering */
354 openpower::virtual_pnor::partition::Table* table; member