HomeSort by: relevance | last modified time | path
    Searched refs:StrError (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
Errno.cpp 31 std::string StrError() {
32 return StrError(errno);
36 std::string StrError(int errnum) {
60 // Copy the thread un-safe result of strerror into
62 // of collision of strerror in multiple threads.
63 str = strerror(errnum);
65 // Strange that this system doesn't even have strerror
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Errno.h 24 /// thread-safe variant of strerror() is available. Be sure to call this
27 std::string StrError();
30 std::string StrError(int errnum);
  /src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
Unix.h 65 *ErrMsg = prefix + ": " + llvm::sys::StrError(errnum);
69 // Include StrError(errnum) in a fatal error message.
Program.inc 471 *ErrMsg = llvm::sys::StrError(ENOENT);
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp 60 const std::string err_str = sys::StrError();
71 const std::string err_str = sys::StrError();
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 2021 // StrError() aren't needed on Windows CE at this time and thus not
2045 inline const char* StrError(int errnum) { return strerror(errnum); }
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
gtest-death-test.cc 339 return errno == 0 ? "" : posix::StrError(errno);

Completed in 29 milliseconds