Home
last modified time | relevance | path

Searched full:entry (Results 1 – 25 of 2627) sorted by relevance

12345678910>>...106

/openbmc/qemu/tests/qemu-iotests/
H A D271.out9 L2 entry #0: 0x8000000000050000 0000000000000001
11 L2 entry #0: 0x8000000000050000 0000000000000003
13 L2 entry #0: 0x8000000000050000 0000000000000007
15 L2 entry #0: 0x8000000000050000 000000000000000f
17 L2 entry #0: 0x8000000000050000 000000000000007f
19 L2 entry #0: 0x8000000000050000 00000000000003ff
21 L2 entry #0: 0x8000000000050000 00000000000103ff
23 L2 entry #0: 0x8000000000050000 00000000800103ff
24 L2 entry #1: 0x8000000000060000 0000000000000003
26 L2 entry #0: 0x8000000000050000 00000002800103fd
[all …]
/openbmc/libpldm/include/libpldm/
H A Dbios_table.h40 * @note *end* is a position after the last entry.
44 /** @brief Get iterator to next entry
49 /** @brief Get the bios table entry that the iterator points to
51 * @return Pointer to an entry in bios table
55 /** @brief Get the bios attribute table entry that the iterator points to
57 * @return Pointer to an entry in bios attribute table
66 /** @brief Get the bios string table entry that the iterator points to
68 * @return Pointer to an entry in bios string table
77 /** @brief Get the bios attribute value table entry that the iterator points to
79 * @return Pointer to an entry in bios attribute value table
[all …]
/openbmc/u-boot/tools/binman/
H A Dbsection.py30 _pad_before: Number of bytes before the first entry starts. This
31 effectively changes the place where entry offset 0 starts
32 _pad_after: Number of bytes after the last entry ends. The last
33 entry will finish on or before this boundary
34 _pad_byte: Byte to use to pad the section where there is no entry
37 _skip_at_start: Number of bytes before the first entry starts. These
39 if _pad_before is 16, then the first entry would start at 16.
40 An entry with offset = 20 would in fact be written at offset 4
44 address (like 0xff800000) is the first entry offset. This causes
51 global entry
[all …]
H A Dentry_test.py5 # Test for the Entry class
16 entry = None variable
33 """Test that we can import Entry subclassess successfully"""
36 global entry
37 import entry
38 entry.Entry.Create(None, self.GetNode(), 'u-boot')
42 global entry
43 if entry:
44 reload(entry)
46 import entry
[all …]
H A DREADME.entries1 Binman Entry Documentation
4 This file describes the entry types supported by binman. These entry types can
6 fairly easy to create new entry types. Just add a new file to the 'etype'
14 Entry: blob: Entry containing an arbitrary binary blob
18 class by other entry types.
20 Properties / Entry arguments:
21 - filename: Filename of file to read into entry
26 This entry reads data from a file and places it in the entry. The
28 example the 'u_boot' entry which provides the filename 'u-boot.bin'.
36 Entry: blob-dtb: A blob that holds a device tree
[all …]
/openbmc/qemu/block/
H A Dqed-l2-cache.c34 * Multiple I/O requests may be using an L2 table cache entry at any given
35 * time. That means an entry may be in use across several requests and
36 * reference counting is needed to free the entry at the correct time. In
37 * particular, an entry evicted from the cache will only be freed once all
40 * An in-flight I/O request will hold a reference to a L2 table cache entry for
50 * table will be deleted in favor of the existing cache entry.
75 CachedL2Table *entry, *next_entry; in qed_free_l2_cache() local
77 QTAILQ_FOREACH_SAFE(entry, &l2_cache->entries, node, next_entry) { in qed_free_l2_cache()
78 qemu_vfree(entry->table); in qed_free_l2_cache()
79 g_free(entry); in qed_free_l2_cache()
[all …]
/openbmc/qemu/util/
H A Denvlist.c37 struct envlist_entry *entry; in envlist_free() local
42 entry = envlist->el_entries.lh_first; in envlist_free()
43 QLIST_REMOVE(entry, ev_link); in envlist_free()
45 g_free((char *)entry->ev_var); in envlist_free()
46 g_free(entry); in envlist_free()
60 struct envlist_entry *entry = NULL; in envlist_setenv() local
75 * new entry. in envlist_setenv()
77 for (entry = envlist->el_entries.lh_first; entry != NULL; in envlist_setenv()
78 entry = entry->ev_link.le_next) { in envlist_setenv()
79 if (strncmp(entry->ev_var, env, envname_len) == 0) in envlist_setenv()
[all …]
H A Dyank.c70 YankInstanceEntry *entry; in yank_find_entry() local
72 QLIST_FOREACH(entry, &yank_instance_list, next) { in yank_find_entry()
73 if (yank_instance_equal(entry->instance, instance)) { in yank_find_entry()
74 return entry; in yank_find_entry()
82 YankInstanceEntry *entry; in yank_register_instance() local
91 entry = g_new0(YankInstanceEntry, 1); in yank_register_instance()
92 entry->instance = QAPI_CLONE(YankInstance, instance); in yank_register_instance()
93 QLIST_INIT(&entry->yankfns); in yank_register_instance()
94 QLIST_INSERT_HEAD(&yank_instance_list, entry, next); in yank_register_instance()
101 YankInstanceEntry *entry; in yank_unregister_instance() local
[all …]
/openbmc/qemu/hw/xen/
H A Dxen-mapcache.c62 MapCacheEntry *entry; member
131 mc->entry = g_malloc0(size); in xen_map_cache_init_single()
191 MapCacheEntry *entry, in xen_remap_bucket() argument
216 if (entry->vaddr_base != NULL) { in xen_remap_bucket()
217 if (!(entry->flags & XEN_MAPCACHE_ENTRY_DUMMY)) { in xen_remap_bucket()
218 ram_block_notify_remove(entry->vaddr_base, entry->size, in xen_remap_bucket()
219 entry->size); in xen_remap_bucket()
223 * If an entry is being replaced by another mapping and we're using in xen_remap_bucket()
232 assert(!vaddr || (entry->vaddr_base == vaddr && entry->size == size)); in xen_remap_bucket()
234 if (!vaddr && munmap(entry->vaddr_base, entry->size) != 0) { in xen_remap_bucket()
[all …]
/openbmc/qemu/tests/multiboot/
H A Dmmap.out10 0x0 - 0x9fc00: type 1 [entry size: 20]
11 0x9fc00 - 0xa0000: type 2 [entry size: 20]
12 0xf0000 - 0x100000: type 2 [entry size: 20]
13 0x100000 - 0x7fe0000: type 1 [entry size: 20]
14 0x7fe0000 - 0x8000000: type 2 [entry size: 20]
15 0xfffc0000 - 0x100000000: type 2 [entry size: 20]
28 0x0 - 0x9fc00: type 1 [entry size: 20]
29 0x9fc00 - 0xa0000: type 2 [entry size: 20]
30 0xf0000 - 0x100000: type 2 [entry size: 20]
31 0x100000 - 0x11a000: type 1 [entry size: 20]
[all …]
/openbmc/pldm/libpldmresponder/
H A Dbios_table.hpp149 /** @brief Get the string handle for the entry
150 * @param[in] entry - Pointer to a bios string table entry
153 uint16_t decodeHandle(const pldm_bios_string_table_entry* entry);
155 /** @brief Get the string from the entry
156 * @param[in] entry - Pointer to a bios string table entry
159 std::string decodeString(const pldm_bios_string_table_entry* entry);
161 /** @brief construct entry of string table at the end of the given
165 * @return pointer to the constructed entry
185 /** @brief Decode header of attribute table entry
186 * @param[in] entry - Pointer to an attribute table entry
[all …]
/openbmc/qemu/hw/dma/
H A Dsoc_dma.c130 struct memmap_entry_s *entry = soc_dma_lookup(dma, ch->vaddr[port]); in soc_dma_ch_update_type() local
132 if (entry->type == soc_dma_port_fifo) { in soc_dma_ch_update_type()
133 while (entry < dma->memmap + dma->memmap_size && in soc_dma_ch_update_type()
134 entry->u.fifo.out != port) in soc_dma_ch_update_type()
135 entry ++; in soc_dma_ch_update_type()
136 if (entry->addr != ch->vaddr[port] || entry->u.fifo.out != port) in soc_dma_ch_update_type()
142 ch->io_fn[port] = entry->u.fifo.fn; in soc_dma_ch_update_type()
143 ch->io_opaque[port] = entry->u.fifo.opaque; in soc_dma_ch_update_type()
145 } else if (entry->type == soc_dma_port_mem) { in soc_dma_ch_update_type()
146 if (entry->addr > ch->vaddr[port] || in soc_dma_ch_update_type()
[all …]
/openbmc/libpldm/src/dsp/
H A Dbios_table.c64 int pldm_bios_table_string_entry_encode(void *entry, size_t entry_length, in pldm_bios_table_string_entry_encode() argument
70 POINTER_CHECK(entry); in pldm_bios_table_string_entry_encode()
79 struct pldm_bios_string_table_entry *string_entry = entry; in pldm_bios_table_string_entry_encode()
93 const struct pldm_bios_string_table_entry *entry) in pldm_bios_table_string_entry_decode_handle() argument
95 return le16toh(entry->string_handle); in pldm_bios_table_string_entry_decode_handle()
100 const struct pldm_bios_string_table_entry *entry) in pldm_bios_table_string_entry_decode_string_length() argument
102 return le16toh(entry->string_length); in pldm_bios_table_string_entry_decode_string_length()
107 const struct pldm_bios_string_table_entry *entry, char *buffer, in pldm_bios_table_string_entry_decode_string() argument
110 POINTER_CHECK(entry); in pldm_bios_table_string_entry_decode_string()
116 pldm_bios_table_string_entry_decode_string_length(entry); in pldm_bios_table_string_entry_decode_string()
[all …]
/openbmc/u-boot/drivers/misc/
H A Dqfw.c27 * @entry : BIOS linker command entry which tells where to allocate memory
34 static int bios_linker_allocate(struct bios_linker_entry *entry, ulong *addr) in bios_linker_allocate() argument
40 align = le32_to_cpu(entry->alloc.align); in bios_linker_allocate()
47 file = qemu_fwcfg_find_file(entry->alloc.file); in bios_linker_allocate()
49 printf("error: can't find file %s\n", entry->alloc.file); in bios_linker_allocate()
61 if (entry->alloc.zone == BIOS_LINKER_LOADER_ALLOC_ZONE_HIGH) { in bios_linker_allocate()
67 } else if (entry->alloc.zone == BIOS_LINKER_LOADER_ALLOC_ZONE_FSEG) { in bios_linker_allocate()
75 file->cfg.name, size, entry->alloc.zone, align, aligned_addr); in bios_linker_allocate()
82 if (entry->alloc.zone == BIOS_LINKER_LOADER_ALLOC_ZONE_FSEG) in bios_linker_allocate()
92 * @entry : BIOS linker command entry which tells how to patch
[all …]
/openbmc/phosphor-debug-collector/
H A Dbmc_dump_entry.hpp4 #include "xyz/openbmc_project/Dump/Entry/BMC/server.hpp"
5 #include "xyz/openbmc_project/Dump/Entry/server.hpp"
24 sdbusplus::xyz::openbmc_project::Dump::Entry::server::BMC>;
29 /** @class Entry
30 * @brief OpenBMC Dump Entry implementation.
32 * xyz.openbmc_project.Dump.Entry DBus API
34 class Entry : virtual public phosphor::dump::Entry, virtual public EntryIfaces class
37 Entry() = delete;
38 Entry(const Entry&) = delete;
39 Entry& operator=(const Entry&) = delete;
[all …]
H A Dfaultlog_dump_entry.hpp21 /** @class Entry
22 * @brief OpenBMC Fault Log Dump Entry implementation.
24 class Entry : virtual public phosphor::dump::Entry class
27 Entry() = delete;
28 Entry(const Entry&) = delete;
29 Entry& operator=(const Entry&) = delete;
30 Entry(Entry&&) = delete;
31 Entry& operator=(Entry&&) = delete;
32 ~Entry() = default;
34 /** @brief Constructor for the Dump Entry Object
[all …]
/openbmc/qemu/stats/
H A Dstats-qmp-cmds.c28 StatsCallbacks *entry = g_new(StatsCallbacks, 1); in add_stats_callbacks() local
29 entry->provider = provider; in add_stats_callbacks()
30 entry->stats_cb = stats_fn; in add_stats_callbacks()
31 entry->schemas_cb = schemas_fn; in add_stats_callbacks()
33 QTAILQ_INSERT_TAIL(&stats_callbacks, entry, next); in add_stats_callbacks()
36 static bool invoke_stats_cb(StatsCallbacks *entry, in invoke_stats_cb() argument
46 if (request->provider != entry->provider) { in invoke_stats_cb()
73 entry->stats_cb(stats_results, filter->target, names, targets, errp); in invoke_stats_cb()
85 StatsCallbacks *entry; in qmp_query_stats() local
88 QTAILQ_FOREACH(entry, &stats_callbacks, next) { in qmp_query_stats()
[all …]
/openbmc/qemu/target/sh4/
H A Dhelper.c75 should be loaded with the kernel entry point. in superh_cpu_do_interrupt()
231 /* Find the corresponding entry in the right TLB
232 Return entry, MMU_DTLB_MISS or MMU_DTLB_MULTIPLE
246 continue; /* Invalid entry */ in find_tlb_entry()
273 /* Copy and utlb entry into itlb
274 Return entry
291 /* Find itlb entry
292 Return entry, MMU_ITLB_MISS, MMU_ITLB_MULTIPLE or MMU_DTLB_MULTIPLE
310 /* Find utlb entry
311 Return entry, MMU_DTLB_MISS, MMU_DTLB_MULTIPLE */
[all …]
/openbmc/phosphor-debug-collector/dump-extensions/openpower-dumps/
H A Dsystem_dump_entry.hpp5 #include "xyz/openbmc_project/Dump/Entry/System/server.hpp"
20 sdbusplus::xyz::openbmc_project::Dump::Entry::server::System>;
27 /** @class Entry
28 * @brief System Dump Entry implementation.
30 * xyz.openbmc_project.Dump.Entry DBus API
32 class Entry : virtual public phosphor::dump::Entry, virtual public EntryIfaces class
35 Entry() = delete;
36 Entry(const Entry&) = delete;
37 Entry& operator=(const Entry&) = delete;
38 Entry(Entry&&) = delete;
[all …]
H A Dresource_dump_entry.hpp3 #include "com/ibm/Dump/Entry/Resource/server.hpp"
22 sdbusplus::com::ibm::Dump::Entry::server::Resource>;
29 /** @class Entry
30 * @brief Resource Dump Entry implementation.
31 * @details An extension to Dump::Entry class and
33 * com::ibm::Dump::Entry::Resource DBus API
35 class Entry : virtual public phosphor::dump::Entry, virtual public EntryIfaces class
38 Entry() = delete;
39 Entry(const Entry&) = delete;
40 Entry& operator=(const Entry&) = delete;
[all …]
/openbmc/u-boot/drivers/core/
H A Droot.c77 struct driver *entry; in fix_drivers() local
79 for (entry = drv; entry != drv + n_ents; entry++) { in fix_drivers()
80 if (entry->of_match) in fix_drivers()
81 entry->of_match = (const struct udevice_id *) in fix_drivers()
82 ((u32)entry->of_match + gd->reloc_off); in fix_drivers()
83 if (entry->bind) in fix_drivers()
84 entry->bind += gd->reloc_off; in fix_drivers()
85 if (entry->probe) in fix_drivers()
86 entry->probe += gd->reloc_off; in fix_drivers()
87 if (entry->remove) in fix_drivers()
[all …]
/openbmc/qemu/hw/acpi/
H A Dbios-linker-loader.c141 BiosLinkerFileEntry *entry; in bios_linker_loader_cleanup() local
146 entry = &g_array_index(linker->file_list, BiosLinkerFileEntry, i); in bios_linker_loader_cleanup()
147 g_free(entry->name); in bios_linker_loader_cleanup()
157 BiosLinkerFileEntry *entry; in bios_linker_find_file() local
160 entry = &g_array_index(linker->file_list, BiosLinkerFileEntry, i); in bios_linker_find_file()
161 if (!strcmp(entry->name, name)) { in bios_linker_find_file()
162 return entry; in bios_linker_find_file()
195 BiosLinkerLoaderEntry entry; in bios_linker_loader_alloc() local
203 memset(&entry, 0, sizeof entry); in bios_linker_loader_alloc()
204 strncpy(entry.alloc.file, file_name, sizeof entry.alloc.file - 1); in bios_linker_loader_alloc()
[all …]
/openbmc/u-boot/cmd/
H A Dbootmenu.c27 char *title; /* title of entry */
28 char *command; /* hush command of entry */
30 struct bootmenu_entry *next; /* next menu entry (num+1) */
35 int active; /* active menu entry */
37 struct bootmenu_entry *first; /* first menu entry */
60 struct bootmenu_entry *entry = data; in bootmenu_print_entry() local
61 int reverse = (entry->menu->active == entry->num); in bootmenu_print_entry()
64 * Move cursor to line where the entry will be drown (entry->num) in bootmenu_print_entry()
67 printf(ANSI_CURSOR_POSITION, entry->num + 4, 1); in bootmenu_print_entry()
74 puts(entry->title); in bootmenu_print_entry()
[all …]
/openbmc/phosphor-certificate-manager/bmc-vmi-ca/
H A Dca_cert_entry.hpp3 #include "xyz/openbmc_project/Certs/Entry/server.hpp"
20 sdbusplus::xyz::openbmc_project::Certs::server::Entry,
26 /** @class Entry
27 * @brief CA authority certificate Entry implementation.
29 * xyz.openbmc_project.Certs.Entry DBus API
31 class Entry : public internal::EntryInterface class
34 Entry() = delete;
35 Entry(const Entry&) = delete;
36 Entry& operator=(const Entry&) = delete;
37 Entry(Entry&&) = delete;
[all …]
/openbmc/u-boot/arch/x86/lib/
H A Dsfi.c43 static void finish_table(struct table_info *tab, const char *sig, void *entry) in finish_table() argument
49 hdr->len = sizeof(*hdr) + ((ulong)entry - tab->entry_start); in finish_table()
62 u64 *entry = get_entry_start(tab); in sfi_write_system_header() local
65 if (!entry) in sfi_write_system_header()
69 *entry++ = tab->table[i]; in sfi_write_system_header()
70 finish_table(tab, SFI_SIG_SYST, entry); in sfi_write_system_header()
77 struct sfi_cpu_table_entry *entry = get_entry_start(tab); in sfi_write_cpus() local
81 if (!entry) in sfi_write_cpus()
91 entry->apic_id = plat->cpu_id; in sfi_write_cpus()
92 entry++; in sfi_write_cpus()
[all …]

12345678910>>...106