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

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
86284   SWIG_Python_SetConstant(d, "eErrorTypePOSIX",SWIG_From_int(static_cast< int >(lldb::eErrorTypePOSIX)));
tools/lldb/source/Core/Communication.cpp
  337       if (error.GetType() == eErrorTypePOSIX && error.GetError() == EIO) {
tools/lldb/source/Host/common/MainLoop.cpp
  213     return Status(errno, eErrorTypePOSIX);
tools/lldb/source/Host/linux/Host.cpp
  176              Status(errno, eErrorTypePOSIX));
tools/lldb/source/Host/posix/HostThreadPosix.cpp
   29     error.SetError(err, lldb::eErrorTypePOSIX);
   33     error.SetError(EINVAL, eErrorTypePOSIX);
   57     error.SetError(err, eErrorTypePOSIX);
tools/lldb/source/Host/posix/PipePosix.cpp
   88     return Status(EINVAL, eErrorTypePOSIX);
  197         return Status(errno_copy, eErrorTypePOSIX);
  261     return Status(EINVAL, eErrorTypePOSIX);
  293     return Status(EINVAL, eErrorTypePOSIX);
tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
 1767       Status error(errno, eErrorTypePOSIX);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
 2874   return Status(response.GetU32(UINT32_MAX), eErrorTypePOSIX);
 2896   return Status(response.GetU32(UINT32_MAX), eErrorTypePOSIX);
 2910       error.SetError(result_errno, eErrorTypePOSIX);
 2989             error.SetError(response_errno, lldb::eErrorTypePOSIX);
 3059           error.SetError(response_errno, lldb::eErrorTypePOSIX);
 3091             error.SetError(response_errno, lldb::eErrorTypePOSIX);
 3122             error.SetError(response_errno, lldb::eErrorTypePOSIX);
tools/lldb/source/Utility/SelectHelper.cpp
  226       error.SetError(ETIMEDOUT, lldb::eErrorTypePOSIX);
tools/lldb/source/Utility/Status.cpp
   71           m_type = ErrorType::eErrorTypePOSIX;
   89   if (m_type == ErrorType::eErrorTypePOSIX)
  141     case eErrorTypePOSIX:
  223   m_type = eErrorTypePOSIX;
  288   return (m_type == eErrorTypePOSIX && m_code == EINTR);
tools/lldb/unittests/Utility/StatusTest.cpp
   31   EXPECT_EQ(eErrorTypePOSIX, eagain.GetType());
   47   llvm::Error eagain = Status(EAGAIN, ErrorType::eErrorTypePOSIX).ToError();