Lines Matching defs:services
29 * Service state explanation. For select services, display a description, the
31 * be in that state, and what other services it is keeping offline (impact).
40 * lists of services which are not offline or are offline for unknown reasons,
46 * offline services. For each unsatisfied dependency of an offline service,
54 * determine_causes() on all services.
56 * If no arguments are given, we must select the services which are causing
57 * other services to be offline. We do so by adding services which are not
61 * Since all services must be examined, and their states may be consulted
64 * repository into an inst_t and puts it into the "services" cache, which is
181 static svc_t **services;
235 services = calloc(SVC_HASH_NBUCKETS, sizeof (*services));
236 if (services == NULL)
418 for (svcp = services[h]; svcp != NULL; svcp = svcp->next) {
429 svcp->next = services[h];
430 services[h] = svcp;
689 for (svcp = services[h]; svcp != NULL; svcp = svcp->next) {
1303 for (svcp = services[i]; svcp != NULL; svcp = svcp->next)
2047 (void) printf(gettext("Impact: %d dependent services "
2052 "Impact: %d dependent services are not running:\n"),
2112 /* Walk the graph and populate services with inst_t's */
2115 /* Populate causes for services. */