Home
last modified time | relevance | path

Searched refs:eErrorTypePOSIX (Results 1 – 12 of 12) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Host/posix/
H A DHostThreadPosix.cpp29 error.SetError(err, lldb::eErrorTypePOSIX); in Join()
33 error.SetError(EINVAL, eErrorTypePOSIX); in Join()
47 error.SetError(err, eErrorTypePOSIX); in Cancel()
57 error.SetError(err, eErrorTypePOSIX); in Detach()
H A DPipePosix.cpp81 return Status(EINVAL, eErrorTypePOSIX); in CreateNew()
190 return Status(errno_copy, eErrorTypePOSIX); in OpenAsWriterWithTimeout()
254 return Status(EINVAL, eErrorTypePOSIX); in ReadWithTimeout()
286 return Status(EINVAL, eErrorTypePOSIX); in Write()
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DStatus.cpp50 m_type(EC.category() == std::generic_category() ? eErrorTypePOSIX in Status()
75 m_type = ErrorType::eErrorTypePOSIX; in operator =()
93 if (m_type == ErrorType::eErrorTypePOSIX) in ToError()
144 case eErrorTypePOSIX: in AsCString()
226 m_type = eErrorTypePOSIX; in SetErrorToErrno()
291 return (m_type == eErrorTypePOSIX && m_code == EINTR); in WasInterrupted()
H A DSelectHelper.cpp226 error.SetError(ETIMEDOUT, lldb::eErrorTypePOSIX); in Select()
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DMainLoop.cpp119 return Status(errno, eErrorTypePOSIX); in Poll()
194 return Status(errno, eErrorTypePOSIX); in Poll()
214 return Status(errno, eErrorTypePOSIX); in Poll()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DCommunication.cpp335 if (error.GetType() == eErrorTypePOSIX && error.GetError() == EIO) { in ReadThread()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp2962 return Status(response.GetU32(UINT32_MAX), eErrorTypePOSIX); in MakeDirectory()
2983 return Status(response.GetU32(UINT32_MAX), eErrorTypePOSIX); in SetFilePermissions()
2997 error.SetError(result_errno, eErrorTypePOSIX); in ParseHostIOPacketResponse()
3101 error.SetError(response_errno, lldb::eErrorTypePOSIX); in GetFilePermissions()
3171 error.SetError(response_errno, lldb::eErrorTypePOSIX); in WriteFile()
3203 error.SetError(response_errno, lldb::eErrorTypePOSIX); in CreateSymlink()
3234 error.SetError(response_errno, lldb::eErrorTypePOSIX); in Unlink()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp783 Status error(errno, eErrorTypePOSIX); in SigchldHandler()
862 return Status(errno, eErrorTypePOSIX); in Attach()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp743 Status error(errno, eErrorTypePOSIX); in SigchldHandler()
822 return Status(errno, eErrorTypePOSIX); in Attach()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-enumerations.h310 eErrorTypePOSIX, ///< POSIX error codes. enumerator
/freebsd-13.1/contrib/llvm-project/lldb/docs/
H A Dpython_api_enums.rst478 .. py:data:: eErrorTypePOSIX
/freebsd-13.1/lib/clang/liblldb/
H A DLLDBWrapLua.cpp70703 {SWIG_LUA_CONSTTAB_INT("eErrorTypePOSIX", lldb::eErrorTypePOSIX)},