|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
lib/Support/Unix/Process.inc 196 const int StandardFDs[] = {STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO};
267 return FileDescriptorIsDisplayed(STDOUT_FILENO);
394 return FileDescriptorHasColors(STDOUT_FILENO);
lib/Support/raw_ostream.cpp 533 return STDOUT_FILENO;
projects/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cpp 460 internal_close(STDOUT_FILENO);
461 internal_dup2(stdout_fd, STDOUT_FILENO);
tools/lldb/source/Host/common/Host.cpp 515 launch_info.AppendOpenFileAction(STDOUT_FILENO, output_file_spec, false,
518 launch_info.AppendSuppressFileAction(STDOUT_FILENO, false, true);
521 launch_info.AppendDuplicateFileAction(STDOUT_FILENO, STDERR_FILENO);
tools/lldb/source/Host/common/ProcessLaunchInfo.cpp 57 if (file_action.Open(STDOUT_FILENO, stdout_file_spec, read, write))
234 if (GetFileActionForFD(STDOUT_FILENO) == nullptr)
235 AppendOpenFileAction(STDOUT_FILENO, slave_file_spec, false, true);
tools/lldb/source/Host/common/PseudoTerminal.cpp 231 if (::dup2(m_slave_fd, STDOUT_FILENO) != STDOUT_FILENO) {
231 if (::dup2(m_slave_fd, STDOUT_FILENO) != STDOUT_FILENO) {
tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp 383 case STDOUT_FILENO:
tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp 113 if (const FileAction *action = info.GetFileActionForFD(STDOUT_FILENO))
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp 1157 launch_info.AppendCloseFileAction(STDOUT_FILENO);
1162 launch_info.AppendSuppressFileAction(STDOUT_FILENO, false, true);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp 914 if (file_action.Open(STDOUT_FILENO, FileSpec(path), read, write)) {
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp 214 m_process_launch_info.GetFileActionForFD(STDOUT_FILENO) == nullptr ||
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp 786 file_action = launch_info.GetFileActionForFD(STDOUT_FILENO);
tools/lldb/source/Target/Process.cpp 272 if (action.Open(STDOUT_FILENO, FileSpec(option_arg), false, true))
295 if (action.Open(STDOUT_FILENO, dev_null, false, true))
tools/lldb/source/Target/Target.cpp 3092 info.GetFileActionForFD(STDOUT_FILENO) == nullptr ||
3107 info.AppendSuppressFileAction(STDOUT_FILENO, false, true);
3120 if (info.GetFileActionForFD(STDOUT_FILENO) == nullptr)
3134 info.AppendOpenFileAction(STDOUT_FILENO, out_file_spec, false, true);
3974 launch_info.GetFileActionForFD(STDOUT_FILENO);
4035 STDOUT_FILENO, this_->GetStandardOutputPath(), false, true);
tools/lldb/unittests/Host/ProcessLaunchInfoTest.cpp 22 Info.GetFileActionForFD(STDOUT_FILENO)->GetFileSpec());
utils/unittest/googletest/src/gtest-port.cc 88 const int kStdOutFileno = STDOUT_FILENO;