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

References

tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
  624   if (m_uuid.IsValid() || rhs.GetUUID().IsValid()) {
  625     return m_uuid == rhs.GetUUID();
  640   m_uuid = uuid;
  644   return m_uuid;
  695   if (m_uuid.IsValid()) {
  696     if (m_uuid != memory_module_sp->GetUUID()) {
  702                   m_uuid.GetAsString().c_str(), m_load_address,
  710   if (!m_uuid.IsValid() && memory_module_sp->GetUUID().IsValid()) {
  711     m_uuid = memory_module_sp->GetUUID();
  726     if (m_uuid.IsValid()) {
  729         if (m_uuid != exe_module_sp->GetUUID()) {
  764   if (m_uuid.IsValid() == false) {
  775   if (IsKernel() && m_uuid.IsValid()) {
  777     s.Printf("Kernel UUID: %s\n", m_uuid.GetAsString().c_str());
  785     m_module_sp = target_images.FindModule(m_uuid);
  788     if (!m_module_sp && m_uuid.IsValid()) {
  790       module_spec.GetUUID() = m_uuid;
  849       if (m_uuid.IsValid() && m_module_sp->GetUUID() == m_uuid) {
  849       if (m_uuid.IsValid() && m_module_sp->GetUUID() == m_uuid) {
 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/Darwin-Kernel/DynamicLoaderDarwinKernel.h
  138       m_uuid.Clear();