Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/Host/posix/
HDHostThreadPosix.cpp39 error.SetError(err, lldb::eErrorTypePOSIX); in Join()
45 error.SetError(EINVAL, eErrorTypePOSIX); in Join()
58 error.SetError(err, eErrorTypePOSIX); in Cancel()
71 error.SetError(err, eErrorTypePOSIX); in Detach()
HDPipePosix.cpp164 return Error(EINVAL, eErrorTypePOSIX); in CreateNew()
287 return Error(errno_copy, eErrorTypePOSIX); in OpenAsWriterWithTimeout()
378 return Error(EINVAL, eErrorTypePOSIX); in ReadWithTimeout()
408 return Error(EINVAL, eErrorTypePOSIX); in Write()
HDMainLoopPosix.cpp157 return Error(errno, eErrorTypePOSIX); in Run()
/NextBSD/contrib/llvm/tools/lldb/source/Host/common/
HDHost.cpp755 error.SetError( ::posix_spawnattr_init (&attr), eErrorTypePOSIX); in LaunchProcessPosixSpawn()
779 error.SetError( ::posix_spawnattr_setflags (&attr, flags), eErrorTypePOSIX); in LaunchProcessPosixSpawn()
807 … error.SetError( ::posix_spawnattr_setbinpref_np (&attr, 1, &cpu, &ocount), eErrorTypePOSIX); in LaunchProcessPosixSpawn()
857 error.SetError(errno, eErrorTypePOSIX); in LaunchProcessPosixSpawn()
864 error.SetError(errno, eErrorTypePOSIX); in LaunchProcessPosixSpawn()
877 error.SetError( ::posix_spawn_file_actions_init (&file_actions), eErrorTypePOSIX); in LaunchProcessPosixSpawn()
897 …SetError(::posix_spawnp(&result_pid, exe_path, &file_actions, &attr, argv, envp), eErrorTypePOSIX); in LaunchProcessPosixSpawn()
914 … error.SetError(::posix_spawnp(&result_pid, exe_path, NULL, &attr, argv, envp), eErrorTypePOSIX); in LaunchProcessPosixSpawn()
938 error.SetError(errno, eErrorTypePOSIX); in LaunchProcessPosixSpawn()
967 … error.SetError(::posix_spawn_file_actions_addclose(file_actions, info->GetFD()), eErrorTypePOSIX); in AddPosixSpawnFileAction()
[all …]
HDThreadLauncher.cpp76 error.SetError(err, eErrorTypePOSIX); in LaunchThread()
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDError.cpp117 case eErrorTypePOSIX: in AsCString()
311 m_type = eErrorTypePOSIX; in SetErrorToErrno()
424 if (m_type == eErrorTypePOSIX && m_code == EINTR) in WasInterrupted()
HDCommunication.cpp386 if (error.GetType() == eErrorTypePOSIX && error.GetError() == EIO) in ReadThread()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
HDGDBRemoteCommunicationClient.cpp3648 return Error(response.GetU32(UINT32_MAX), eErrorTypePOSIX); in MakeDirectory()
3671 return Error(response.GetU32(UINT32_MAX), eErrorTypePOSIX); in SetFilePermissions()
3689 error.SetError(result_errno, eErrorTypePOSIX); in ParseHostIOPacketResponse()
3787 error.SetError(response_errno, lldb::eErrorTypePOSIX); in GetFilePermissions()
3873 error.SetError(response_errno, lldb::eErrorTypePOSIX); in WriteFile()
3914 error.SetError(response_errno, lldb::eErrorTypePOSIX); in CreateSymlink()
3956 error.SetError(response_errno, lldb::eErrorTypePOSIX); in Unlink()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/
HDlldb-enumerations.h268 eErrorTypePOSIX, ///< POSIX error codes. enumerator