Home
last modified time | relevance | path

Searched refs:UUID (Results 1 – 11 of 11) sorted by relevance

/xnu-11215/tools/lldbmacros/
H A Dmacho.py244 self._uuid = str(uuid.UUID(bytes=segment.uuid)).upper()
323 … other_cmds += "\n\t uuid: {:s}".format(str(uuid.UUID(bytes=segment.uuid)).upper())
H A Dkext.py7 from uuid import UUID
228 return str(UUID(bytes=data)).upper()
H A Dxnu.py1168 ext_uuid = str(uuid.UUID(bytes=uuid_bytes))
/xnu-11215/bsd/sys/
H A Ddtrace.h129 typedef uint8_t UUID[16]; /* For modctl use in dtrace.h */
1466 UUID dtmodsyms_uuid;
1488 UUID dtmul_uuid[1];
1491 …E_MODULE_UUIDS_LIST_SIZE(count) (sizeof(dtrace_module_uuids_list_t) + ((count - 1) * sizeof(UUID)))
H A Ddtrace_glue.h216 UUID mod_uuid;
/xnu-11215/iokit/IOKit/pwr_mgt/
H A DIOPMPrivate.h962 char UUID[44]; member
/xnu-11215/tests/
H A Dstackshot_tests.m1559 …T_ASSERT_EQ(expected_offset, info->imageLoadAddress, "found matching UUID with matching binary off…
1576 T_FAIL("failed to find matching UUID in stackshot data");
1657 /* Find the UUID of our main binary */
1664 T_LOG("Found current UUID is %s", str);
2722 "dyld returned UUID doesn't match kernel returned UUID");
2742 …T_ASSERT_TRUE(_dyld_get_shared_cache_uuid(shared_cache_uuid), "retrieve current shared cache UUID"…
2745 "dyld returned UUID doesn't match kernel returned UUID for system shared cache");
2803 …T_LOG("Skipping verifying shared cache UUID in stackshot data because not running with a shared ca…
3168 * we get here, then we have found the shared cache UUID
3456 * found the shared cache UUID to be correct.
[all …]
/xnu-11215/iokit/DriverKit/
H A DIOExtensiblePaniclog.iig67 * @param uuid The UUID of the handle.
/xnu-11215/doc/debugging/
H A Ddebugging.md176 # 1. Get a coredump from a device and kernel UUID
/xnu-11215/iokit/Kernel/
H A DIOPMrootDomain.cpp12843 (char*)hdr + offsetof(swd_hdr, UUID),
12844 sizeof(swd_hdr) - offsetof(swd_hdr, UUID));
/xnu-11215/bsd/dev/dtrace/
H A Ddtrace.c18764 UUID* uuid = &uuids_list->dtmul_uuid[dtmul_count]; in dtrace_ioctl()
18766 memcpy(uuid, ctl->mod_uuid, sizeof(UUID)); in dtrace_ioctl()
18874 …OD_SYMBOLS_DONE(ctl) && memcmp(module_symbols->dtmodsyms_uuid, ctl->mod_uuid, sizeof(UUID)) == 0) { in dtrace_ioctl()