Home | History | Annotate | Download | only in libweaved

Lines Matching refs:Command

15 #include "libweaved/command.h"
55 Command::Command(const android::sp<android::weave::IWeaveCommand>& proxy)
58 Command::~Command() {}
60 std::string Command::GetID() const {
68 std::string Command::GetName() const {
76 std::string Command::GetComponent() const {
84 Command::State Command::GetState() const {
90 return Command::State::kQueued;
92 return Command::State::kInProgress;
94 return Command::State::kPaused;
96 return Command::State::kError;
98 return Command::State::kDone;
100 return Command::State::kCancelled;
102 return Command::State::kAborted;
104 return Command::State::kExpired;
105 LOG(WARNING) << "Unknown command state: " << state;
106 return Command::State::kQueued;
109 Command::Origin Command::GetOrigin() const {
115 return Command::Origin::kLocal;
117 return Command::Origin::kCloud;
118 LOG(WARNING) << "Unknown command origin: " << origin;
119 return Command::Origin::kLocal;
122 const base::DictionaryValue& Command::GetParameters() const {
133 bool Command::SetProgress(const base::DictionaryValue& progress,
138 bool Command::Complete(const base::DictionaryValue& results,
143 bool Command::Abort(const std::string& error_code,
151 bool Command::AbortWithCustomError(const brillo::Error* command_error,
157 bool Command::AbortWithCustomError(android::binder::Status status,
163 bool Command::Cancel(brillo::ErrorPtr* error) {
167 bool Command::Pause(brillo::ErrorPtr* error) {
171 bool Command::SetError(const std::string& error_code,
179 bool Command::SetCustomError(const brillo::Error* command_error,
185 bool Command::SetCustomError(android::binder::Status status,