Home | History | Annotate | Download | only in errors

Lines Matching refs:errnum

32   int errnum;
188 // by increasing errnum values which is the same order used in the header
195 std::string ErrorCodeFromSystemError(int errnum) {
198 if (entry.errnum == errnum) {
210 int errnum) {
211 std::string message = base::safe_strerror(errnum);
212 std::string code = ErrorCodeFromSystemError(errnum);
214 message = "Unknown error " + std::to_string(errnum);
217 code = "error_" + std::to_string(errnum);