Home | History | Annotate | Download | only in commands

Lines Matching defs:current_entry

271     struct GPT_entry_raw *current_entry = GPT_get_pointer(table, old_entry);
273 if (GPT_check_overlap_except(table, new_entry, current_entry)) {
278 if (current_entry == NULL) {
283 *current_entry = *new_entry;
459 struct GPT_entry_raw *current_entry;
466 current_entry = &table->entries[current];
468 (char *) current_entry->partition_guid , 16) == 0;
469 dontcheck |= current_entry->type_guid[0] == 0;
470 dontcheck |= current_entry == exclude;
472 if (!dontcheck && ((entry->last_lba >= current_entry->first_lba &&
473 entry->first_lba < current_entry->last_lba ))) {