Home
last modified time | relevance | path

Searched refs:Unmount (Results 1 – 6 of 6) sorted by relevance

/bootable/recovery/edify/include/edify/
Dupdater_runtime_interface.h52 virtual std::pair<bool, int> Unmount(const std::string_view mount_point) = 0;
/bootable/recovery/updater/include/updater/
Dupdater_runtime.h46 std::pair<bool, int> Unmount(const std::string_view mount_point) override;
Dsimulator_runtime.h43 std::pair<bool, int> Unmount(const std::string_view mount_point) override;
/bootable/recovery/updater/
Dsimulator_runtime.cpp60 std::pair<bool, int> SimulatorRuntime::Unmount(const std::string_view mount_point) { in Unmount() function in SimulatorRuntime
Dupdater_runtime.cpp130 std::pair<bool, int> UpdaterRuntime::Unmount(const std::string_view mount_point) { in Unmount() function in UpdaterRuntime
Dinstall.cpp366 auto [mounted, result] = updater->GetRuntime()->Unmount(mount_point); in UnmountFn()