Home | History | Annotate | Download | only in e2p

Lines Matching refs:uu

26 int e2p_is_null_uuid(void *uu)
31 for (i=0, cp = uu; i < 16; i++)
37 static void e2p_unpack_uuid(void *in, struct uuid *uu)
46 uu->time_low = tmp;
50 uu->time_mid = tmp;
54 uu->time_hi_and_version = tmp;
58 uu->clock_seq = tmp;
60 memcpy(uu->node, ptr, 6);
63 void e2p_uuid_to_str(void *uu, char *out)
67 e2p_unpack_uuid(uu, &uuid);
76 const char *e2p_uuid2str(void *uu)
80 if (e2p_is_null_uuid(uu))
82 e2p_uuid_to_str(uu, buf);