/freebsd/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 …]
|
/freebsd/usr.sbin/bluetooth/btpand/ |
H A D | sdp.c | 44 static const uuid_t BASE_UUID = { 64 uuid_t u1, u2; in _sdp_match_uuid16() 66 memcpy(&u1, &BASE_UUID, sizeof(uuid_t)); in _sdp_match_uuid16() 85 _sdp_get_uuid(uint8_t **ptr, uint8_t *limit, uuid_t *uuid) in _sdp_get_uuid() 97 memcpy(uuid, &BASE_UUID, sizeof(uuid_t)); in _sdp_get_uuid() 106 memcpy(uuid, &BASE_UUID, sizeof(uuid_t)); in _sdp_get_uuid()
|
H A D | sdp.h | 37 bool _sdp_get_uuid(uint8_t **, uint8_t *, uuid_t *);
|
/freebsd/bin/uuidgen/ |
H A D | uuidgen.c | 47 uuid_to_compact_string(const uuid_t *u, char **s, uint32_t *status) in uuid_to_compact_string() 49 uuid_t nil; in uuid_to_compact_string() 107 uuid_t *store, *uuid; in main() 110 void (*tostring)(const uuid_t *, char **, uint32_t *) = uuid_to_string; in main() 159 store = (uuid_t *)malloc(sizeof(uuid_t) * count); in main()
|
/freebsd/lib/libc/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_stream.c | 55 uuid_enc_le(void *buf, const uuid_t *uuid) in uuid_enc_le() 70 uuid_dec_le(const void *buf, uuid_t *uuid) in uuid_dec_le() 85 uuid_enc_be(void *buf, const uuid_t *uuid) in uuid_enc_be() 100 uuid_dec_be(const void *buf, uuid_t *uuid) in uuid_dec_be()
|
H A D | uuid_to_string.c | 44 uuid_to_string(const uuid_t *u, char **s, uint32_t *status) in uuid_to_string() 46 uuid_t nil; in uuid_to_string()
|
H A D | uuid_compare.c | 48 uuid_compare(const uuid_t *a, const uuid_t *b, uint32_t *status) in uuid_compare()
|
H A D | uuid_create.c | 38 uuid_create(uuid_t *u, uint32_t *status) in uuid_create()
|
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_hash.c | 38 uuid_hash(const uuid_t *u, uint32_t *status) in uuid_hash()
|
H A D | uuid_is_nil.c | 38 uuid_is_nil(const uuid_t *u, uint32_t *status) in uuid_is_nil()
|
/freebsd/stand/common/ |
H A D | part.c | 50 static const uuid_t gpt_uuid_unused = GPT_ENT_TYPE_UNUSED; 51 static const uuid_t gpt_uuid_ms_basic_data = GPT_ENT_TYPE_MS_BASIC_DATA; 52 static const uuid_t gpt_uuid_freebsd_ufs = GPT_ENT_TYPE_FREEBSD_UFS; 53 static const uuid_t gpt_uuid_efi = GPT_ENT_TYPE_EFI; 54 static const uuid_t gpt_uuid_freebsd = GPT_ENT_TYPE_FREEBSD; 55 static const uuid_t gpt_uuid_freebsd_boot = GPT_ENT_TYPE_FREEBSD_BOOT; 56 static const uuid_t gpt_uuid_freebsd_swap = GPT_ENT_TYPE_FREEBSD_SWAP; 57 static const uuid_t gpt_uuid_freebsd_zfs = GPT_ENT_TYPE_FREEBSD_ZFS; 58 static const uuid_t gpt_uuid_freebsd_vinum = GPT_ENT_TYPE_FREEBSD_VINUM; 59 static const uuid_t gpt_uuid_apple_apfs = GPT_ENT_TYPE_APPLE_APFS; [all …]
|
/freebsd/usr.sbin/fstyp/ |
H A D | hammer2_disk.h | 559 uuid_t pfs_clid; /* 20-2F copy target must match this uuid */ 577 uuid_t mediaid; 983 uuid_t uid; /* 0030 uid / degenerate unix uid */ 984 uuid_t gid; /* 0040 gid / degenerate unix gid */ 1022 uuid_t pfs_clid; /* 0090 (if PFSROOT) cluster uuid */ 1023 uuid_t pfs_fsid; /* 00A0 (if PFSROOT) unique uuid */ 1244 uuid_t fsid; /* 0040 */ 1245 uuid_t fstype; /* 0050 */
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | UuidCompatibility.h |
|
/freebsd/lib/libefivar/ |
H A D | uefi-dplib.h | 493 #define CopyGuid(dst, src) memcpy(dst, src, sizeof(uuid_t)) 554 return (uuid_compare((const uuid_t *)g1, (const uuid_t *)g2, in CompareGuid() 585 uuid_from_string(str, (uuid_t *)guid, &status); in StrToGuid() 608 uuid_to_string((const uuid_t *)g, &str, &ignored_status); in guid_str()
|
/freebsd/stand/libsa/ |
H A D | gpt.c | 91 gptfind(const uuid_t *uuid, struct dsk *dskp, int part) in gptfind() 102 if (bcmp(&ent->ent_type, uuid, sizeof(uuid_t)) != 0) { in gptfind() 124 if (bcmp(&ent->ent_type, uuid, sizeof(uuid_t)) != 0) in gptfind() 138 if (bcmp(&ent->ent_type, uuid, sizeof(uuid_t)) != 0) in gptfind() 154 if (bcmp(&ent->ent_type, uuid, sizeof(uuid_t)) != 0) in gptfind()
|
H A D | uuid_to_string.c | 71 uuid_to_string(const uuid_t *u, char **s, uint32_t *status) in uuid_to_string() 73 uuid_t nil; in uuid_to_string()
|
H A D | gpt.h | 36 int gptfind(const uuid_t *uuid, struct dsk *dskp, int part);
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
H A D | MachOYAML.h | 308 using uuid_t = raw_ostream::uuid_t; in LLVM_YAML_IS_SEQUENCE_VECTOR() 310 template <> struct ScalarTraits<uuid_t> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 311 static void output(const uuid_t &Val, void *, raw_ostream &Out); in LLVM_YAML_IS_SEQUENCE_VECTOR() 312 static StringRef input(StringRef Scalar, void *, uuid_t &Val); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_procmaps_mac.cpp | 180 uuid_t dylibUuid; 188 extern bool _dyld_get_shared_cache_uuid(uuid_t uuid); 191 const uuid_t cacheUuid, 196 uuid_t uuid; in GetDyldImageHeaderViaSharedCache()
|
/freebsd/stand/efi/libefi/ |
H A D | env.c | 286 uuid_to_string((const uuid_t *)guid, sp, &status); in efi_guid_to_str() 295 uuid_from_string(s, (uuid_t *)guid, &status); in efi_str_to_guid() 320 rv = uuid_equal((uuid_t *)guid, in efi_guid_to_name() 321 (uuid_t *)&efi_uuid_mapping[i].efi_guid, NULL); in efi_guid_to_name() 908 rv = uuid_equal((uuid_t *)&varguid, in command_efi_show() 909 (uuid_t *)&matchguid, NULL); in command_efi_show()
|
/freebsd/contrib/netbsd-tests/lib/libbluetooth/ |
H A D | t_sdp_get.c | 153 uuid_t u16 = { in ATF_TC_BODY() 161 uuid_t u32 = { in ATF_TC_BODY() 169 uuid_t u128 = { in ATF_TC_BODY() 178 uuid_t value; in ATF_TC_BODY()
|
/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/ |
H A D | uuid.h | 75 } uuid_t; typedef
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ |
H A D | BreakpadRecords.cpp | 101 using uuid_t = uint8_t[16]; in parseModuleId() 102 uuid_t uuid; in parseModuleId() 110 if (str.size() <= hex_digits<data_t::uuid_t>() || in parseModuleId() 116 llvm::StringRef uuid_str = str.take_front(hex_digits<data_t::uuid_t>()); in parseModuleId() 117 llvm::StringRef age_str = str.drop_front(hex_digits<data_t::uuid_t>()); in parseModuleId() 100 using uuid_t = uint8_t[16]; parseModuleId() typedef
|