HomeSort by relevance Sort by last modified time
    Searched refs:CORRUPTION (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/extensions/browser/value_store/
value_store.h 22 // The failure was due to some kind of database corruption. Depending on
30 CORRUPTION,
81 return error_.get() && error_->code == CORRUPTION;
199 // In the event of corruption, the ValueStore should be able to restore
215 // additional corruption.
leveldb_value_store_unittest.cc 79 // Verify corruption.
82 ASSERT_EQ(ValueStore::CORRUPTION, result->error().code);
126 ASSERT_EQ(ValueStore::CORRUPTION, result->error().code);
143 // failure and we have total corruption. In this case, the database is plagued
145 // Full corruption has been known to happen occasionally in strange edge cases,
177 ASSERT_EQ(ValueStore::CORRUPTION, result->error().code);
leveldb_value_store.cc 155 Error::Create(CORRUPTION, kInvalidJson, util::NewKey(key)));
290 // corruption.
314 // The restore succeeded if there is no corruption error.
364 return Error::Create(CORRUPTION, kInvalidJson, util::NewKey(key));
441 return Error::Create(CORRUPTION, message, key.Pass());
  /external/chromium_org/extensions/browser/api/storage/
settings_storage_quota_enforcer.cc 256 if (maybe_settings->error().code == ValueStore::CORRUPTION &&
storage_api.cc 104 // If the method failed due to corruption, and we haven't tried to fix it, we
107 if (error.code == ValueStore::CORRUPTION && !tried_restoring_storage_) {
110 // If the corruption is on a particular key, try to restore that key and
  /external/chromium_org/chrome/browser/extensions/api/storage/
settings_sync_unittest.cc 717 testing_factory->GetExisting("bad")->set_error_code(ValueStore::CORRUPTION);
814 testing_factory->GetExisting("bad")->set_error_code(ValueStore::CORRUPTION);
    [all...]

Completed in 1280 milliseconds