/openbmc/pldm/libpldmresponder/ |
H A D | bios_table.hpp | 21 using Table = std::vector<uint8_t>; typedef 30 * BIOSTable table(BIOS_STRING_TABLE_FILE_PATH); 31 * if (table.isEmpty()) { // no persisted table 35 * table.store(t); // persisted 37 * else { // persisted table exists 39 * // the table itself) to a GetBIOSTable command 40 * table.load(r); // actual table will be pushed back to the vector 46 /** @brief Ctor - set file path to persist BIOS table 48 * @param[in] filePath - file where BIOS table should be persisted 52 /** @brief Checks if there's a persisted BIOS table [all …]
|
H A D | bios_table.cpp | 35 void BIOSTable::store(const Table& table) in store() argument 38 stream.write(reinterpret_cast<const char*>(table.data()), table.size()); in store() 50 BIOSStringTable::BIOSStringTable(const Table& stringTable) : in BIOSStringTable() 67 return table::string::decodeString(stringEntry); in findString() 79 return table::string::decodeHandle(stringEntry); in findHandle() 82 namespace table namespace 84 void appendPadAndChecksum(Table& table) in appendPadAndChecksum() argument 86 size_t payloadSize = table.size(); in appendPadAndChecksum() 87 table.resize(payloadSize + pldm_bios_table_pad_checksum_size(payloadSize)); in appendPadAndChecksum() 89 pldm_bios_table_append_pad_checksum(table.data(), table.size(), in appendPadAndChecksum() [all …]
|
H A D | bios_config.hpp | 78 * @param[in] tableDir - The directory where the persistent table is placed 96 /** @brief Set attribute value on dbus and attribute value table 112 /** @brief Build bios tables(string,attribute,attribute value table)*/ 115 /** @brief Get BIOS table of specified type 116 * @param[in] tableType - The table type 117 * @return The bios table, std::nullopt if the table is unaviliable 119 std::optional<Table> getBIOSTable(pldm_bios_table_types tableType); 121 /** @brief set BIOS table 122 * @param[in] tableType - Indicates what table is being transferred 125 * @param[in] table - table data [all …]
|
H A D | bios_integer_attribute.hpp | 15 * @brief Associate integer entry(attr table and attribute value table) and 35 * @param[in] stringTable - The string table 42 /** @brief Construct corresponding entries at the end of the attribute table 44 * @param[in] stringTable - The string Table 45 * @param[in,out] attrTable - The attribute table 46 * @param[in,out] attrValueTable - The attribute value table 49 void constructEntry(const BIOSStringTable& stringTable, Table& attrTable, 50 Table& attrValueTable, 54 /** @brief Generate attribute entry by the spec DSP0247_1.0.0 Table 14 61 Table& attrValueEntry) override; [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/ |
H A D | jquery.dataTables-1.13.8.min.css | 1 …table.dataTable td.dt-control{text-align:center;cursor:pointer}table.dataTable td.dt-control:befor…
|
/openbmc/webui-vue/docs/guide/components/table/ |
H A D | index.md | 1 # Table chapter 4 [BoostrapVue table component](https://bootstrap-vue.org/docs/components/table). 6 To use the component, include the `<b-table>` tag in the template. The component 9 ## Basic table 13 [Bootstrap-vue table component's documentation page](https://bootstrap-vue.org/docs/components/tabl… 17 - `items` - renders table items 18 - `fields` - renders table header 19 - `hover` - enables table row hover state 20 - `responsive` or `stacked` - makes the table responsive (enables horizontal 22 - `show-empty` _(required if table data is generated dynamically)_ - shows an [all …]
|
/openbmc/u-boot/arch/x86/include/asm/ |
H A D | mpspec.h | 22 u32 mpf_physptr; /* Configuration table address */ 37 u16 mpc_length; /* Size of table */ 42 u32 mpc_oemptr; /* OEM table address */ 43 u16 mpc_oemsize; /* OEM table size */ 44 u16 mpc_entry_count; /* Number of entries in the table */ 46 u16 mpe_length; /* Extended table size */ 47 u8 mpe_checksum; /* Extended table checksum */ 51 /* Base MP configuration table entry types */ 147 /* Extended MP configuration table entry types */ 217 * mp_next_mpc_entry() - Compute MP configuration table end to be used as [all …]
|
H A D | tables.h | 20 * table_compute_checksum() - Compute a table checksum 22 * This computes an 8-bit checksum for the configuration table. 23 * All bytes in the configuration table, including checksum itself and 26 * @v: configuration table base address 27 * @len: configuration table size 33 * table_fill_string() - Fill a string with pad in the configuration table 35 * This fills a string in the configuration table. It copies number of bytes 37 * required size to copy, pad the table string with the given pad character. 49 * This writes x86 configuration tables, including PIRQ routing table, 50 * Multi-Processor table and ACPI table. Whether a specific type of [all …]
|
/openbmc/u-boot/lib/efi_selftest/ |
H A D | efi_selftest_config_table.c | 36 * Check CRC32 of a table. 38 static int check_table(const void *table) in check_table() argument 43 struct efi_table_hdr *hdr = (struct efi_table_hdr *)table; in check_table() 47 * Setting the CRC32 of the 'const' table to zero is easier than in check_table() 51 ret = boottime->calculate_crc32(table, hdr->headersize, &res); in check_table() 52 /* Reset table CRC32 so it stays constant */ in check_table() 69 * @systable: system table 84 * A table is installed, updated, removed. The table entry and the 94 void *table; in execute() local 108 /* Try to delete non-existent table */ in execute() [all …]
|
H A D | efi_selftest_crc32.c | 8 * headers of the system table, the boot services table, and the runtime 9 * services table before and after ExitBootServices(). 18 static int check_table(const void *table) in check_table() argument 23 struct efi_table_hdr *hdr = (struct efi_table_hdr *)table; in check_table() 44 * Setting the crc32 of the 'const' table to zero is easier than in check_table() 48 ret = bs_crc32(table, hdr->headersize, &res); in check_table() 49 /* Reset table crc32 so it stays constant */ in check_table() 69 * @systable: system table 94 efi_st_error("Checking system table\n"); in setup() 98 efi_st_error("Checking boottime table\n"); in setup() [all …]
|
/openbmc/libpldm/include/libpldm/ |
H A D | bios_table.h | 17 * structure representing bios table iterator 21 /** @brief Create a bios table iterator 22 * @param[in] table - Pointer to table data 23 * @param[in] length - Length of table data 24 * @param[in] type - Type of pldm bios table 28 pldm_bios_table_iter_create(const void *table, size_t length, 31 /** @brief Release a bios table iterator 32 * @param[in] iter - Pointer to bios table iterator 36 /** @brief Check if the iterator reaches the end of the bios table 37 * @param[in] iter - Pointer to the bios table iterator [all …]
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 080.out | 14 == Huge refcount table size == 16 qemu-io: can't open device TEST_DIR/t.qcow2: Reference count table too large 17 qemu-io: can't open device TEST_DIR/t.qcow2: Reference count table too large 19 == Misaligned refcount table == 21 qemu-io: can't open device TEST_DIR/t.qcow2: Reference count table offset invalid 25 qemu-io: can't open device TEST_DIR/t.qcow2: Reference count table offset invalid 27 == Invalid snapshot table == 29 qemu-io: can't open device TEST_DIR/t.qcow2: Snapshot table too large 30 qemu-io: can't open device TEST_DIR/t.qcow2: Snapshot table too large 31 qemu-io: can't open device TEST_DIR/t.qcow2: Snapshot table offset invalid [all …]
|
H A D | qed.py | 77 … table = [unpack_table_elem(s[i:i + table_elem_size]) for i in xrange(0, size, table_elem_size)] 78 return table 84 def write_table(self, offset, table): argument 85 s = ''.join(pack_table_elem(x) for x in table) 88 def random_table_item(table): argument 89 vals = [(index, offset) for index, offset in enumerate(table) if offset != 0] 91 err('cannot pick random item because table is empty') 94 def corrupt_table_duplicate(table): argument 95 '''Corrupt a table by introducing a duplicate offset''' 96 victim_idx, victim_val = random_table_item(table) [all …]
|
/openbmc/ibm-logging/ |
H A D | policy_table.hpp | 18 * The details of a policy table entry: 37 * @class Table 39 * This class wraps the error policy table data, and provides the 40 * ability to find a policy table entry based on the error and a 44 class Table class 47 Table() = delete; 48 ~Table() = default; 49 Table(const Table&) = default; 50 Table& operator=(const Table&) = default; 51 Table(Table&&) = default; [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-filter/ebtables/ebtables-2.0.11/ |
H A D | ebtables.common | 30 for table in filter nat broute; do 31 /usr/sbin/ebtables-legacy -t $table -L &> /dev/null 33 EBTABLES_SUPPORTED_TABLES="${EBTABLES_SUPPORTED_TABLES} $table" 42 for table in $EBTABLES_SUPPORTED_TABLES; do 43 echo -n "$table " 44 if [ -s ${EBTABLES_DUMPFILE_STEM}.$table ]; then 45 … /usr/sbin/ebtables-legacy -t $table --atomic-file ${EBTABLES_DUMPFILE_STEM}.$table --atomic-commit 71 for table in $EBTABLES_SUPPORTED_TABLES; do 72 echo -n "$table " 73 /usr/sbin/ebtables-legacy -t $table --init-table [all …]
|
/openbmc/u-boot/lib/zlib/ |
H A D | inftrees.c | 22 The code lengths are lens[0..codes-1]. The result starts at *table, 26 -1 is an invalid code, and +1 means that ENOUGH isn't enough. table 28 requested root table index bits, and on return it is the actual root 29 table index bits. It will differ if the request is greater than the 33 code FAR * FAR *table, unsigned FAR *bits, in inflate_table() argument 39 unsigned root; /* number of index bits for root table */ in inflate_table() 40 unsigned curr; /* number of index bits for current table */ in inflate_table() 41 unsigned drop; /* code bits to drop for sub-table */ in inflate_table() 43 unsigned used; /* code entries in table used */ in inflate_table() 49 code this; /* table entry for duplication */ in inflate_table() [all …]
|
/openbmc/hiomapd/vpnor/ |
H A D | table.hpp | 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 [all …]
|
/openbmc/phosphor-mboxd/vpnor/ |
H A D | pnor_partition_table.hpp | 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 [all …]
|
/openbmc/pldm/oem/ibm/libpldmresponder/ |
H A D | file_table.hpp | 20 using Table = std::vector<uint8_t>; typedef 40 * file handle and extract the file attribute table. The file attribute table 47 /** @brief The file table is initialised by parsing the config file 61 /** @brief Get the file attribute table 63 * @return Table- contents of the file attribute table 65 Table operator()() const; 78 /** @brief Check is file attribute table is empty 80 * @return bool - true if file attribute table is empty, false otherwise. 87 /** @brief Clear the file table contents 102 /** @brief file attribute table including the pad bytes, except the checksum [all …]
|
/openbmc/webui-vue/src/assets/styles/bmc/custom/ |
H A D | _tables.scss | 1 .table { 16 // Table action buttons 49 .b-table-has-details { 53 .table-row-expand svg { 58 .b-table-details { 61 padding-left: calc(50px + (#{$table-cell-padding} * 2)); 62 padding-right: calc(50px + (#{$table-cell-padding} * 2)); 77 .table-row-expand { 87 .b-table-sort-icon-left { 100 .b-table-sticky-header td { [all …]
|
/openbmc/u-boot/disk/ |
H A D | Kconfig | 14 - CONFIG_MAC_PARTITION Apple's MacOS partition table. 15 - CONFIG_DOS_PARTITION MS Dos partition table, traditional on the 17 - CONFIG_ISO_PARTITION ISO partition table, used on CDROM etc. 18 - CONFIG_EFI_PARTITION GPT partition table, common when EFI is the 21 - CONFIG_MTD_PARTITIONS Memory Technology Device partition table. 27 bool "Enable Apple's MacOS partition table" 34 bool "Enable Apple's MacOS partition table for SPL" 39 bool "Enable MS Dos partition table" 47 bool "Enable MS Dos partition table for SPL" 52 bool "Enable ISO partition table" [all …]
|
/openbmc/u-boot/arch/arm/cpu/armv8/fsl-layerscape/ |
H A D | mp.c | 28 u64 *table = get_spin_tbl_addr(); in update_os_arch_secondary_cores() local 33 table[i * WORDS_PER_SPIN_TABLE_ENTRY + in update_os_arch_secondary_cores() 36 table[i * WORDS_PER_SPIN_TABLE_ENTRY + in update_os_arch_secondary_cores() 79 u64 *table = get_spin_tbl_addr(); in fsl_layerscape_wake_seconday_cores() local 89 /* Clear spin table so that secondary processors in fsl_layerscape_wake_seconday_cores() 92 memset(table, 0, CONFIG_MAX_CPUS*SPIN_TABLE_ELEM_SIZE); in fsl_layerscape_wake_seconday_cores() 93 flush_dcache_range((unsigned long)table, in fsl_layerscape_wake_seconday_cores() 94 (unsigned long)table + in fsl_layerscape_wake_seconday_cores() 155 flush_dcache_range((unsigned long)table, (unsigned long)table + in fsl_layerscape_wake_seconday_cores() 158 if (table[i * WORDS_PER_SPIN_TABLE_ENTRY + in fsl_layerscape_wake_seconday_cores() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/ |
H A D | test_toastertable_ui.py | 30 def _get_orderby_heading(self, table): argument 32 Get the current order by finding the column heading in <table> with 35 table: WebElement for a ToasterTable 38 heading = table.find_element(By.CSS_SELECTOR, selector) 56 Test that sort order for a table reverts to the default sort order 89 table = self.wait_until_visible('#allbuildstable') 93 active_heading = self._get_orderby_heading(table) 95 'table should be sorted by "Completed on" by default') 104 'table should be sorted by -completed_on') 111 links = table.find_elements(By.CSS_SELECTOR, 'th.started_on a') [all …]
|
/openbmc/qemu/hw/acpi/ |
H A D | ghes.c | 46 * Table 18-343 Generic Error Data Entry 59 * Table 18-380 Generic Error Status Block 78 static void build_ghes_hw_error_notification(GArray *table, const uint8_t type) in build_ghes_hw_error_notification() argument 81 build_append_int_noprefix(table, type, 1); in build_ghes_hw_error_notification() 86 build_append_int_noprefix(table, 28, 1); in build_ghes_hw_error_notification() 88 build_append_int_noprefix(table, 0, 2); in build_ghes_hw_error_notification() 90 build_append_int_noprefix(table, 0, 4); in build_ghes_hw_error_notification() 92 build_append_int_noprefix(table, 0, 4); in build_ghes_hw_error_notification() 94 build_append_int_noprefix(table, 0, 4); in build_ghes_hw_error_notification() 96 build_append_int_noprefix(table, 0, 4); in build_ghes_hw_error_notification() [all …]
|
/openbmc/qemu/block/ |
H A D | qed-l2-cache.c | 15 * L2 table cache usage is as follows: 17 * An open image has one L2 table cache that is used to avoid accessing the 23 * table cache serves up recently referenced L2 tables. 25 * If there is a cache miss, that L2 table is read from the image file and 26 * committed to the cache. Subsequent accesses to that L2 table will be served 27 * from the cache until the table is evicted from the cache. 30 * in the image file. Since the L2 table cache is write-through, the new L2 31 * table is first written out to the image file and then committed to the 34 * Multiple I/O requests may be using an L2 table cache entry at any given 40 * An in-flight I/O request will hold a reference to a L2 table cache entry for [all …]
|