Lines Matching defs:entry
84 VERBOSE("MBR header entry has an invalid number of sectors\n");
152 * Load a single MBR entry based on details from MBR header.
210 * Try to read and load a single GPT entry.
212 static int load_gpt_entry(uintptr_t image_handle, gpt_entry_t *entry)
217 assert(entry != NULL);
218 result = io_read(image_handle, (uintptr_t)entry, sizeof(gpt_entry_t),
231 * Retrieve each entry in the partition table, parse the data from each
232 * entry and store them in the list of partition table entries.
238 gpt_entry_t entry;
249 result = load_gpt_entry(image_handle, &entry);
251 VERBOSE("Failed to load gpt entry data(%i) error is (%i)\n",
256 result = parse_gpt_entry(&entry, &list.list[i]);
404 * Try retrieving a partition table entry based on the name of the partition.
419 * Try retrieving a partition table entry based on the GUID.
435 * Try retrieving a partition table entry based on the UUID.
451 * Return entry to the list of partition table entries.