Home | History | Annotate | Download | only in cgpt

Lines Matching refs:Uuid

392   guid->u.Uuid.time_low = htole32(time_low);
393 guid->u.Uuid.time_mid = htole16(time_mid);
394 guid->u.Uuid.time_high_and_version = htole16(time_high_and_version);
396 guid->u.Uuid.clock_seq_high_and_reserved = chunk[3] & 0xff;
397 guid->u.Uuid.clock_seq_low = chunk[4] & 0xff;
398 guid->u.Uuid.node[0] = chunk[5] & 0xff;
399 guid->u.Uuid.node[1] = chunk[6] & 0xff;
400 guid->u.Uuid.node[2] = chunk[7] & 0xff;
401 guid->u.Uuid.node[3] = chunk[8] & 0xff;
402 guid->u.Uuid.node[4] = chunk[9] & 0xff;
403 guid->u.Uuid.node[5] = chunk[10] & 0xff;
411 le32toh(guid->u.Uuid.time_low),
412 le16toh(guid->u.Uuid.time_mid),
413 le16toh(guid->u.Uuid.time_high_and_version),
414 guid->u.Uuid.clock_seq_high_and_reserved,
415 guid->u.Uuid.clock_seq_low,
416 guid->u.Uuid.node[0], guid->u.Uuid.node[1],
417 guid->u.Uuid.node[2], guid->u.Uuid.node[3],
418 guid->u.Uuid.node[4], guid->u.Uuid.node[5]) == GUID_STRLEN-1);