Lines Matching full:uuid

31 #include "lldb/Utility/UUID.h"
56 CFUUIDRef uuid, CFURLRef exec_url) = nullptr;
95 const UUID *uuid = module_spec.GetUUIDPtr();
119 if (uuid && uuid->IsValid()) {
121 llvm::ArrayRef<uint8_t> module_uuid = uuid->GetBytes();
149 "UUID %s -- looking for the dSYM",
150 path, uuid->GetAsString().c_str());
157 dsym_filespec, uuid, arch);
171 "UUID %s -- looking for an exec file",
172 path, uuid->GetAsString().c_str());
180 CFCString uuid_cfstr(uuid->GetAsString().c_str());
196 LLDB_LOGF(log, "using original binary filepath %s for UUID %s",
198 uuid->GetAsString().c_str());
208 // If we found it and it has the correct UUID, let's proceed with
210 if (image_info.uuid && (!module_spec.GetUUID() ||
211 module_spec.GetUUID() == image_info.uuid)) {
216 "UUID %s",
218 uuid->GetAsString().c_str());
230 LLDB_LOGF(log, "plist bundle has exec path of %s for UUID %s",
231 path, uuid->GetAsString().c_str());
330 const FileSpec &dsym_bundle_fspec, const UUID *uuid, const ArchSpec *arch) {
353 if ((uuid == nullptr ||
354 (spec.GetUUIDPtr() && spec.GetUUID() == *uuid)) &&
369 const lldb_private::UUID *uuid) {
377 if ((uuid == nullptr || (spec.GetUUIDPtr() && spec.GetUUID() == *uuid)) &&
388 // Given a binary exec_fspec, and a ModuleSpec with an architecture/uuid,
460 // Given a ModuleSpec with a FileSpec and optionally uuid/architecture
479 LLDB_LOGF(log, "dSYM with matching UUID & arch found at %s",
511 LLDB_LOGF(log, "dSYM with matching UUID & arch found at %s",
537 const UUID *uuid = module_spec.GetUUIDPtr();
561 if (uuid && uuid->IsValid()) {
563 llvm::ArrayRef<uint8_t> module_uuid = uuid->GetBytes();
591 "UUID %s -- looking for the dSYM",
592 path, uuid->GetAsString().c_str());
599 dsym_filespec, uuid, arch);
613 "UUID %s -- looking for an exec file",
614 path, uuid->GetAsString().c_str());
622 CFCString uuid_cfstr(uuid->GetAsString().c_str());
638 LLDB_LOGF(log, "using original binary filepath %s for UUID %s",
640 uuid->GetAsString().c_str());
650 // If we found it and it has the correct UUID, let's proceed with
652 if (image_info.uuid && (!module_spec.GetUUID() ||
653 module_spec.GetUUID() == image_info.uuid)) {
658 "UUID %s",
660 uuid->GetAsString().c_str());
672 LLDB_LOGF(log, "plist bundle has exec path of %s for UUID %s",
673 path, uuid->GetAsString().c_str());
772 const UUID *uuid = module_spec.GetUUIDPtr();
775 "LocateExecutableSymbolFileDsym (file = %s, arch = %s, uuid = %p)",
777 arch ? arch->GetArchitectureName() : "<NULL>", (const void *)uuid);
1029 const UUID *uuid_ptr = module_spec.GetUUIDPtr();
1042 // We need a UUID or valid existing FileSpec.