| /freebsd/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | PseudoTerminal.cpp | 68 std::error_code(errno, std::generic_category())); in OpenFirstAvailablePrimary() 73 std::error_code EC(errno, std::generic_category()); in OpenFirstAvailablePrimary() 80 std::error_code EC(errno, std::generic_category()); in OpenFirstAvailablePrimary() 100 std::error_code(errno, std::generic_category())); in OpenSecondary() 143 std::error_code(errno, std::generic_category())); in Fork() 164 std::error_code(errno, std::generic_category())); in Fork() 171 std::error_code(errno, std::generic_category())); in Fork()
|
| H A D | Terminal.cpp | 53 std::error_code(errno, std::generic_category()), in GetData() 68 std::error_code(errno, std::generic_category()), in SetData() 287 std::error_code(errno, std::generic_category()), in SetBaudRate() 291 std::error_code(errno, std::generic_category()), in SetBaudRate()
|
| H A D | ThreadLauncher.cpp | 74 std::error_code(err, std::generic_category())); in LaunchThread()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__system_error/ |
| H A D | error_condition.h | 47 _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {} 73 __cat_ = &generic_category(); 85 return error_condition(static_cast<int>(__e), generic_category());
|
| H A D | error_category.h | 59 __attribute__((__const__)) _LIBCPP_EXPORTED_FROM_ABI const error_category& generic_category() _NOEX…
|
| H A D | error_code.h | 83 return error_code(static_cast<int>(__e), generic_category()); in make_error_code()
|
| /freebsd/contrib/llvm-project/libcxx/src/ |
| H A D | system_error.cpp | 252 const error_category& generic_category() noexcept { in generic_category() function 307 return error_condition(0, generic_category()); in default_error_condition() 309 return error_condition(static_cast<int>(*maybe_errc), generic_category()); in default_error_condition() 316 return error_condition(ev, generic_category()); in default_error_condition() 361 std::__throw_system_error(error_code(ev, generic_category()), what_arg); in __throw_system_error()
|
| /freebsd/contrib/llvm-project/libcxx/include/__system_error/ |
| H A D | error_condition.h | 54 _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {} 80 __cat_ = &generic_category(); 92 return error_condition(static_cast<int>(__e), generic_category());
|
| H A D | error_category.h | 70 [[__gnu__::__const__]] _LIBCPP_EXPORTED_FROM_ABI const error_category& generic_category() _NOEXCEPT;
|
| H A D | error_code.h | 88 return error_code(static_cast<int>(__e), generic_category()); in make_error_code()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Shared/ |
| H A D | SimpleRemoteEPCUtils.cpp | 105 return errorCodeToError(std::error_code(ErrNo, std::generic_category())); in sendMessage() 107 return errorCodeToError(std::error_code(ErrNo, std::generic_category())); in sendMessage() 161 std::error_code(ErrNo, std::generic_category())); in readBytes()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | AutoConvert.cpp | 109 return std::error_code(errno, std::generic_category()); in getzOSFileTag() 114 return std::error_code(errno, std::generic_category()); in getzOSFileTag()
|
| H A D | TextEncoding.cpp | 176 return std::error_code(E2BIG, std::generic_category()); in convertString() 180 return std::error_code(EILSEQ, std::generic_category()); in convertString() 259 return std::error_code(errno, std::generic_category()); in convertString()
|
| /freebsd/contrib/llvm-project/lldb/source/Utility/ |
| H A D | Status.cpp | 77 std::error_code(err, std::generic_category())); in ErrorFromEnums() 79 std::move(msg), std::error_code(err, std::generic_category())); in ErrorFromEnums() 235 if (ec.category() == std::generic_category()) in ErrorCodeToErrorType()
|
| /freebsd/contrib/llvm-project/lldb/source/Host/posix/ |
| H A D | PipePosix.cpp | 191 std::error_code(errno_copy, std::generic_category())); in OpenAsWriter() 318 std::error_code(errno, std::generic_category())); in Read() 342 std::error_code(errno, std::generic_category())); in Write()
|
| /freebsd/contrib/llvm-project/libcxx/modules/std/ |
| H A D | system_error.cppm | |
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Errc.h | 83 return std::error_code(static_cast<int>(E), std::generic_category()); in make_error_code()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/Unix/ |
| H A D | Process.inc | 270 return std::error_code(EC, std::generic_category()); 282 return std::error_code(EC, std::generic_category()); 304 return std::error_code(ErrnoFromClose, std::generic_category()); 305 return std::error_code(EC, std::generic_category());
|
| H A D | Memory.inc | 171 return std::error_code(EINVAL, std::generic_category());
|
| /freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
| H A D | error.h | 41 return error_code(errno, generic_category()); in capture_errno()
|
| /freebsd/contrib/llvm-project/llvm/lib/InterfaceStub/ |
| H A D | IFSHandler.cpp | 236 std::error_code OverrideEC(1, std::generic_category()); in overrideIFSTarget() 270 std::error_code ValidationEC(1, std::generic_category()); in validateIFSTarget()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | MemoryMapper.cpp | 266 std::error_code(errno, std::generic_category()))); in reserve() 271 std::error_code(errno, std::generic_category()))); in reserve()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | system_error | 40 const error_category& generic_category() noexcept;
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | system_error | 40 const error_category& generic_category() noexcept;
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
| H A D | NativeProcessNetBSD.cpp | 984 return std::error_code(error.GetError(), std::generic_category()); in GetAuxvData() 987 return std::error_code(ECANCELED, std::generic_category()); in GetAuxvData()
|