Home | History | Annotate | Download | only in e2p

Lines Matching defs:uuid

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