Lines Matching refs:Error
27 class Error;
28 using ErrorPtr = std::unique_ptr<Error>;
33 class Error {
36 kSuccess = 0, // No error.
44 Error();
45 ~Error();
60 // Log an error message from |from_here|. If |error| is non-NULL, also
62 static void PopulateAndLog(Error* error,
68 // Sets the D-Bus error and returns true if Error represents failure.
69 // Leaves error unchanged, and returns false otherwise.
70 bool ToDBusError(brillo::ErrorPtr* error) const;
79 DISALLOW_COPY_AND_ASSIGN(Error);