Searched refs:module_uuid (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueUUID.cpp80 const UUID &module_uuid = module_sp->GetUUID(); local
81 if (!module_uuid.IsValid())
83 request.TryCompleteCurrentArg(module_uuid.GetAsString());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFileMacOSX.cpp77 llvm::ArrayRef<uint8_t> module_uuid = uuid->GetBytes(); local
78 if (module_uuid.size() == 16) {
80 NULL, module_uuid[0], module_uuid[1], module_uuid[2], module_uuid[3],
81 module_uuid[4], module_uuid[5], module_uuid[6], module_uuid[
[all...]
H A DLocateSymbolFile.cpp308 const UUID &module_uuid = module_spec.GetUUID(); local
309 if (module_uuid.IsValid()) {
312 uuid_str = module_uuid.GetAsString("");
363 // Skip the uuids check if module_uuid is invalid. For example,
366 if (!module_uuid.IsValid() || module_uuid == mspec.GetUUID())
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DModuleCache.cpp84 UUID module_uuid; local
88 module_uuid = module_sp->GetUUID();
91 if (!module_uuid.IsValid())
95 ModuleLock lock(root_dir_spec, module_uuid, error);
98 module_uuid.GetAsString().c_str(), error.AsCString());
109 const auto module_spec_dir = GetModuleDirectory(root_dir_spec, module_uuid);

Completed in 104 milliseconds