Home
last modified time | relevance | path

Searched refs:StrError (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DErrno.cpp30 std::string StrError() { in StrError() function
31 return StrError(errno); in StrError()
35 std::string StrError(int errnum) { in StrError() function
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrno.h26 std::string StrError();
29 std::string StrError(int errnum);
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp60 const std::string err_str = sys::StrError(); in initialize()
71 const std::string err_str = sys::StrError(); in ~OProfileJITEventListener()
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/
H A DUnix.h65 *ErrMsg = prefix + ": " + llvm::sys::StrError(errnum);
H A DProgram.inc497 *ErrMsg = llvm::sys::StrError(ENOENT);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeThreadNetBSD.cpp202 llvm::sys::StrError()); in GetName()
210 LLDB_LOG(log, "sysctl() for LWP info failed: {0}", llvm::sys::StrError()); in GetName()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DStatus.cpp143 m_string = llvm::sys::StrError(m_code); in AsCString()
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp273 llvm::sys::StrError()); in LaunchProcess()
H A DConnectionFileDescriptorPosix.cpp345 llvm::sys::StrError(error_value)); in Read()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectRegister.cpp168 llvm::sys::StrError()); in DoExecute()
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp387 LLGS_PROGRAM_NAME, llvm::sys::StrError()); in main_gdbserver()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DHost.cpp221 pid, llvm::sys::StrError()); in MonitorChildProcessThreadFunction()
/freebsd/contrib/googletest/googletest/src/
H A Dgtest-death-test.cc347 return errno == 0 ? "" : posix::StrError(errno); in GetLastErrnoDescription()
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h2167 inline const char* StrError(int errnum) { return strerror(errnum); }
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td2857 def StrError : LibBuiltin<"string.h"> {