Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DErrno.cpp31 std::string StrError() { in StrError() function
32 return StrError(errno); in StrError()
36 std::string StrError(int errnum) { in StrError() function
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DErrno.h27 std::string StrError();
30 std::string StrError(int errnum);
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
H A DUnix.h65 *ErrMsg = prefix + ": " + llvm::sys::StrError(errnum);
H A DProgram.inc471 *ErrMsg = llvm::sys::StrError(ENOENT);
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h2045 inline const char* StrError(int errnum) { return strerror(errnum); }
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
H A Dgtest-death-test.cc339 return errno == 0 ? "" : posix::StrError(errno); in GetLastErrnoDescription()