/system/update_engine/common/ |
D | prefs_unittest.cc | 269 EXPECT_TRUE(prefs_.Delete(kKey)); in TEST_F() 273 EXPECT_TRUE(prefs_.Delete(kKey)); in TEST_F() 296 prefs_.Delete(kKey); in TEST_F() 310 prefs_.Delete(kKey); in TEST_F() 336 EXPECT_FALSE(prefs_.Delete(kInvalidKey)); in TEST_F() 356 EXPECT_TRUE(prefs_.Delete(kKey)); in TEST_F() 358 EXPECT_FALSE(prefs_.Delete(kKey)); in TEST_F()
|
D | mock_prefs.h | 42 MOCK_METHOD1(Delete, bool(const std::string& key));
|
D | prefs_interface.h | 80 virtual bool Delete(const std::string& key) = 0;
|
D | fake_prefs.h | 50 bool Delete(const std::string& key) override;
|
D | prefs.h | 71 bool Delete(const std::string& key) override;
|
D | fake_prefs.cc | 95 bool FakePrefs::Delete(const string& key) { in Delete() function in chromeos_update_engine::FakePrefs
|
D | prefs.cc | 84 bool PrefsBase::Delete(const string& key) { in Delete() function in chromeos_update_engine::PrefsBase
|
/system/nvram/hal/ |
D | memory_storage.cpp | 50 Status Delete() { in Delete() function in nvram::storage::__anond20630280111::StorageSlot 114 slot->Delete(); in DeleteSpace()
|
/system/keymaster/ |
D | operation_table.h | 44 bool Delete(keymaster_operation_handle_t);
|
D | android_keymaster.cpp | 304 operation_table_->Delete(request.op_handle); in UpdateOperation() 314 operation_table_->Delete(request.op_handle); in UpdateOperation() 333 operation_table_->Delete(request.op_handle); in FinishOperation() 340 operation_table_->Delete(request.op_handle); in FinishOperation() 355 operation_table_->Delete(request.op_handle); in AbortOperation()
|
D | operation_table.cpp | 75 bool OperationTable::Delete(keymaster_operation_handle_t op_handle) { in Delete() function in keymaster::OperationTable
|
/system/tpm/attestation/server/ |
D | mock_key_store.cc | 27 ON_CALL(*this, Delete(_, _)).WillByDefault(Return(true)); in MockKeyStore()
|
D | key_store.h | 49 virtual bool Delete(const std::string& username,
|
D | mock_key_store.h | 42 MOCK_METHOD2(Delete,
|
D | pkcs11_key_store.h | 57 bool Delete(const std::string& username,
|
D | pkcs11_key_store_test.cc | 340 EXPECT_TRUE(key_store.Delete(kDefaultUser, "test2")); in TEST_F() 365 EXPECT_TRUE(key_store.Delete("", "test2")); in TEST_F() 419 EXPECT_FALSE(key_store.Delete(kDefaultUser, "test")); in TEST_F()
|
D | pkcs11_key_store.cc | 134 if (!Delete(username, key_name)) { in Write() 172 bool Pkcs11KeyStore::Delete(const std::string& username, in Delete() function in attestation::Pkcs11KeyStore
|
/system/nvram/core/tests/ |
D | fake_storage.cpp | 54 Status Delete() { in Delete() function in nvram::storage::__anona6f8ef1c0111::StorageSlot 155 return slot ? slot->Delete() : Status::kNotFound; in DeleteSpace()
|
/system/update_engine/ |
D | payload_state.cc | 652 prefs_->Delete(kPrefsAttemptInProgress); in ClearPersistedAttemptMetrics() 713 prefs_->Delete(kPrefsUpdateTimestampStart); in CollectAndReportSuccessfulUpdateMetrics() 714 prefs_->Delete(kPrefsUpdateDurationUptime); in CollectAndReportSuccessfulUpdateMetrics() 774 powerwash_safe_prefs_->Delete(kPrefsRollbackVersion); in ResetRollbackVersion() 902 prefs_->Delete(kPrefsWallClockWaitPeriod); in SetScatteringWaitPeriod() 1234 prefs_->Delete(kPrefsSystemUpdatedMarker); in UpdateEngineStarted() 1279 prefs_->Delete(kPrefsTargetVersionAttempt); in ReportFailedBootIfNeeded() 1280 prefs_->Delete(kPrefsTargetVersionUniqueId); in ReportFailedBootIfNeeded() 1282 prefs_->Delete(kPrefsTargetVersionInstalledFrom); in ReportFailedBootIfNeeded() 1314 prefs_->Delete(kPrefsTargetVersionInstalledFrom); in ResetUpdateStatus()
|
D | update_attempter.cc | 560 prefs_->Delete(kPrefsWallClockWaitPeriod); in UpdateAttempter() 561 prefs_->Delete(kPrefsUpdateCheckCount); in UpdateAttempter() 931 prefs_->Delete(kPrefsUpdateCheckCount); in UpdateAttempter() 933 prefs_->Delete(kPrefsUpdateFirstSeenAt); in UpdateAttempter() 1135 ret_value = prefs_->Delete(kPrefsUpdateCompletedOnBootId) && ret_value; in UpdateAttempter() 1136 ret_value = prefs_->Delete(kPrefsUpdateCompletedBootTime) && ret_value; in UpdateAttempter() 1480 prefs_->Delete(kPrefsUpdateCheckCount); in UpdateAttempter()
|
D | omaha_request_action.cc | 597 prefs->Delete(kPrefsInstallDateDays); in GetInstallDate() 1416 return system_state_->prefs()->Delete(prefs_key); in PersistCohortData() 1430 return system_state_->prefs()->Delete(kPrefsOmahaEolStatus); in PersistEolStatus()
|
/system/sepolicy/public/ |
D | otapreopt_slot.te | 17 # Delete old content of the dalvik-cache.
|
D | drmserver.te | 34 # Delete old socket file if present.
|
D | installd.te | 57 # Delete /data/media files through sdcardfs, instead of going behind its back
|
/system/nvram/hal/tests/ |
D | nvram_hal_test.cc | 116 ~ScopedNvramSpace() { Delete(); } in ~ScopedNvramSpace() 126 void Delete() { in Delete() function in __anonff3011770111::ScopedNvramSpace 357 TEST(NVRAMModuleTest, Delete) { in TEST() argument
|