Home | History | Annotate | Download | only in e2p

Lines Matching refs:uuid

2  * uuid.c -- utility routines for manipulating UUID's.
11 struct uuid {
19 /* Returns 1 if the uuid is the NULL uuid */
31 static void e2p_unpack_uuid(void *in, struct uuid *uu)
59 struct uuid uuid;
61 e2p_unpack_uuid(uu, &uuid);
64 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version,
65 uuid.clock_seq >> 8, uuid.clock_seq & 0xFF,
66 uuid.node[0], uuid.node[1], uuid.node[2],
67 uuid.node[3], uuid.node[4], uuid.node[5]);