OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:boot_devices
(Results
1 - 5
of
5
) sorted by null
/system/core/init/
devices.h
108
std::set<std::string>
boot_devices
, bool skip_restorecon);
ueventd.cpp
246
auto
boot_devices
= fs_mgr_get_boot_devices();
local
248
std::move(subsystems), std::move(
boot_devices
), true);
devices.cpp
424
std::vector<Subsystem> subsystems, std::set<std::string>
boot_devices
,
429
boot_devices_(std::move(
boot_devices
)),
init_first_stage.cpp
131
auto
boot_devices
= fs_mgr_get_boot_devices();
local
134
std::vector<Subsystem>{}, std::move(
boot_devices
), false);
/system/core/fs_mgr/
fs_mgr_fstab.cpp
693
std::set<std::string>
boot_devices
;
local
719
if (!boot_device.empty())
boot_devices
.insert(std::move(boot_device));
722
return
boot_devices
;
902
//
boot_devices
can be specified in device tree.
904
std::string file_name = get_android_dt_dir() + "/
boot_devices
";
906
auto
boot_devices
= android::base::Split(dt_value, ",");
local
907
return std::set<std::string>(
boot_devices
.begin(),
boot_devices
.end());
[
all
...]
Completed in 223 milliseconds