reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Utility/UUID.h
   64   std::string GetAsString(llvm::StringRef separator = "-") const;

References

tools/lldb/source/API/SBModule.cpp
  179     uuid_cstr = ConstString(module_sp->GetUUID().GetAsString()).GetCString();
tools/lldb/source/Commands/CommandObjectTarget.cpp
 2854           uuid_str = module_spec.GetUUID().GetAsString();
tools/lldb/source/Core/ModuleList.cpp
  589                 module->GetUUID().GetAsString().c_str(),
  862           uuid_str = uuid_ptr->GetAsString();
  942             uuid_str = uuid_ptr->GetAsString();
tools/lldb/source/Interpreter/OptionValueUUID.cpp
   83     request.TryCompleteCurrentArg(module_uuid.GetAsString());
tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
  491           uuid_str += memory_module_sp->GetUUID().GetAsString();
  702                   m_uuid.GetAsString().c_str(), m_load_address,
  703                   memory_module_sp->GetUUID().GetAsString().c_str());
  777     s.Printf("Kernel UUID: %s\n", m_uuid.GetAsString().c_str());
 1351           uuid = ku.second.GetAsString();
 1426     LLDB_LOG(log, "uuid={0} name=\"{1}\" (UNLOADED)", m_uuid.GetAsString(),
 1430         m_load_address, m_size, m_uuid.GetAsString(), m_name);
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
  774              uuid.GetAsString(), file_spec.GetPath());
  777              address, mod_date, uuid.GetAsString(), file_spec.GetPath());
tools/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.cpp
  191             << R.ID.GetAsString();
  216   return OS << "INFO CODE_ID " << R.ID.GetAsString();
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 2024               dsc_uuid.GetAsString().c_str());
 5666       uuid.GetAsString().c_str(), base_addr);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
 1090   const auto uuid_str = matched_module_spec.GetUUID().GetAsString("");
 1157     const auto uuid_str = matched_module_spec.GetUUID().GetAsString("");
tools/lldb/source/Symbol/LocateSymbolFile.cpp
  312     uuid_str = module_uuid.GetAsString("");
tools/lldb/source/Target/ModuleCache.cpp
   74   return JoinPath(modules_dir_spec, uuid.GetAsString().c_str());
   98               module_uuid.GetAsString().c_str(), error.AsCString());
  159   m_file_spec = JoinPath(lock_dir_spec, uuid.GetAsString().c_str());
  218       m_loaded_modules.find(module_spec.GetUUID().GetAsString());
  263       std::make_pair(module_spec.GetUUID().GetAsString(), cached_module_sp));
  284                   module_spec.GetUUID().GetAsString().c_str(),
tools/lldb/source/Target/Platform.cpp
 1619             __FUNCTION__, module_spec.GetUUID().GetAsString().c_str(),
tools/lldb/source/Utility/UUID.cpp
   53 void UUID::Dump(Stream *s) const { s->PutCString(GetAsString()); }
tools/lldb/tools/lldb-test/lldb-test.cpp
  887     Printer.formatLine("UUID: {0}", ModulePtr->GetUUID().GetAsString());
tools/lldb/unittests/Target/ModuleCacheTest.cpp
  137   EXPECT_STREQ(module_uuid, module_sp->GetUUID().GetAsString().c_str());
tools/lldb/unittests/Utility/UUIDTest.cpp
   82   EXPECT_EQ("40414243", UUID::fromData("@ABC", 4).GetAsString());
   83   EXPECT_EQ("40414243-4445-4647", UUID::fromData("@ABCDEFG", 8).GetAsString());
   85             UUID::fromData("@ABCDEFGHIJK", 12).GetAsString());
   87             UUID::fromData("@ABCDEFGHIJKLMNO", 16).GetAsString());
   89             UUID::fromData("@ABCDEFGHIJKLMNOPQRS", 20).GetAsString());