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

Declarations

tools/lldb/include/lldb/Host/FileAction.h
   44   const FileSpec &GetFileSpec() const;

References

tools/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
  110       DupDescriptor(error_fd, action.GetFileSpec(), action.GetFD(),
tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
  381       m_gdb_client.SetSTDIN(file_action->GetFileSpec());
  384       m_gdb_client.SetSTDOUT(file_action->GetFileSpec());
  387       m_gdb_client.SetSTDERR(file_action->GetFileSpec());
tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
  109     LLDB_LOG(log, "setting STDIN to '{0}'", action->GetFileSpec());
  114     LLDB_LOG(log, "setting STDOUT to '{0}'", action->GetFileSpec());
  119     LLDB_LOG(log, "setting STDERR to '{0}'", action->GetFileSpec());
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  784       stdin_file_spec = file_action->GetFileSpec();
  789       stdout_file_spec = file_action->GetFileSpec();
  794       stderr_file_spec = file_action->GetFileSpec();
tools/lldb/unittests/Host/FileActionTest.cpp
   18   EXPECT_EQ(Action.GetFileSpec(), FileSpec("/tmp"));
tools/lldb/unittests/Host/ProcessLaunchInfoTest.cpp
   20             Info.GetFileActionForFD(STDIN_FILENO)->GetFileSpec());
   22             Info.GetFileActionForFD(STDOUT_FILENO)->GetFileSpec());
   24             Info.GetFileActionForFD(STDERR_FILENO)->GetFileSpec());