HomeSort by relevance Sort by last modified time
    Searched refs:StrError (Results 1 - 11 of 11) sorted by null

  /external/llvm/include/llvm/Support/
Errno.h 23 /// thread-safe variant of strerror() is available. Be sure to call this
26 std::string StrError();
29 std::string StrError(int errnum);
  /external/llvm/lib/Support/
Errno.cpp 33 std::string StrError() {
34 return StrError(errno);
38 std::string StrError(int errnum) {
57 // Copy the thread un-safe result of strerror into
59 // of collision of strerror in multiple threads.
61 strncpy(buffer,strerror(errnum),MaxErrStrLen-1);
64 // Strange that this system doesn't even have strerror
system_error.cpp 46 return std::string(sys::StrError(ev));
  /external/llvm/lib/Support/Unix/
Unix.h 83 *ErrMsg = prefix + ": " + llvm::sys::StrError(errnum);
  /external/llvm/lib/ExecutionEngine/JIT/
OProfileJITEventListener.cpp 55 const std::string err_str = sys::StrError();
65 const std::string err_str = sys::StrError();
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 903 // StrError() aren't needed on Windows CE at this time and thus not
927 inline const char* StrError(int errnum) { return strerror(errnum); }
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium/testing/gtest/src/
gtest-death-test.cc 265 return String(errno == 0 ? "" : posix::StrError(errno));
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest-death-test.cc 265 return String(errno == 0 ? "" : posix::StrError(errno));
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 252 return String(errno == 0 ? "" : posix::StrError(errno));
    [all...]

Completed in 640 milliseconds