Lines Matching refs:following
1866 Unit *following; in unit_start() local
1914 following = unit_following(u); in unit_start()
1915 if (following) { in unit_start()
1916 log_unit_debug(u, "Redirecting start request from %s to %s.", u->id, following->id); in unit_start()
1917 return unit_start(following); in unit_start()
1971 Unit *following; in unit_stop() local
1979 following = unit_following(u); in unit_stop()
1980 if (following) { in unit_stop()
1981 log_unit_debug(u, "Redirecting stop request from %s to %s.", u->id, following->id); in unit_stop()
1982 return unit_stop(following); in unit_stop()
2017 Unit *following; in unit_reload() local
2034 following = unit_following(u); in unit_reload()
2035 if (following) { in unit_reload()
2036 … log_unit_debug(u, "Redirecting reload request from %s to %s.", u->id, following->id); in unit_reload()
2037 return unit_reload(following); in unit_reload()
3731 if (UNIT_VTABLE(u)->following) in unit_following()
3732 return UNIT_VTABLE(u)->following(u); in unit_following()