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

1 2

  /system/update_engine/client_library/include/update_engine/
client.h 78 // Attempt a rollback. Set 'powerwash' to reset the device while rolling
80 virtual bool Rollback(bool powerwash) = 0;
82 // Get the rollback partition if available. Gives empty string if not.
  /external/v8/src/
compilation-dependencies.h 48 void Rollback();
compilation-dependencies.cc 90 void CompilationDependencies::Rollback() {
  /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 90 LOG(INFO) << "Attempting rollback to non-active partitions.";
92 if (!system_state_->update_attempter()->Rollback(in_powerwash)) {
94 LogAndSetError(error, FROM_HERE, "Rollback attempt failed.");
103 LOG(INFO) << "Checking to see if we can rollback . Result: " << can_rollback;
313 LOG(ERROR) << "Invalid rollback device";
317 LOG(INFO) << "Getting rollback partition name. Result: " << name;
payload_state.h 61 void Rollback() override;
168 // UpdateResumed(), UpdateRestarted() and Rollback().
548 // This stores a blacklisted version set as part of rollback. When we rollback
update_attempter.h 152 // This is the internal entry point for going through a rollback. This will
155 // as part of rollback. Returns True on success.
156 bool Rollback(bool powerwash);
158 // This is the internal entry point for checking if we can rollback.
161 // This is the internal entry point for getting a rollback partition name,
162 // if one exists. It returns the bootable rollback kernel device partition
355 // Helper method of Update() and Rollback() to construct the sequence of
update_engine_client.cc 236 "When performing rollback or channel change, "
246 DEFINE_bool(rollback, false,
247 "Perform a rollback to the previous partition. The device will "
250 "Shows whether rollback partition "
327 LOG(ERROR) << "powerwash flag only makes sense rollback or channel change";
345 // Show the rollback availability.
350 LOG(ERROR) << "Error while querying rollback partition availabilty.";
362 LOG(INFO) << "Rollback partition: " << rollback_partition;
418 LOG(ERROR) << "Incompatible flags specified with rollback."
419 << "Rollback should not include update-related flags."
    [all...]
update_attempter_unittest.cc 389 // Actions that will be built as part of a user-initiated rollback.
460 // We only allow rollback on devices that are not enterprise enrolled and
461 // which have a valid slot to rollback to.
487 EXPECT_TRUE(attempter_.Rollback(true));
492 EXPECT_FALSE(attempter_.Rollback(true));
    [all...]
update_attempter.cc 690 bool UpdateAttempter::Rollback(bool powerwash) {
717 LOG(INFO) << "Setting rollback options.";
741 // Update the payload state for Rollback.
742 system_state_->payload_state()->Rollback();
755 // We can only rollback if the update_engine isn't busy and we have a valid
756 // rollback partition.
    [all...]
  /system/update_engine/client_library/
client_binder.h 63 bool Rollback(bool powerwash) override;
client_dbus.h 56 bool Rollback(bool powerwash) override;
client_binder.cc 93 bool BinderUpdateEngineClient::Rollback(bool powerwash) {
client_dbus.cc 92 bool DBusUpdateEngineClient::Rollback(bool powerwash) {
  /external/v8/test/unittests/compiler/
js-type-feedback-unittest.cc 34 ~JSTypeFeedbackTest() override { dependencies_.Rollback(); }
142 dependencies()->Rollback();
228 dependencies()->Rollback();
279 dependencies()->Rollback();
331 dependencies()->Rollback();
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
uploader.py 78 def Rollback(self):
base_config.py 278 # Attempt to rollback the update in any instance of failure, even user
282 upload_item.Rollback()
  /art/runtime/
transaction_test.cc 30 // Tests failing class initialization due to native call with transaction rollback.
86 transaction.Rollback();
91 // Tests object's class is preserved after transaction rollback.
107 transaction.Rollback();
111 // Tests object's monitor state is preserved after transaction rollback.
134 transaction.Rollback();
140 // Tests array's length is preserved after transaction rollback.
164 transaction.Rollback();
168 // Tests static fields are reset to their default value after transaction rollback.
239 // Modify fields inside transaction then rollback changes
    [all...]
transaction.h 99 void Rollback()
transaction.cc 194 void Transaction::Rollback() {
343 // Garbage collector needs to access object's class and array's length. So we don't 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 );
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/
pipeline.py     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dbdaoint.h 243 STDMETHOD(Rollback) (VOID) PURE;
308 STDMETHOD(Rollback) (VOID) PURE;
383 STDMETHOD(Rollback) (VOID) PURE;
    [all...]

Completed in 1471 milliseconds

1 2