Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/
H A DSingleStepCheck.cpp71 LLDB_LOG(log, "failed to fork(): {0}", Status(errno, eErrorTypePOSIX)); in WorkaroundNeeded()
82 Status(errno, eErrorTypePOSIX)); in WorkaroundNeeded()
91 Status(errno, eErrorTypePOSIX)); in WorkaroundNeeded()
105 Status(errno, eErrorTypePOSIX)); in WorkaroundNeeded()
121 Status(errno, eErrorTypePOSIX)); in WorkaroundNeeded()
159 Status(errno, eErrorTypePOSIX)); in Get()
171 Status(errno, eErrorTypePOSIX)); in Get()
183 Status(errno, eErrorTypePOSIX)); in ~SingleStepWorkaround()
H A DNativeProcessLinux.cpp1883 Status error(errno, eErrorTypePOSIX); in HandlePid()
/llvm-project-15.0.7/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.cpp78 return Status(EINVAL, eErrorTypePOSIX); in CreateNew()
187 return Status(errno_copy, eErrorTypePOSIX); in OpenAsWriterWithTimeout()
251 return Status(EINVAL, eErrorTypePOSIX); in ReadWithTimeout()
283 return Status(EINVAL, eErrorTypePOSIX); in Write()
/llvm-project-15.0.7/lldb/source/Utility/
H A DStatus.cpp50 m_type(EC.category() == std::generic_category() ? eErrorTypePOSIX in Status()
74 m_type = ErrorType::eErrorTypePOSIX; in operator =()
92 if (m_type == ErrorType::eErrorTypePOSIX) in ToError()
143 case eErrorTypePOSIX: in AsCString()
225 m_type = eErrorTypePOSIX; in SetErrorToErrno()
H A DSelectHelper.cpp226 error.SetError(ETIMEDOUT, lldb::eErrorTypePOSIX); in Select()
/llvm-project-15.0.7/lldb/unittests/Utility/
H A DStatusTest.cpp31 EXPECT_EQ(eErrorTypePOSIX, eagain.GetType()); in TEST()
49 EXPECT_EQ(eErrorTypePOSIX, eagain.GetType()); in TEST()
56 llvm::Error eagain = Status(EAGAIN, ErrorType::eErrorTypePOSIX).ToError(); in TEST()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/source/Host/macosx/objcxx/
H A DHost.mm1021 eErrorTypePOSIX);
1041 eErrorTypePOSIX);
1065 eErrorTypePOSIX);
1085 error.SetError(::posix_spawnattr_init(&attr), eErrorTypePOSIX);
1105 error.SetError(::posix_spawnattr_setflags(&attr, flags), eErrorTypePOSIX);
1129 error.SetError(setup_posix_spawn_responsible_flag(&attr), eErrorTypePOSIX);
1162 eErrorTypePOSIX);
1174 eErrorTypePOSIX);
1224 eErrorTypePOSIX);
1248 eErrorTypePOSIX);
[all …]
/llvm-project-15.0.7/lldb/source/Host/linux/
H A DHost.cpp182 Status(errno, eErrorTypePOSIX)); in GetExePathAndArch()
/llvm-project-15.0.7/lldb/source/Core/
H A DCommunication.cpp340 if (error.GetType() == eErrorTypePOSIX && error.GetError() == EIO) { in ReadThread()
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp2996 return Status(response.GetHexMaxU32(false, UINT32_MAX), eErrorTypePOSIX); in MakeDirectory()
3017 return Status(response.GetHexMaxU32(false, UINT32_MAX), eErrorTypePOSIX); in SetFilePermissions()
3042 error.SetError(result_errno, eErrorTypePOSIX); in ParseHostIOPacketResponse()
3196 error.SetError(response_errno, lldb::eErrorTypePOSIX); in GetFilePermissions()
3237 error.SetError(response_errno, lldb::eErrorTypePOSIX); in ReadFile()
3280 error.SetError(response_errno, lldb::eErrorTypePOSIX); in WriteFile()
3312 error.SetError(response_errno, lldb::eErrorTypePOSIX); in CreateSymlink()
3343 error.SetError(response_errno, lldb::eErrorTypePOSIX); in Unlink()
/llvm-project-15.0.7/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp757 Status error(errno, eErrorTypePOSIX); in SigchldHandler()
839 return Status(errno, eErrorTypePOSIX); in Attach()
/llvm-project-15.0.7/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp784 Status error(errno, eErrorTypePOSIX); in SigchldHandler()
863 return Status(errno, eErrorTypePOSIX); in Attach()
/llvm-project-15.0.7/lldb/include/lldb/
H A Dlldb-enumerations.h310 eErrorTypePOSIX, ///< POSIX error codes. enumerator
/llvm-project-15.0.7/lldb/docs/
H A Dpython_api_enums.rst478 .. py:data:: eErrorTypePOSIX