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

1 2 3

  /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/swiftshader/third_party/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/swiftshader/third_party/llvm-subzero/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);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/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);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/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);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/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);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/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);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/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);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/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);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/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 32 std::string StrError() {
33 return StrError(errno);
37 std::string StrError(int errnum) {
61 // Copy the thread un-safe result of strerror into
63 // of collision of strerror in multiple threads.
64 str = strerror(errnum);
66 // Strange that this system doesn't even have strerror
DataStream.cpp 78 llvm::getDataFileStreamer(const std::string &Filename, std::string *StrError) {
81 *StrError = std::string("Could not open ") + Filename + ": " +
  /external/swiftshader/third_party/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/swiftshader/third_party/llvm-subzero/lib/Support/
Errno.cpp 32 std::string StrError() {
33 return StrError(errno);
37 std::string StrError(int errnum) {
61 // Copy the thread un-safe result of strerror into
63 // of collision of strerror in multiple threads.
64 str = strerror(errnum);
66 // Strange that this system doesn't even have strerror
  /external/llvm/lib/Support/Unix/
Unix.h 64 *ErrMsg = prefix + ": " + llvm::sys::StrError(errnum);
  /external/swiftshader/third_party/subzero/pnacl-llvm/
DataStream.cpp 78 llvm::getDataFileStreamer(const std::string &Filename, std::string *StrError) {
81 *StrError = std::string("Could not open ") + Filename + ": " +
  /external/swiftshader/third_party/LLVM/lib/Support/Unix/
Unix.h 83 *ErrMsg = prefix + ": " + llvm::sys::StrError(errnum);
  /external/swiftshader/third_party/subzero/src/
IceCompileServer.cpp 233 std::string StrError;
236 ? TextDataStreamer::create(Flags.getIRFilename(), &StrError)
237 : llvm::getDataFileStreamer(Flags.getIRFilename(), &StrError));
238 if (!StrError.empty() || !InputStream) {
240 StrError);
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp 59 const std::string err_str = sys::StrError();
69 const std::string err_str = sys::StrError();
  /external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
Unix.h 69 *ErrMsg = prefix + ": " + llvm::sys::StrError(errnum);
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
OProfileJITEventListener.cpp 55 const std::string err_str = sys::StrError();
65 const std::string err_str = sys::StrError();
  /external/fmtlib/fmt/
format.cc 67 // Disable deprecation warning for strerror. The latter is not called but
112 // Portable thread-safe version of strerror.
125 class StrError {
132 void operator=(const StrError &) {}
161 // Fallback to strerror if strerror_r and strerror_s are not available.
164 buffer_ = strerror(error_code_);
169 StrError(int err_code, char *&buf, std::size_t buf_size)
178 return StrError(error_code, buffer, buffer_size).run();
  /external/fmtlib/test/
format-impl-test.cc 62 TEST(FormatTest, StrError) {

Completed in 476 milliseconds

1 2 3