Home
last modified time | relevance | path

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

/system/core/init/
Dreboot.cpp623 std::vector<Service*> stop_first; in DoReboot() local
624 stop_first.reserve(ServiceList::GetInstance().services().size()); in DoReboot()
642 stop_first.push_back(s.get()); in DoReboot()
685 StopServicesAndLogViolations(stop_first, shutdown_timeout / 2, true /* SIGTERM */); in DoReboot()
688 StopServicesAndLogViolations(stop_first, 0ms, false /* SIGKILL */); in DoReboot()
784 std::vector<Service*> stop_first; in DoUserspaceReboot() local
788 stop_first.reserve(ServiceList::GetInstance().services().size()); in DoUserspaceReboot()
791 stop_first.push_back(s); in DoUserspaceReboot()
807 StopServicesAndLogViolations(stop_first, sigterm_timeout, true /* SIGTERM */); in DoUserspaceReboot()
808 if (int r = StopServicesAndLogViolations(stop_first, sigkill_timeout, false /* SIGKILL */); in DoUserspaceReboot()