Lines Matching full:table

23 /** @brief Convert the input partition table to big endian.
25 * @param[in] src - reference to the pnor partition table
27 * @returns converted partition table
70 /** @class Table
71 * @brief Generates virtual PNOR partition table.
73 * Generates virtual PNOR partition table upon construction. Reads
76 * which generates a minimalistic table-of-contents (toc) file and
81 * Based on this information, this class prepares the partition table whose
87 class Table class
93 * @param[in] ctx - Acquire sizes and paths relevant to the table
97 Table(const struct mbox_context* ctx);
99 Table(const Table&) = delete;
100 Table& operator=(const Table&) = delete;
101 Table(Table&&) = delete;
102 Table& operator=(Table&&) = delete;
103 ~Table() = default;
105 /** @brief Return the exact size of partition table in bytes
107 * @returns size_t - size of partition table in bytes
114 /** @brief Return aligned size of partition table in bytes
119 * @returns size_t - capacity of partition table in bytes
126 /** @brief Return the size of partition table in blocks
128 * @returns size_t - size of partition table in blocks
135 /** @brief Return a partition table having byte-ordering
138 * The host needs the partion table in big-endian.
140 * @returns const reference to host partition table.
147 /** @brief Return a little-endian partition table
149 * @returns const reference to native partition table
192 /** @brief Allocate memory to hold the partion table. Determine the
195 * @param[in] tocFile - Table of contents file path.
199 /** @brief Return a little-endian partition table
201 * @returns reference to native partition table
208 /** @brief Size of the PNOR partition table -
214 /** @brief Partition table */
217 /** @brief Partition table with host byte ordering */
344 openpower::virtual_pnor::partition::Table* table; member