Home | History | Annotate | Download | only in gpt

Lines Matching refs:gpt_uuid_t

80 typedef uint8_t gpt_uuid_t[16];
81 extern const gpt_uuid_t gpt_uuid_nil;
85 gpt_uuid_is_nil(const gpt_uuid_t u) {
86 return memcmp(u, gpt_uuid_nil, sizeof(gpt_uuid_t)) == 0;
90 gpt_uuid_equal(const gpt_uuid_t u1, const gpt_uuid_t u2) {
91 return memcmp(u1, u2, sizeof(gpt_uuid_t)) == 0;
95 gpt_uuid_copy(gpt_uuid_t u1, const gpt_uuid_t u2) {
96 memcpy(u1, u2, sizeof(gpt_uuid_t));
99 int gpt_uuid_snprintf(char *, size_t, const char *, const gpt_uuid_t);
101 void gpt_uuid_create(gpt_type_t, gpt_uuid_t, uint16_t *, size_t);
103 int gpt_uuid_parse(const char *, gpt_uuid_t);
106 int gpt_uuid_generate(struct gpt *, gpt_uuid_t);