Home | History | Annotate | Download | only in android

Lines Matching refs:start

0 /* start.c - Start/stop system services.
5 USE_START(NEWTOY(start, "", TOYFLAG_USR|TOYFLAG_SBIN))
8 config START
9 bool "start"
13 usage: start [SERVICE...]
32 static void start_stop(int start)
34 char *property = start ? "ctl.start" : "ctl.stop";
45 if (!start) ss = services+ARRAY_LEN(services)-2, direction = -1;