Home
last modified time | relevance | path

Searched refs:boot_devices (Results 1 – 4 of 4) sorted by relevance

/aosp14/system/core/fs_mgr/
H A Dfs_mgr_fstab.cpp456 std::set<std::string> boot_devices; in ExtraBootDevices() local
485 return boot_devices; in ExtraBootDevices()
870 std::set<std::string> boot_devices; in GetBootDevices() local
876 boot_devices.emplace(device); in GetBootDevices()
878 return boot_devices; in GetBootDevices()
883 auto boot_devices = Split(value, ","); in GetBootDevices() local
884 return std::set<std::string>(boot_devices.begin(), boot_devices.end()); in GetBootDevices()
889 std::set<std::string> boot_devices; in GetBootDevices() local
893 boot_devices.emplace(value); in GetBootDevices()
896 if (!boot_devices.empty()) { in GetBootDevices()
[all …]
/aosp14/system/core/init/
H A Dblock_dev_initializer.cpp33 auto boot_devices = android::fs_mgr::GetBootDevices(); in BlockDevInitializer() local
36 std::move(boot_devices), false); in BlockDevInitializer()
H A Ddevices.h117 std::set<std::string> boot_devices, bool skip_restorecon);
H A Ddevices.cpp590 std::vector<Subsystem> subsystems, std::set<std::string> boot_devices, in DeviceHandler() argument
595 boot_devices_(std::move(boot_devices)), in DeviceHandler()