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

References

tools/lldb/include/lldb/Utility/ProcessInfo.h
   76   Args &GetArguments() { return m_arguments; }
   78   const Args &GetArguments() const { return m_arguments; }
tools/lldb/source/Host/common/ProcessLaunchInfo.cpp
  341       m_arguments = shell_arguments;
tools/lldb/source/Utility/ProcessInfo.cpp
   33   m_arguments.Clear();
   56   m_arguments.Dump(s);
   69         m_arguments.InsertArgumentAtIndex(0, filename);
   82   m_arguments.SetArguments(argv);
   86     const char *first_arg = m_arguments.GetArgumentAtIndex(0);
   98   m_arguments = args;
  102     const char *first_arg = m_arguments.GetArgumentAtIndex(0);
  125   const uint32_t argc = m_arguments.GetArgumentCount();
  128       const char *arg = m_arguments.GetArgumentAtIndex(i);
  231       const uint32_t argc = m_arguments.GetArgumentCount();
  234         s.PutCString(m_arguments.GetArgumentAtIndex(i));