Home
last modified time | relevance | path

Searched refs:flashing_status (Results 1 – 2 of 2) sorted by relevance

/aosp14/system/core/fs_mgr/libsnapshot/
H A Dsnapshot.cpp1879 std::map<std::string, bool> flashing_status; in AreAllSnapshotsCancelled() local
1881 if (!GetSnapshotFlashingStatus(lock, snapshots, &flashing_status)) { in AreAllSnapshotsCancelled()
1887 bool all_snapshots_cancelled = std::all_of(flashing_status.begin(), flashing_status.end(), in AreAllSnapshotsCancelled()
1973 std::map<std::string, bool> flashing_status; in RemoveAllSnapshots() local
1974 if (!GetSnapshotFlashingStatus(lock, snapshots, &flashing_status)) { in RemoveAllSnapshots()
1994 bool should_delete = ShouldDeleteSnapshot(flashing_status, current_slot, name); in RemoveAllSnapshots()
2039 bool SnapshotManager::ShouldDeleteSnapshot(const std::map<std::string, bool>& flashing_status, in ShouldDeleteSnapshot() argument
2044 auto it = flashing_status.find(name); in ShouldDeleteSnapshot()
2045 if (it == flashing_status.end()) { in ShouldDeleteSnapshot()
/aosp14/system/core/fs_mgr/libsnapshot/include/libsnapshot/
H A Dsnapshot.h776 bool ShouldDeleteSnapshot(const std::map<std::string, bool>& flashing_status, Slot current_slot,