Lines Matching refs:uuid_data
431 OSData *uuid_data = NULL; in IOGetBootUUID() local
435 uuid_data = (OSData *)entry->getProperty("boot-uuid"); in IOGetBootUUID()
436 if (uuid_data) { in IOGetBootUUID()
437 unsigned int length = uuid_data->getLength(); in IOGetBootUUID()
442 memcpy(uuid, uuid_data->getBytesNoCopy(), length); in IOGetBootUUID()
459 OSData *uuid_data = NULL; in IOGetApfsPrebootUUID() local
463 uuid_data = (OSData *)entry->getProperty("apfs-preboot-uuid"); in IOGetApfsPrebootUUID()
465 if (uuid_data) { in IOGetApfsPrebootUUID()
466 unsigned int length = uuid_data->getLength(); in IOGetApfsPrebootUUID()
471 memcpy(uuid, uuid_data->getBytesNoCopy(), length); in IOGetApfsPrebootUUID()
488 OSData *uuid_data = NULL; in IOGetAssociatedApfsVolgroupUUID() local
492 uuid_data = (OSData *)entry->getProperty("associated-volume-group"); in IOGetAssociatedApfsVolgroupUUID()
494 if (uuid_data) { in IOGetAssociatedApfsVolgroupUUID()
495 unsigned int length = uuid_data->getLength(); in IOGetAssociatedApfsVolgroupUUID()
501 memcpy(uuid, uuid_data->getBytesNoCopy(), length); in IOGetAssociatedApfsVolgroupUUID()