Home | History | Annotate | Download | only in init

Lines Matching full:service

429 struct service *service_find_by_name(const char *name)
432 struct service *svc;
434 svc = node_to_item(node, struct service, slist);
442 struct service *service_find_by_pid(pid_t pid)
445 struct service *svc;
447 svc = node_to_item(node, struct service, slist);
455 struct service *service_find_by_keychord(int keychord_id)
458 struct service *svc;
460 svc = node_to_item(node, struct service, slist);
468 void service_for_each(void (*func)(struct service *svc))
471 struct service *svc;
473 svc = node_to_item(node, struct service, slist);
479 void (*func)(struct service *svc))
482 struct service *svc;
484 svc = node_to_item(node, struct service, slist);
492 void (*func)(struct service *svc))
495 struct service *svc;
497 svc = node_to_item(node, struct service, slist);
615 struct service *svc;
621 parse_error(state, "invalid service name '%s'\n", args[1]);
627 parse_error(state, "ignored duplicate definition of service '%s'\n", args[1]);
650 struct service *svc = state->context;