Home
last modified time | relevance | path

Searched refs:FindBlockDeviceName (Results 1 – 13 of 13) sorted by relevance

/bootable/recovery/edify/include/edify/
Dupdater_interface.h41 virtual std::string FindBlockDeviceName(const std::string_view name) const = 0;
Dupdater_runtime_interface.h41 virtual std::string FindBlockDeviceName(const std::string_view name) const = 0;
/bootable/recovery/updater/
Dsimulator_runtime.cpp69 std::string SimulatorRuntime::FindBlockDeviceName(const std::string_view name) const { in FindBlockDeviceName() function in SimulatorRuntime
70 return source_->FindBlockDeviceName(name); in FindBlockDeviceName()
Dupdater.cpp121 std::string Updater::FindBlockDeviceName(const std::string_view name) const { in FindBlockDeviceName() function in Updater
122 return runtime_->FindBlockDeviceName(name); in FindBlockDeviceName()
Dbuild_info.cpp131 std::string BuildInfo::FindBlockDeviceName(const std::string_view name) const { in FindBlockDeviceName() function in BuildInfo
Dupdater_runtime.cpp43 std::string UpdaterRuntime::FindBlockDeviceName(const std::string_view name) const { in FindBlockDeviceName() function in UpdaterRuntime
Dinstall.cpp73 std::string name = updater->FindBlockDeviceName(partition->name); in UpdateBlockDeviceNameForPartition()
127 if (std::string block_device_name = state->updater->FindBlockDeviceName(dest_path); in PackageExtractFileFn()
Dblockimg.cpp1677 auto block_device_path = updater->FindBlockDeviceName(blockdev_filename->data); in PerformBlockImageUpdate()
2091 auto block_device_path = state->updater->FindBlockDeviceName(blockdev_filename->data); in RangeSha1Fn()
2162 auto block_device_path = state->updater->FindBlockDeviceName(arg_filename->data); in CheckFirstBlockFn()
2237 auto block_device_path = state->updater->FindBlockDeviceName(filename->data); in BlockImageRecoverFn()
/bootable/recovery/updater/include/updater/
Dbuild_info.h51 std::string FindBlockDeviceName(const std::string_view name) const;
Dupdater.h54 std::string FindBlockDeviceName(const std::string_view name) const override;
Dupdater_runtime.h41 std::string FindBlockDeviceName(const std::string_view name) const override;
Dsimulator_runtime.h59 std::string FindBlockDeviceName(const std::string_view name) const override;
/bootable/recovery/tests/unit/host/
Dupdate_simulator_test.cpp239 ASSERT_EQ(0, access(build_info.FindBlockDeviceName(name).c_str(), R_OK)); in TEST_F()