Home | History | Annotate | Download | only in base

Lines Matching refs:Error

12 // Error domain of the net module's error codes.
15 // Error values are negative.
16 enum Error {
17 // No error.
24 // The value of the first certificate error code.
28 // Returns a textual representation of the error code for logging purposes.
29 const char* ErrorToString(int error);
31 // Returns true if |error| is a certificate error code.
32 inline bool IsCertificateError(int error) {
35 return error <= ERR_CERT_BEGIN && error > ERR_CERT_END;