Home
last modified time | relevance | path

Searched refs:UnmapUpdateSnapshot (Results 1 – 8 of 8) sorted by relevance

/system/core/fs_mgr/libsnapshot/
Dsnapshot_fuzz.cpp124 SNAPSHOT_FUZZ_FUNCTION(UnmapUpdateSnapshot, bool, const std::string& name) { in SNAPSHOT_FUZZ_FUNCTION() argument
125 return snapshot->UnmapUpdateSnapshot(name); in SNAPSHOT_FUZZ_FUNCTION()
340 ASSERT_RESULT_TRUE(Execute<SNAPSHOT_FUZZ_FN_NAME(UnmapUpdateSnapshot)>(i++)) << "sys_b"; in TEST_F()
341 ASSERT_RESULT_TRUE(Execute<SNAPSHOT_FUZZ_FN_NAME(UnmapUpdateSnapshot)>(i++)) << "vnd_b"; in TEST_F()
342 ASSERT_RESULT_TRUE(Execute<SNAPSHOT_FUZZ_FN_NAME(UnmapUpdateSnapshot)>(i++)) << "prd_b"; in TEST_F()
Dsnapshot_stub.cpp72 bool SnapshotManagerStub::UnmapUpdateSnapshot(const std::string&) { in UnmapUpdateSnapshot() function in android::snapshot::SnapshotManagerStub
Dsnapshot_test.cpp387 if (!sm->UnmapUpdateSnapshot("test_partition_b")) { in SimulateReboot()
539 ASSERT_TRUE(sm->UnmapUpdateSnapshot("test_partition_b")); in TEST_F()
1102 ASSERT_TRUE(sm->UnmapUpdateSnapshot(name)); in TEST_F()
1197 ASSERT_TRUE(sm->UnmapUpdateSnapshot(name)); in TEST_F()
1376 ASSERT_TRUE(sm->UnmapUpdateSnapshot("sys_b")); in TEST_F()
1388 ASSERT_TRUE(sm->UnmapUpdateSnapshot("sys_b")); in TEST_F()
1588 ASSERT_TRUE(sm->UnmapUpdateSnapshot(name)); in TEST_F()
2149 ASSERT_TRUE(sm->UnmapUpdateSnapshot(name)); in TEST_P()
Dsnapshot.cpp3231 bool SnapshotManager::UnmapUpdateSnapshot(const std::string& target_partition_name) { in UnmapUpdateSnapshot() function in android::snapshot::SnapshotManager
/system/core/fs_mgr/libsnapshot/include/libsnapshot/
Dsnapshot_stub.h45 bool UnmapUpdateSnapshot(const std::string& target_partition_name) override;
Dmock_snapshot.h48 MOCK_METHOD(bool, UnmapUpdateSnapshot, (const std::string& target_partition_name), (override));
Dsnapshot.h224 virtual bool UnmapUpdateSnapshot(const std::string& target_partition_name) = 0;
360 bool UnmapUpdateSnapshot(const std::string& target_partition_name) override;
/system/update_engine/aosp/
Ddynamic_partition_control_android.cc270 success &= snapshot_->UnmapUpdateSnapshot(target_partition_name); in UnmapPartitionOnDeviceMapper()