HomeSort by relevance Sort by last modified time
    Searched refs:Rollback (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/v8/src/
compilation-dependencies.h 48 void Rollback();
compilation-dependencies.cc 90 void CompilationDependencies::Rollback() {
compilation-info.cc 110 dependencies()->Rollback();
  /system/update_engine/client_library/include/update_engine/
client.h 82 // Attempt a rollback. Set 'powerwash' to reset the device while rolling
84 virtual bool Rollback(bool powerwash) = 0;
86 // Get the rollback partition if available. Gives empty string if not.
  /system/update_engine/
payload_state_interface.h 80 // This method should be called every time we initiate a Rollback.
81 virtual void Rollback() = 0;
158 // Returns the version from before a rollback if our last update was a
159 // rollback.
mock_payload_state.h 46 MOCK_METHOD0(Rollback, void());
payload_state.h 62 void Rollback() override;
173 // UpdateResumed(), UpdateRestarted() and Rollback().
553 // This stores a blacklisted version set as part of rollback. When we rollback
update_attempter.h 148 // This is the internal entry point for going through a rollback. This will
151 // as part of rollback. Returns True on success.
152 bool Rollback(bool powerwash);
154 // This is the internal entry point for checking if we can rollback.
157 // This is the internal entry point for getting a rollback partition name,
158 // if one exists. It returns the bootable rollback kernel device partition
352 // Helper method of Update() and Rollback() to construct the sequence of
common_service.cc 109 LOG(INFO) << "Attempting rollback to non-active partitions.";
111 if (!system_state_->update_attempter()->Rollback(in_powerwash)) {
113 LogAndSetError(error, FROM_HERE, "Rollback attempt failed.");
122 LOG(INFO) << "Checking to see if we can rollback . Result: " << can_rollback;
352 LOG(ERROR) << "Invalid rollback device";
356 LOG(INFO) << "Getting rollback partition name. Result: " << name;
update_engine_client.cc 262 "When performing rollback or channel change, "
272 DEFINE_bool(rollback, false,
273 "Perform a rollback to the previous partition. The device will "
276 "Shows whether rollback partition "
376 LOG(ERROR) << "powerwash flag only makes sense rollback or channel change";
394 // Show the rollback availability.
399 LOG(ERROR) << "Error while querying rollback partition availabilty.";
411 LOG(INFO) << "Rollback partition: " << rollback_partition;
467 LOG(ERROR) << "Incompatible flags specified with rollback."
468 << "Rollback should not include update-related flags."
    [all...]
update_attempter.cc 663 bool UpdateAttempter::Rollback(bool powerwash) {
690 LOG(INFO) << "Setting rollback options.";
714 // Update the payload state for Rollback.
715 system_state_->payload_state()->Rollback();
728 // We can only rollback if the update_engine isn't busy and we have a valid
729 // rollback partition.
    [all...]
  /system/update_engine/client_library/
client_binder.h 65 bool Rollback(bool powerwash) override;
client_dbus.h 59 bool Rollback(bool powerwash) override;
client_binder.cc 111 bool BinderUpdateEngineClient::Rollback(bool powerwash) {
client_dbus.cc 102 bool DBusUpdateEngineClient::Rollback(bool powerwash) {
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
uploader.py 78 def Rollback(self):
base_config.py 283 # Attempt to rollback the update in any instance of failure, even user
287 upload_item.Rollback()
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenRewriteStream.cs 207 public virtual void Rollback(int instructionIndex) {
208 Rollback(DEFAULT_PROGRAM_NAME, instructionIndex);
212 * Rollback the instruction stream for a program so that
217 public virtual void Rollback(string programName, int instructionIndex) {
234 Rollback(programName, MIN_TOKEN_INDEX);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenRewriteStream.cs 233 public virtual void Rollback( int instructionIndex )
235 Rollback( DEFAULT_PROGRAM_NAME, instructionIndex );
239 * Rollback the instruction stream for a program so that
244 public virtual void Rollback( string programName, int instructionIndex )
265 Rollback( programName, MIN_TOKEN_INDEX );
  /prebuilts/go/darwin-x86/src/database/sql/
ctxutil.go 132 txi.Rollback()
sql_test.go 794 err = tx.Rollback()
796 t.Errorf("expected nil error from Rollback; got %v", err)
811 err = tx.Rollback()
813 t.Errorf("expected %q from Rollback; got %q", ErrTxDone, err)
1121 tx.Rollback()
1156 err = tx.Rollback()
1158 t.Fatalf("tx.Rollback() = %v", err)
1219 err = tx.Rollback()
1221 t.Fatalf("tx.Rollback = %v", err)
1242 defer tx.Rollback()
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/
ctxutil.go 132 txi.Rollback()
sql_test.go 794 err = tx.Rollback()
796 t.Errorf("expected nil error from Rollback; got %v", err)
811 err = tx.Rollback()
813 t.Errorf("expected %q from Rollback; got %q", ErrTxDone, err)
1121 tx.Rollback()
1156 err = tx.Rollback()
1158 t.Fatalf("tx.Rollback() = %v", err)
1219 err = tx.Rollback()
1221 t.Fatalf("tx.Rollback = %v", err)
1242 defer tx.Rollback()
    [all...]
  /art/runtime/
transaction.h 130 void Rollback()
  /prebuilts/go/darwin-x86/src/database/sql/driver/
driver.go 237 // call Tx.Rollback before discarding and closing the connection.
462 Rollback() error

Completed in 1619 milliseconds

1 2 3