Home
last modified time | relevance | path

Searched refs:AutoUnmountDevice (Results 1 – 3 of 3) sorted by relevance

/system/core/fs_mgr/libsnapshot/
Dutility.cpp125 std::unique_ptr<AutoUnmountDevice> AutoUnmountDevice::New(const std::string& path) { in New()
134 return std::unique_ptr<AutoUnmountDevice>(new AutoUnmountDevice("", {})); in New()
141 return std::unique_ptr<AutoUnmountDevice>(new AutoUnmountDevice(path, std::move(fstab))); in New()
144 AutoUnmountDevice::~AutoUnmountDevice() { in ~AutoUnmountDevice()
Dutility.h98 struct AutoUnmountDevice : AutoDevice { struct
100 AutoUnmountDevice() : AutoDevice("") {} in AutoUnmountDevice() argument
101 static std::unique_ptr<AutoUnmountDevice> New(const std::string& path);
102 ~AutoUnmountDevice();
105 AutoUnmountDevice(const std::string& path, android::fs_mgr::Fstab&& fstab) in AutoUnmountDevice() function
Dsnapshot.cpp2520 return std::unique_ptr<AutoUnmountDevice>(new AutoUnmountDevice()); in EnsureMetadataMounted()
2522 auto ret = AutoUnmountDevice::New(device_->GetMetadataDir()); in EnsureMetadataMounted()