Searched refs:uuid_t (Results 1 - 15 of 15) sorted by relevance

/darwin-on-arm/xnu/bsd/sys/_types/
H A D_uuid_t.h30 typedef __darwin_uuid_t uuid_t; typedef
/darwin-on-arm/xnu/bsd/uuid/
H A Duuid.h42 typedef __darwin_uuid_t uuid_t; typedef
51 static const uuid_t name __attribute__ ((unused)) = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
57 void uuid_clear(uuid_t uu);
59 int uuid_compare(const uuid_t uu1, const uuid_t uu2);
61 void uuid_copy(uuid_t dst, const uuid_t src);
63 void uuid_generate(uuid_t out);
64 void uuid_generate_random(uuid_t out);
65 void uuid_generate_time(uuid_t ou
[all...]
/darwin-on-arm/xnu/libkern/uuid/
H A Duuid.c70 uuid_clear(uuid_t uu)
72 memset(uu, 0, sizeof(uuid_t));
76 uuid_compare(const uuid_t uu1, const uuid_t uu2)
78 return memcmp(uu1, uu2, sizeof(uuid_t));
82 uuid_copy(uuid_t dst, const uuid_t src)
84 memcpy(dst, src, sizeof(uuid_t));
88 uuid_generate_random(uuid_t out)
90 read_random(out, sizeof(uuid_t));
[all...]
/darwin-on-arm/xnu/osfmk/kdp/
H A Dkdp_dyld.h38 uuid_t imageUUID; /* UUID of image */
43 uuid_t imageUUID; /* UUID of image */
/darwin-on-arm/xnu/tools/tests/libMicro/apple/
H A Dmbr_check_membership.c78 static uuid_t *u_uuid_list = NULL; // user uuid list
79 static uuid_t *g_uuid_list = NULL; // group uuid list
H A Dmbr_check_service_membership.c67 uuid_t *uuid_list;
181 ts->uuid_list = calloc(optRecords, sizeof(uuid_t));
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOPlatformExpert.cpp953 const uuid_t space = { 0xA6, 0xDD, 0x4C, 0xCB, 0xB5, 0xE8, 0x4A, 0xF5, 0xAC, 0xDD, 0xB6, 0xDC, 0x6A, 0x05, 0x42, 0xB8 };
980 const uuid_t space = { 0x2A, 0x06, 0x19, 0x90, 0xD3, 0x8D, 0x44, 0x40, 0xA1, 0x39, 0xC4, 0x97, 0x70, 0x37, 0x65, 0xAC };
1004 if ( data && data->getLength( ) == sizeof( uuid_t ) )
1422 uuid_t uuid;
1436 entry->setProperty( "platform-uuid", uuid, sizeof( uuid_t ) );
H A DIOHibernateIO.cpp702 uuid_t volumeKeyUUID;
/darwin-on-arm/xnu/osfmk/kern/
H A Ddebug.c192 if ((uuid != NULL) && (uuidlen == sizeof(uuid_t))) {
193 uuid_unparse_upper(*(uuid_t *)uuid, kernel_uuid);
/darwin-on-arm/xnu/libkern/libkern/
H A DOSKextLibPrivate.h855 uuid_t uuid;
/darwin-on-arm/xnu/bsd/sys/
H A Dmount.h271 uuid_t f_uuid; /* file system UUID (version 3 or 5), available in 10.6 and later */
/darwin-on-arm/xnu/iokit/bsddev/
H A DIOKitBSDInit.cpp642 kern_return_t IOBSDGetPlatformUUID( uuid_t uuid, mach_timespec_t timeout )
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_exec.c244 uuid_t process_uuid;
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_attrlist.c257 {ATTR_VOL_UUID, VFSATTR_BIT(f_uuid), sizeof(uuid_t)},
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_vfsops.c7346 hfs_getvoluuid(struct hfsmount *hfsmp, uuid_t result)
7355 MD5Update( &md5c, HFS_UUID_NAMESPACE_ID, sizeof( uuid_t ) );

Completed in 195 milliseconds