/illumos-gate/usr/src/head/uuid/ |
H A D | uuid.h | 64 extern void uuid_generate(uuid_t); 65 extern void uuid_generate_random(uuid_t); 66 extern void uuid_generate_time(uuid_t); 67 extern void uuid_copy(uuid_t, uuid_t); 68 extern void uuid_clear(uuid_t); 69 extern void uuid_unparse(uuid_t, char *); 70 extern void uuid_unparse_lower(uuid_t, char *); 71 extern void uuid_unparse_upper(uuid_t, char *); 72 extern int uuid_compare(uuid_t, uuid_t); 73 extern int uuid_is_null(uuid_t); [all …]
|
/illumos-gate/usr/src/boot/include/ |
H A D | uuid.h | 49 int32_t uuid_compare(const uuid_t *, const uuid_t *, uint32_t *); 50 void uuid_create(uuid_t *, uint32_t *); 51 void uuid_create_nil(uuid_t *, uint32_t *); 52 int32_t uuid_equal(const uuid_t *, const uuid_t *, uint32_t *); 53 void uuid_from_string(const char *, uuid_t *, uint32_t *); 54 uint16_t uuid_hash(const uuid_t *, uint32_t *); 55 int32_t uuid_is_nil(const uuid_t *, uint32_t *); 56 void uuid_to_string(const uuid_t *, char **, uint32_t *); 57 void uuid_enc_le(void *, const uuid_t *); 58 void uuid_dec_le(const void *, uuid_t *); [all …]
|
/illumos-gate/usr/src/lib/libuuid/common/ |
H A D | uuid.c | 85 void struct_to_string(uuid_t, struct uuid *); 86 void string_to_struct(struct uuid *, uuid_t); 319 struct_to_string(uuid_t ptr, struct uuid *uu) in struct_to_string() 356 string_to_struct(struct uuid *uuid, uuid_t in) in string_to_struct() 391 uuid_generate_random(uuid_t uu) in uuid_generate_random() 398 (void) memset(uu, 0, sizeof (uuid_t)); in uuid_generate_random() 401 arc4random_buf(uu, sizeof (uuid_t)); in uuid_generate_random() 424 uuid_generate_time(uuid_t uu) in uuid_generate_time() 444 uuid_generate(uuid_t uu) in uuid_generate() 453 uuid_copy(uuid_t dst, uuid_t src) in uuid_copy() [all …]
|
H A D | uuid_misc.c | 60 void struct_to_string(uuid_t, struct uuid *); 61 void string_to_struct(struct uuid *, uuid_t); 135 uuid_compare(uuid_t uu1, uuid_t uu2) in uuid_compare()
|
/illumos-gate/usr/src/boot/libsa/uuid/ |
H A D | uuid_equal.c | 39 uuid_equal(const uuid_t *a, const uuid_t *b, uint32_t *status) in uuid_equal() 54 return ((memcmp(a, b, sizeof(uuid_t))) ? 0 : 1); in uuid_equal()
|
H A D | uuid_create_nil.c | 39 uuid_create_nil(uuid_t *u, uint32_t *status) in uuid_create_nil()
|
H A D | uuid_is_nil.c | 38 uuid_is_nil(const uuid_t *u, uint32_t *status) in uuid_is_nil()
|
/illumos-gate/usr/src/boot/common/ |
H A D | gpt.c | 94 gptfind(const uuid_t *uuid, struct dsk *dskp, int part) in gptfind() 105 if (bcmp(&ent->ent_type, uuid, sizeof (uuid_t)) != 0) { in gptfind() 127 if (bcmp(&ent->ent_type, uuid, sizeof (uuid_t)) != 0) in gptfind() 141 if (bcmp(&ent->ent_type, uuid, sizeof (uuid_t)) != 0) in gptfind() 157 if (bcmp(&ent->ent_type, uuid, sizeof (uuid_t)) != 0) in gptfind() 283 gptread_table(const char *which, const uuid_t *uuid, struct dsk *dskp, in gptread_table() 321 gptread(const uuid_t *uuid, struct dsk *dskp, char *buf) in gptread()
|
H A D | part.c | 53 static const uuid_t gpt_uuid_unused = GPT_ENT_TYPE_UNUSED; 54 static const uuid_t gpt_uuid_ms_basic_data = GPT_ENT_TYPE_MS_BASIC_DATA; 55 static const uuid_t gpt_uuid_freebsd_ufs = GPT_ENT_TYPE_FREEBSD_UFS; 56 static const uuid_t gpt_uuid_efi = GPT_ENT_TYPE_EFI; 57 static const uuid_t gpt_uuid_freebsd = GPT_ENT_TYPE_FREEBSD; 58 static const uuid_t gpt_uuid_freebsd_boot = GPT_ENT_TYPE_FREEBSD_BOOT; 59 static const uuid_t gpt_uuid_freebsd_swap = GPT_ENT_TYPE_FREEBSD_SWAP; 60 static const uuid_t gpt_uuid_freebsd_zfs = GPT_ENT_TYPE_FREEBSD_ZFS; 61 static const uuid_t gpt_uuid_freebsd_vinum = GPT_ENT_TYPE_FREEBSD_VINUM; 62 static const uuid_t gpt_uuid_illumos_boot = GPT_ENT_TYPE_ILLUMOS_BOOT; [all …]
|
H A D | gpt.h | 33 int gptread(const uuid_t *uuid, struct dsk *dskp, char *buf); 34 int gptfind(const uuid_t *uuid, struct dsk *dskp, int part);
|
/illumos-gate/usr/src/lib/libbe/common/ |
H A D | be_zones.c | 54 uuid_t parent_uuid; 358 be_zone_get_parent_uuid(const char *root_ds, uuid_t *uu) in be_zone_get_parent_uuid() 420 be_zone_set_parent_uuid(char *root_ds, uuid_t uu) in be_zone_set_parent_uuid() 465 uuid_t parent_uuid = {0}; in be_zone_compare_uuids() 466 uuid_t cur_parent_uuid = {0}; in be_zone_compare_uuids() 526 uuid_t parent_uuid = { 0 }; in be_find_active_zone_root_callback()
|
H A D | libbe_priv.h | 114 uuid_t gz_be_uuid; /* UUID of the global zone BE */ 157 int be_get_uuid(const char *, uuid_t *); 220 int be_zone_get_parent_uuid(const char *, uuid_t *); 221 int be_zone_set_parent_uuid(char *, uuid_t);
|
/illumos-gate/usr/src/compat/bhyve/ |
H A D | uuid.h | 28 uuid_from_string(const char *str, uuid_t *uuidp, uint32_t *status) in uuid_from_string() 38 uuid_enc_le(void *buf, uuid_t *uuidp) in uuid_enc_le()
|
/illumos-gate/usr/src/cmd/cmd-crypto/tpmadm/ |
H A D | tpmadm.h | 54 #define UUID_PARSE(str, uuid) uuid_parse(str, *(uuid_t *)&uuid) 55 #define UUID_UNPARSE(uuid, str) uuid_unparse(*(uuid_t *)&uuid, str)
|
/illumos-gate/usr/src/boot/libsa/ |
H A D | uuid_to_string.c | 74 uuid_to_string(const uuid_t *u, char **s, uint32_t *status) in uuid_to_string() 76 uuid_t nil; in uuid_to_string()
|
/illumos-gate/usr/src/lib/libadutils/common/ |
H A D | addisc.h | 184 int ad_disc_compare_uuid(uuid_t *u1, uuid_t *u2);
|
/illumos-gate/usr/src/lib/libv12n/common/ |
H A D | libv12n.h | 52 int v12n_domain_uuid(uuid_t);
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | uuid.h | 81 typedef uchar_t uuid_t[UUID_LEN]; typedef
|
/illumos-gate/usr/src/head/ |
H A D | libzonecfg.h | 173 uuid_t zone_uuid; /* unique ID for zone */ 537 extern int zonecfg_get_name_by_uuid(const uuid_t, char *, size_t); 538 extern int zonecfg_get_uuid(const char *, uuid_t);
|
/illumos-gate/usr/src/boot/efi/libefi/ |
H A D | env.c | 675 uuid_to_string((const uuid_t *)guid, sp, &status); in efi_guid_to_str() 684 uuid_from_string(s, (uuid_t *)guid, &status); in efi_str_to_guid() 709 rv = uuid_equal((uuid_t *)guid, in efi_guid_to_name() 710 (uuid_t *)efi_uuid_mapping[i].efi_guid, NULL); in efi_guid_to_name() 1298 rv = uuid_equal((uuid_t *)&varguid, in command_efi_show() 1299 (uuid_t *)&matchguid, NULL); in command_efi_show() 1428 uuid_t u; in ficlEfiSetenv()
|
/illumos-gate/usr/src/boot/sys/sys/ |
H A D | uuid.h | 77 typedef struct uuid uuid_t; typedef
|
/illumos-gate/usr/src/contrib/mDNSResponder/mDNSShared/ |
H A D | dns_sd_private.h | 87 …rType DNSSD_API DNSServiceCreateDelegateConnection(DNSServiceRef *sdRef, int32_t pid, uuid_t uuid);
|
/illumos-gate/usr/src/grub/grub-0.97/stage2/ |
H A D | xfs.h | 49 typedef xfs_uint8_t uuid_t[16]; typedef 90 uuid_t sb_uuid; /* file system unique id */
|
/illumos-gate/usr/src/cmd/uuidgen/ |
H A D | uuidgen.c | 39 uuid_t uu = { 0 }; in main()
|
/illumos-gate/usr/src/lib/libads/common/ |
H A D | dsgetdc.h | 67 uuid_t DomainGuid;
|