/src/sbin/efi/ |
gptsubr.c | 107 uint8_t ent_type[16]; /* partition type GUID */ 163 char ent_type[128]; local in function:get_map_widths 165 memcpy(&gpt_uuid, ent->ent_type, sizeof(gpt_uuid)); 166 n = (uint)gpt_uuid_snprintf(ent_type, sizeof(ent_type), 212 char ent_type[128]; local in function:show_map 215 ent_type[0] = '\0'; 230 memcpy(&uuid, ent->ent_type, sizeof(uuid)); 238 memcpy(&gpt_uuid, ent->ent_type, sizeof(uuid)); 239 gpt_uuid_snprintf(ent_type, sizeof(ent_type), "%s", gpt_uuid) [all...] |
bootvar.c | 161 if (memcmp(ent->ent_type, (void *)&(uuid_t)GPT_ENT_TYPE_EFI, 162 sizeof(ent->ent_type)) != 0)
|
/src/sbin/gpt/ |
remove.c | 72 gpt_uuid_copy(ent->ent_type, gpt_uuid_nil);
|
add.c | 74 gpt_uuid_copy(ent->ent_type, xtype); 108 if (!gpt_uuid_is_nil(ent->ent_type)) { 116 if (gpt_uuid_is_nil(ent->ent_type))
|
type.c | 73 gpt_uuid_copy(ent->ent_type, *newtype);
|
show.c | 191 "%d", ent->ent_type); 194 ent->ent_type); 279 gpt_uuid_snprintf(s1, sizeof(s1), "%s", ent->ent_type); 280 gpt_uuid_snprintf(s2, sizeof(s2), "%d", ent->ent_type); 333 gpt_uuid_snprintf(s1, sizeof(s1), "%s", ent->ent_type); 334 gpt_uuid_snprintf(s2, sizeof(s2), "%d", ent->ent_type);
|
resize.c | 84 if (gpt_uuid_is_nil(ent->ent_type)) {
|
migrate.c | 218 gpt_uuid_create(type, ent->ent_type, 317 gpt_uuid_create(type, ent->ent_type, ent->ent_name,
|
backup.c | 171 gpt_uuid_snprintf(buf, sizeof(buf), "%d", ent->ent_type);
|
resizedisk.c | 147 if (!gpt_uuid_is_nil(ent->ent_type) &&
|
gpt.c | 449 if (gpt_uuid_is_nil(ent->ent_type)) 457 ent->ent_type); 1081 !gpt_uuid_equal(find->type, ent->ent_type)) 1329 if (gpt_uuid_is_nil(ent->ent_type)) {
|
restore.c | 137 if (gpt_uuid_parse(s, ent.ent_type) != 0) {
|
/src/sys/arch/i386/stand/bootxx/ |
boot1.c | 170 return (memcmp(ent->ent_type, &unused, sizeof(unused)) == 0); 186 if (memcmp(ent->ent_type, &bootable[i],
|
/src/sys/stand/efiboot/ |
efiblock.c | 385 memcpy(&uuid, ent->ent_type, sizeof(uuid)); 387 if (memcmp(ent->ent_type, &gpt_guid_to_str[n].guid, 388 sizeof(ent->ent_type)) == 0) {
|
/src/sys/dev/dkwedge/ |
dkwedge_gpt.c | 237 uuid_dec_le(ent->ent_type, &ptype_guid);
|
/src/sys/sys/ |
disklabel_gpt.h | 77 uint8_t ent_type[16]; /* partition type GUID */ member in struct:gpt_ent
|
/src/sys/arch/i386/stand/lib/ |
biosdisk.c | 417 u = (const struct uuid *)ep[i].ent_type;
|