HomeSort by relevance Sort by last modified time
    Searched refs:Rollback (Results 1 - 25 of 57) 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());
common_service.cc 91 LOG(INFO) << "Attempting rollback to non-active partitions.";
93 if (!system_state_->update_attempter()->Rollback(in_powerwash)) {
95 LogAndSetError(error, FROM_HERE, "Rollback attempt failed.");
104 LOG(INFO) << "Checking to see if we can rollback . Result: " << can_rollback;
342 LOG(ERROR) << "Invalid rollback device";
346 LOG(INFO) << "Getting rollback partition name. Result: " << name;
payload_state.h 61 void Rollback() override;
172 // UpdateResumed(), UpdateRestarted() and Rollback().
565 // This stores a blacklisted version set as part of rollback. When we rollback
update_attempter.h 146 // This is the internal entry point for going through a rollback. This will
149 // as part of rollback. Returns True on success.
150 bool Rollback(bool powerwash);
152 // This is the internal entry point for checking if we can rollback.
155 // This is the internal entry point for getting a rollback partition name,
156 // if one exists. It returns the bootable rollback kernel device partition
344 // Helper method of Update() and Rollback() to construct the sequence of
update_engine_client.cc 247 "When performing rollback or channel change, "
257 DEFINE_bool(rollback, false,
258 "Perform a rollback to the previous partition. The device will "
261 "Shows whether rollback partition "
361 LOG(ERROR) << "powerwash flag only makes sense rollback or channel change";
379 // Show the rollback availability.
384 LOG(ERROR) << "Error while querying rollback partition availabilty.";
396 LOG(INFO) << "Rollback partition: " << rollback_partition;
452 LOG(ERROR) << "Incompatible flags specified with rollback."
453 << "Rollback should not include update-related flags."
    [all...]
update_attempter.cc 675 bool UpdateAttempter::Rollback(bool powerwash) {
702 LOG(INFO) << "Setting rollback options.";
726 // Update the payload state for Rollback.
727 system_state_->payload_state()->Rollback();
740 // We can only rollback if the update_engine isn't busy and we have a valid
741 // 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 107 bool BinderUpdateEngineClient::Rollback(bool powerwash) {
client_dbus.cc 100 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()
  /art/runtime/
transaction_test.cc 31 // Tests failing class initialization due to native call with transaction rollback.
87 transaction.Rollback();
92 // Tests object's class is preserved after transaction rollback.
108 transaction.Rollback();
112 // Tests object's monitor state is preserved after transaction rollback.
135 transaction.Rollback();
141 // Tests array's length is preserved after transaction rollback.
165 transaction.Rollback();
169 // Tests static fields are reset to their default value after transaction rollback.
240 // Modify fields inside transaction then rollback changes
    [all...]
transaction.h 119 void 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/
sql_test.go 781 err = tx.Rollback()
783 t.Errorf("expected nil error from Rollback; got %v", err)
798 err = tx.Rollback()
800 t.Errorf("expected %q from Rollback; got %q", ErrTxDone, err)
1039 defer tx.Rollback()
1069 defer tx.Rollback()
    [all...]
ctxutil.go 133 txi.Rollback()
  /prebuilts/go/linux-x86/src/database/sql/
sql_test.go 781 err = tx.Rollback()
783 t.Errorf("expected nil error from Rollback; got %v", err)
798 err = tx.Rollback()
800 t.Errorf("expected %q from Rollback; got %q", ErrTxDone, err)
1039 defer tx.Rollback()
1069 defer tx.Rollback()
    [all...]
ctxutil.go 133 txi.Rollback()

Completed in 363 milliseconds

1 2 3