Home
last modified time | relevance | path

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

/system/core/fs_mgr/
Dfs_mgr_fstab.cpp528 std::set<std::string> boot_devices; in ExtraBootDevices() local
554 if (!boot_device.empty()) boot_devices.insert(std::move(boot_device)); in ExtraBootDevices()
557 return boot_devices; in ExtraBootDevices()
836 auto boot_devices = Split(value, ","); in GetBootDevices() local
837 return std::set<std::string>(boot_devices.begin(), boot_devices.end()); in GetBootDevices()
842 std::set<std::string> boot_devices; in GetBootDevices() local
846 boot_devices.emplace(value); in GetBootDevices()
849 if (!boot_devices.empty()) { in GetBootDevices()
850 return boot_devices; in GetBootDevices()
/system/core/init/
Dblock_dev_initializer.cpp33 auto boot_devices = android::fs_mgr::GetBootDevices(); in BlockDevInitializer() local
36 std::move(boot_devices), false); in BlockDevInitializer()
Ddevices.h116 std::set<std::string> boot_devices, bool skip_restorecon);
Ddevices.cpp518 std::vector<Subsystem> subsystems, std::set<std::string> boot_devices, in DeviceHandler() argument
523 boot_devices_(std::move(boot_devices)), in DeviceHandler()