Home | History | Annotate | Download | only in e2p

Lines Matching refs:uuid

2  * uuid.c -- utility routines for manipulating UUID's.
17 struct uuid {
25 /* Returns 1 if the uuid is the NULL uuid */
37 static void e2p_unpack_uuid(void *in, struct uuid *uu)
65 struct uuid uuid;
67 e2p_unpack_uuid(uu, &uuid);
70 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version,
71 uuid.clock_seq >> 8, uuid.clock_seq & 0xFF,
72 uuid.node[0], uuid.node[1], uuid.node[2],
73 uuid.node[3], uuid.node[4], uuid.node[5]);