Home | History | Annotate | Download | only in e2p

Lines Matching refs:uu

25 int e2p_is_null_uuid(void *uu)
30 for (i=0, cp = uu; i < 16; i++)
36 static void e2p_unpack_uuid(void *in, struct uuid *uu)
45 uu->time_low = tmp;
49 uu->time_mid = tmp;
53 uu->time_hi_and_version = tmp;
57 uu->clock_seq = tmp;
59 memcpy(uu->node, ptr, 6);
62 void e2p_uuid_to_str(void *uu, char *out)
66 e2p_unpack_uuid(uu, &uuid);
75 const char *e2p_uuid2str(void *uu)
79 if (e2p_is_null_uuid(uu))
81 e2p_uuid_to_str(uu, buf);