Home
last modified time | relevance | path

Searched refs:last_attempt_error (Results 1 – 4 of 4) sorted by relevance

/system/update_engine/
Dupdate_engine_client.cc206 int last_attempt_error = static_cast<int>(ErrorCode::kSuccess); in HandleStatusUpdate() local
208 if (client_ && client_->GetLastAttemptError(&last_attempt_error)) in HandleStatusUpdate()
209 code = static_cast<ErrorCode>(last_attempt_error); in HandleStatusUpdate()
213 << ErrorCodeToString(code) << "(" << last_attempt_error << ")"; in HandleStatusUpdate()
287 DEFINE_bool(last_attempt_error, false, "Show the last attempt error."); in ProcessFlags()
559 int last_attempt_error; in ProcessFlags() local
560 if (!client_->GetLastAttemptError(&last_attempt_error)) { in ProcessFlags()
563 ErrorCode code = static_cast<ErrorCode>(last_attempt_error); in ProcessFlags()
567 "ERROR_CODE", base::NumberToString(last_attempt_error)); in ProcessFlags()
/system/update_engine/client_library/include/update_engine/
Dclient.h120 virtual bool GetLastAttemptError(int32_t* last_attempt_error) const = 0;
/system/update_engine/client_library/
Dclient_dbus.cc250 int32_t* last_attempt_error) const { in GetLastAttemptError()
251 return proxy_->GetLastAttemptError(last_attempt_error, nullptr); in GetLastAttemptError()
Dclient_dbus.h81 bool GetLastAttemptError(int32_t* last_attempt_error) const override;