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

References

tools/lldb/source/Host/common/HostInfoBase.cpp
   68 void HostInfoBase::Initialize() { g_fields = new HostInfoBaseFields(); }
   71   delete g_fields;
   72   g_fields = nullptr;
   78     g_fields->m_host_triple =
   81   return g_fields->m_host_triple;
   87     HostInfo::ComputeHostArchitectureSupport(g_fields->m_host_arch_32,
   88                                              g_fields->m_host_arch_64);
   93     return g_fields->m_host_arch_32;
   95     return g_fields->m_host_arch_64;
   98   return (g_fields->m_host_arch_64.IsValid()) ? g_fields->m_host_arch_64
   98   return (g_fields->m_host_arch_64.IsValid()) ? g_fields->m_host_arch_64
   99                                               : g_fields->m_host_arch_32;
  114     success = HostInfo::ComputeSharedLibraryDirectory(g_fields->m_lldb_so_dir);
  116     LLDB_LOG(log, "shlib dir -> `{0}`", g_fields->m_lldb_so_dir);
  118   return success ? g_fields->m_lldb_so_dir : FileSpec();
  126         HostInfo::ComputeSupportExeDirectory(g_fields->m_lldb_support_exe_dir);
  128     LLDB_LOG(log, "support exe dir -> `{0}`", g_fields->m_lldb_support_exe_dir);
  130   return success ? g_fields->m_lldb_support_exe_dir : FileSpec();
  137     success = HostInfo::ComputeHeaderDirectory(g_fields->m_lldb_headers_dir);
  139     LLDB_LOG(log, "header dir -> `{0}`", g_fields->m_lldb_headers_dir);
  141   return success ? g_fields->m_lldb_headers_dir : FileSpec();
  149         g_fields->m_lldb_system_plugin_dir);
  152              g_fields->m_lldb_system_plugin_dir);
  154   return success ? g_fields->m_lldb_system_plugin_dir : FileSpec();
  162         HostInfo::ComputeUserPluginsDirectory(g_fields->m_lldb_user_plugin_dir);
  164     LLDB_LOG(log, "user plugin dir -> `{0}`", g_fields->m_lldb_user_plugin_dir);
  166   return success ? g_fields->m_lldb_user_plugin_dir : FileSpec();
  174         g_fields->m_lldb_process_tmp_dir);
  177              g_fields->m_lldb_process_tmp_dir);
  179   return success ? g_fields->m_lldb_process_tmp_dir : FileSpec();
  187         g_fields->m_lldb_global_tmp_dir);
  189     LLDB_LOG(log, "global temp dir -> `{0}`", g_fields->m_lldb_global_tmp_dir);
  191   return success ? g_fields->m_lldb_global_tmp_dir : FileSpec();