Home | History | Annotate | Download | only in fmt

Lines Matching defs:strerror_r

72 // Dummy implementations of strerror_r and strerror_s called if corresponding
74 static inline fmt::internal::Null<> strerror_r(int, char *, ...) {
134 // Handle the result of XSI-compliant version of strerror_r.
140 // Handle the result of GNU-specific version of strerror_r.
149 // Handle the case when strerror_r is not available.
154 // Fallback to strerror_s when strerror_r is not available.
161 // Fallback to strerror if strerror_r and strerror_s are not available.
173 // Suppress a warning about unused strerror_r.
174 strerror_r(0, FMT_NULL, "");
175 return handle(strerror_r(error_code_, buffer_, buffer_size_));