Searched refs:strerror_s (Results 1 - 7 of 7) sorted by relevance
/external/fmtlib/test/ |
H A D | util.cc | 47 if (strerror_s(buffer, BUFFER_SIZE, error_code)) 48 throw std::exception("strerror_s failed");
|
/external/llvm/lib/Support/ |
H A D | Errno.cpp | 58 strerror_s(buffer, MaxErrStrLen - 1, errnum);
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
H A D | Errno.cpp | 55 strerror_s(buffer, errnum);
|
/external/conscrypt/common/src/jni/main/include/ |
H A D | compat.h | 53 #define strerror_r(errnum, buf, buflen) strerror_s(buf, buflen, errnum)
|
/external/libcxx/src/ |
H A D | system_error.cpp | 71 if (::strerror_s(buffer, strerror_buff_size, ev) == 0)
|
/external/fmtlib/fmt/ |
H A D | format.cc | 72 // Dummy implementations of strerror_r and strerror_s called if corresponding 77 static inline fmt::internal::Null<> strerror_s(char *, std::size_t, ...) { function 151 return fallback(strerror_s(buffer_, buffer_size_, error_code_)); 154 // Fallback to strerror_s when strerror_r is not available. 161 // Fallback to strerror if strerror_r and strerror_s are not available.
|
/external/swiftshader/third_party/LLVM/ |
H A D | configure | 16199 { echo "$as_me:$LINENO: checking whether strerror_s is declared" >&5
16200 echo $ECHO_N "checking whether strerror_s is declared... $ECHO_C" >&6; }
16214 #ifndef strerror_s
16215 (void) strerror_s;
|
Completed in 709 milliseconds