Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DHostThreadPosix.cpp30 error.SetError(err, lldb::eErrorTypePOSIX); in Join()
34 error.SetError(EINVAL, eErrorTypePOSIX); in Join()
48 error.SetError(err, eErrorTypePOSIX); in Cancel()
58 error.SetError(err, eErrorTypePOSIX); in Detach()
H A DPipePosix.cpp88 return Status(EINVAL, eErrorTypePOSIX); in CreateNew()
197 return Status(errno_copy, eErrorTypePOSIX); in OpenAsWriterWithTimeout()
261 return Status(EINVAL, eErrorTypePOSIX); in ReadWithTimeout()
291 return Status(EINVAL, eErrorTypePOSIX); in Write()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DStatus.cpp74 m_type = ErrorType::eErrorTypePOSIX; in operator =()
92 if (m_type == ErrorType::eErrorTypePOSIX) in ToError()
148 case eErrorTypePOSIX: in AsCString()
244 m_type = eErrorTypePOSIX; in SetErrorToErrno()
317 return (m_type == eErrorTypePOSIX && m_code == EINTR); in WasInterrupted()
H A DSelectHelper.cpp235 error.SetError(ETIMEDOUT, lldb::eErrorTypePOSIX); in Select()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/
H A DDarwinProcessLauncher.cpp236 error.SetError(error_code, eErrorTypePOSIX); in CreatePosixSpawnFileAction()
246 error.SetError(error_code, eErrorTypePOSIX); in CreatePosixSpawnFileAction()
256 error.SetError(error_code, eErrorTypePOSIX); in CreatePosixSpawnFileAction()
300 error.SetError(error_code, eErrorTypePOSIX); in PosixSpawnChildForPTraceDebugging()
327 error.SetError(error_code, eErrorTypePOSIX); in PosixSpawnChildForPTraceDebugging()
346 error.SetError(error_code, eErrorTypePOSIX); in PosixSpawnChildForPTraceDebugging()
364 error.SetError(error_code, eErrorTypePOSIX); in PosixSpawnChildForPTraceDebugging()
413 error.SetError(error_code, eErrorTypePOSIX); in PosixSpawnChildForPTraceDebugging()
H A DMachException.cpp310 error.SetError(errno, eErrorTypePOSIX); in Reply()
H A DNativeProcessDarwin.cpp627 error.SetError(pthread_err, eErrorTypePOSIX); in StartExceptionThread()
917 error.SetError(pthread_err, eErrorTypePOSIX); in StartWaitpidThread()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DMainLoop.cpp117 return Status(errno, eErrorTypePOSIX); in Poll()
190 return Status(errno, eErrorTypePOSIX); in Poll()
210 return Status(errno, eErrorTypePOSIX); in Poll()
H A DThreadLauncher.cpp77 error.SetError(err, eErrorTypePOSIX); in LaunchThread()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp609 Status error(errno, eErrorTypePOSIX); in SigchldHandler()
670 return Status(errno, eErrorTypePOSIX); in Attach()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DCommunication.cpp328 if (error.GetType() == eErrorTypePOSIX && error.GetError() == EIO) { in ReadThread()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp2844 return Status(response.GetU32(UINT32_MAX), eErrorTypePOSIX); in MakeDirectory()
2866 return Status(response.GetU32(UINT32_MAX), eErrorTypePOSIX); in SetFilePermissions()
2880 error.SetError(result_errno, eErrorTypePOSIX); in ParseHostIOPacketResponse()
2959 error.SetError(response_errno, lldb::eErrorTypePOSIX); in GetFilePermissions()
3029 error.SetError(response_errno, lldb::eErrorTypePOSIX); in WriteFile()
3061 error.SetError(response_errno, lldb::eErrorTypePOSIX); in CreateSymlink()
3092 error.SetError(response_errno, lldb::eErrorTypePOSIX); in Unlink()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-enumerations.h325 eErrorTypePOSIX, ///< POSIX error codes. enumerator