Home
last modified time | relevance | path

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

/bootable/recovery/updater/
Dsimulator_runtime.cpp43 int SimulatorRuntime::Mount(const std::string_view location, const std::string_view mount_point, in Mount() argument
47 mounted_location != mounted_partitions_.end() && mounted_location->second != location) { in Mount()
52 mounted_partitions_.emplace(mount_point, location); in Mount()
Dinstall.cpp293 const std::string& location = args[2]; in MountFn() local
308 if (location.empty()) { in MountFn()
317 if (updater->GetRuntime()->Mount(location, mount_point, fs_type, mount_options) != 0) { in MountFn()
319 location.c_str(), mount_point.c_str(), in MountFn()
398 const std::string& location = args[2]; in FormatFn() local
409 if (location.empty()) { in FormatFn()
426 "/system/bin/mke2fs", "-t", "ext4", "-b", "4096", location in FormatFn()
433 LOG(ERROR) << name << ": mke2fs failed (" << status << ") on " << location; in FormatFn()
438 { "/system/bin/e2fsdroid", "-e", "-a", mount_point, location }, true); in FormatFn()
440 LOG(ERROR) << name << ": e2fsdroid failed (" << status << ") on " << location; in FormatFn()
[all …]
Dupdater_runtime.cpp95 int UpdaterRuntime::Mount(const std::string_view location, const std::string_view mount_point, in Mount() argument
120 return mount(std::string(location).c_str(), mount_point_string.c_str(), in Mount()
Dcommands.cpp363 const RangeSet& location = location_ ? location_ : RangeSet({ Range{ 0, ranges_.blocks() } }); in DumpBuffer() local
366 size_t buffer_index = location.GetBlockNumber(i); in DumpBuffer()
/bootable/recovery/edify/include/edify/
Dupdater_runtime_interface.h44 virtual int Mount(const std::string_view location, const std::string_view mount_point,
/bootable/recovery/updater/include/updater/
Dupdater_runtime.h43 int Mount(const std::string_view location, const std::string_view mount_point,
Dsimulator_runtime.h40 int Mount(const std::string_view location, const std::string_view mount_point,
/bootable/recovery/updater/include/private/
Dcommands.h106 SourceInfo(std::string hash, RangeSet ranges, RangeSet location, std::vector<StashInfo> stashes) in SourceInfo() argument
109 location_(std::move(location)), in SourceInfo()