Loading init/README.md +1 −1 Original line number Diff line number Diff line Loading @@ -636,7 +636,7 @@ provides the `aidl_lazy_test_1` interface. Properties are expanded within _level_. `mark_post_data` > Used to mark the point right after /data is mounted. > (This action is deprecated and no-op.) `mkdir <path> [<mode>] [<owner>] [<group>] [encryption=<action>] [key=<key>]` > Create a directory at _path_, optionally with the given mode, owner, and Loading init/builtins.cpp +1 −2 Original line number Diff line number Diff line Loading @@ -1171,8 +1171,7 @@ static Result<void> do_init_user0(const BuiltinArguments& args) { } static Result<void> do_mark_post_data(const BuiltinArguments& args) { ServiceList::GetInstance().MarkPostData(); LOG(INFO) << "deprecated action `mark_post_data` called."; return {}; } Loading init/service.cpp +0 −2 Original line number Diff line number Diff line Loading @@ -653,8 +653,6 @@ Result<void> Service::Start() { SetMountNamespace(); } post_data_ = ServiceList::GetInstance().IsPostData(); LOG(INFO) << "starting service '" << name_ << "'..."; std::vector<Descriptor> descriptors; Loading init/service.h +0 −4 Original line number Diff line number Diff line Loading @@ -144,8 +144,6 @@ class Service { std::optional<std::chrono::seconds> timeout_period() const { return timeout_period_; } const std::vector<std::string>& args() const { return args_; } bool is_updatable() const { return updatable_; } bool is_post_data() const { return post_data_; } bool is_from_apex() const { return base::StartsWith(filename_, "/apex/"); } void set_oneshot(bool value) { if (value) { flags_ |= SVC_ONESHOT; Loading Loading @@ -244,8 +242,6 @@ class Service { std::optional<MountNamespace> mount_namespace_; bool post_data_ = false; std::optional<std::string> on_failure_reboot_target_; std::string filename_; Loading init/service_list.cpp +0 −8 Original line number Diff line number Diff line Loading @@ -68,14 +68,6 @@ void ServiceList::DumpState() const { } } void ServiceList::MarkPostData() { post_data_ = true; } bool ServiceList::IsPostData() { return post_data_; } void ServiceList::StartDelayedServices() { for (const auto& name : delayed_service_names_) { Service* service = FindService(name); Loading Loading
init/README.md +1 −1 Original line number Diff line number Diff line Loading @@ -636,7 +636,7 @@ provides the `aidl_lazy_test_1` interface. Properties are expanded within _level_. `mark_post_data` > Used to mark the point right after /data is mounted. > (This action is deprecated and no-op.) `mkdir <path> [<mode>] [<owner>] [<group>] [encryption=<action>] [key=<key>]` > Create a directory at _path_, optionally with the given mode, owner, and Loading
init/builtins.cpp +1 −2 Original line number Diff line number Diff line Loading @@ -1171,8 +1171,7 @@ static Result<void> do_init_user0(const BuiltinArguments& args) { } static Result<void> do_mark_post_data(const BuiltinArguments& args) { ServiceList::GetInstance().MarkPostData(); LOG(INFO) << "deprecated action `mark_post_data` called."; return {}; } Loading
init/service.cpp +0 −2 Original line number Diff line number Diff line Loading @@ -653,8 +653,6 @@ Result<void> Service::Start() { SetMountNamespace(); } post_data_ = ServiceList::GetInstance().IsPostData(); LOG(INFO) << "starting service '" << name_ << "'..."; std::vector<Descriptor> descriptors; Loading
init/service.h +0 −4 Original line number Diff line number Diff line Loading @@ -144,8 +144,6 @@ class Service { std::optional<std::chrono::seconds> timeout_period() const { return timeout_period_; } const std::vector<std::string>& args() const { return args_; } bool is_updatable() const { return updatable_; } bool is_post_data() const { return post_data_; } bool is_from_apex() const { return base::StartsWith(filename_, "/apex/"); } void set_oneshot(bool value) { if (value) { flags_ |= SVC_ONESHOT; Loading Loading @@ -244,8 +242,6 @@ class Service { std::optional<MountNamespace> mount_namespace_; bool post_data_ = false; std::optional<std::string> on_failure_reboot_target_; std::string filename_; Loading
init/service_list.cpp +0 −8 Original line number Diff line number Diff line Loading @@ -68,14 +68,6 @@ void ServiceList::DumpState() const { } } void ServiceList::MarkPostData() { post_data_ = true; } bool ServiceList::IsPostData() { return post_data_; } void ServiceList::StartDelayedServices() { for (const auto& name : delayed_service_names_) { Service* service = FindService(name); Loading