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

References

tools/lldb/source/Utility/ProcessInfo.cpp
  114     s.Printf("    pid = %" PRIu64 "\n", m_pid);
  117     s.Printf(" parent = %" PRIu64 "\n", m_parent_pid);
  120     s.Printf("   name = %s\n", m_executable.GetFilename().GetCString());
  121     s.PutCString("   file = ");
  122     m_executable.Dump(&s);
  123     s.EOL();
  130         s.Printf(" arg[%u] = %s\n", i, arg);
  132         s.Printf("arg[%u] = %s\n", i, arg);
  136   s.Format("{0}", m_environment);
  139     s.Printf("   arch = ");
  140     m_arch.DumpTriple(s);
  141     s.EOL();
  145     s.Format("    uid = {0,-5} ({1})\n", GetUserID(),
  149     s.Format("    gid = {0,-5} ({1})\n", GetGroupID(),
  153     s.Format("   euid = {0,-5} ({1})\n", GetEffectiveUserID(),
  157     s.Format("   egid = {0,-5} ({1})\n", GetEffectiveGroupID(),